Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
malwaredllc
GitHub Repository: malwaredllc/byob
Path: blob/master/web-gui/buildyourownbotnet/data/image-crop.php
1292 views
1
<?php
2
3
/**
4
* Jcrop image cropping plugin for jQuery
5
* Example cropping script
6
* @copyright 2008-2009 Kelly Hallman
7
* More info: http://deepliquid.com/content/Jcrop_Implementation_Theory.html
8
*/
9
10
if ($_SERVER['REQUEST_METHOD'] == 'POST')
11
{
12
$targ_w = $targ_h = 150;
13
$jpeg_quality = 90;
14
15
$src = '../assets/images/crop-4.jpg';
16
$img_r = imagecreatefromjpeg($src);
17
$dst_r = ImageCreateTrueColor( $targ_w, $targ_h );
18
19
imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
20
$targ_w,$targ_h,$_POST['w'],$_POST['h']);
21
22
header('Content-type: image/jpeg');
23
imagejpeg($dst_r,null,$jpeg_quality);
24
25
exit;
26
}
27