%PDF- %PDF-
| Direktori : /var/www/pjold/public/assets/ |
| Current File : /var/www/pjold/public/assets/crop_image.php |
<?php
include("cropping/image_resizing.php");
$imgr = new imageResizing();
if($_POST['cp_img_path']){
$image = "/your/path/to/app/".$_POST['cp_img_path'];
$imgr->load($image);
$imgX = intval($_POST['ic_x']);
$imgY = intval($_POST['ic_y']);
$imgW = intval($_POST['ic_w']);
$imgH = intval($_POST['ic_h']);
$imgr->resize($imgW,$imgH,$imgX,$imgY);
$imgr->save($image);
echo '<img src="'.$_POST['cp_img_path'].'?t='.time().'" class="img-thumbnail"/>';
}
?>