## Preparations
In the `index.php`, after `$application->Init();`, place following code:
```
lang=php
$image_helper = $application->recallObject('ImageHelper');
echo '<img src="' . $image_helper->ResizeImage(FULL_PATH . IMAGES_PATH . '904x791.png', 120, 120) . '"/>';
echo '<img src="' . $image_helper->ResizeImage(FULL_PATH . IMAGES_PATH . '904x792.png', 120, 120) . '"/>';
```
{F215325}
{F215324}
## Testing
# place attached files `904x791.png`, and `904x792.png` to the `/system/images` folder
# open website's Front-End
# confirm that both `904x791.png` and `904x792.png` images are displayed and resized to `120x105`