## Preparations
In the `index.php`, after `$application->Init();`, place following code:
```
lang=php
$upload_helper = $application->recallObject('kUploadHelper');
$upload_helper->resizeUploadedFile(FULL_PATH . IMAGES_PATH . '120x105.png', 'resize:120x120');
$upload_helper->resizeUploadedFile(FULL_PATH . IMAGES_PATH . '904x791.png', 'resize:120x120');
```
{F215328}{F215342}
## Testing
# place attached file `120x105.png` (dimensions: 120x105) to the `/system/images/` folder
# place attached file `904x791.png` (dimensions: 904x791) to the `/system/images/` folder
# open website's Front-End
# confirm that `120x105.png` is in place and not changed it's size
# confirm that `904x791.png` is resized to 120x105