我有这段代码块。
<?php
$targ_w = $targ_h = 150;
$jpeg_quality = 90;
$src = $_POST['src'];
$img_r = imagecreatefromjpeg($src);
$dst_r = ImageCreateTrueColor( $targ_w, $targ_h );
imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
$targ_w,$targ_h,$_POST['w'],$_POST['h']);
imagejpeg($dst_r,null,$jpeg_quality);
//save it and json encode here
?>
我想要的是php
使用src
创建图片,然后将其保存到name.jpeg
和json_encode
到jquery的文件夹中。我该怎么做呢 ?
答案 0 :(得分:1)
Imagejpeg第二个参数
imagejpeg($dst_r,$mydestinationfolder,$jpeg_quality);
json_encode(array("dest"=>$mydestinationfolder));
感谢贡献者。