GIF89a;
| Direktori : /home/serb/public_html/livechat/php/service/ |
| Current File : /home/serb/public_html/livechat/php/service/ImageResizer.php |
<?php
require_once ROOT_DIR . '/lib/smart_resize_image.php';
class ImageResizer extends Service
{
public function resize($inputPath, $outputPath, $width, $height)
{
smart_resize_image($inputPath, $width, $height, false, $outputPath, false, false, 100);
}
}
?>