私は謙虚にphp/javascriptコードに取り組んでおり、 jcrop関数をダウンロードして始めました
<?php
/**
* Jcrop image cropping plugin for jQuery
* Example cropping script
* @copyright 2008-2009 Kelly Hallman
* More info: http://deepliquid.com/content/Jcrop_Implementation_Theory.html
*/
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$targ_w = $targ_h = 150;
$jpeg_quality = 90;
$src = 'images/originalimage.jpg';
$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']);
header('Content-type: image/jpeg');
I コードのテストに成功した後、切り取った画像を保存するために、値 Null を以下の「test1.jpg」に変更しました。
imagejpeg($dst_r,'test1.jpg',$jpeg_quality);
画像を初めてトリミングするときだけうまくいくようです.2回以上トリミングしようとすると、ディレクトリにあるトリミングされた画像が最初と同じであることに気付くからです.後続のトリミングされた画像を検討してください。たとえば、名前をtest2.jpgに変更すると、最初はトリミングされた領域が正常に保存されますが、2回目以降はtest1.jpgと同じ動作になります...
exit;
}
// If not a POST request, display page below:
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.Jcrop.js"></script>
<link rel="stylesheet" href="css/jquery.Jcrop.css" type="text/css" />
<script language="Javascript">
$(function(){
$('#cropbox').Jcrop({
aspectRatio: 1,
onSelect: updateCoords
});
});
function updateCoords(c)
{
$('#x').val(c.x);
$('#y').val(c.y);
$('#w').val(c.w);
$('#h').val(c.h);
};
function checkCoords()
{
if (parseInt($('#w').val())) return true;
alert('Please select a crop region then press submit.');
return false;
};
</script>
</head>
<body>
<!-- This is the image we're attaching Jcrop to -->
<img src="images/originalimage.jpg" id="cropbox" />
<!-- This is the form that our event handler fills -->
<form action="crop.php" method="post" onsubmit="return checkCoords();">
<input type="hidden" id="x" name="x" />
<input type="hidden" id="y" name="y" />
<input type="hidden" id="w" name="w" />
<input type="hidden" id="h" name="h" />
<input type="submit" value="Crop Image" />
</form>
</body>
</html>
問題が見つかりません。
役立つと思われるいくつかの更新: 「画像のトリミング」をクリックしてページが空白になった後、ホストのファイル マネージャーにアクセスすると、新しい画像が正しく上書きされるため、ファイルのサイズが変更されることに気付きます。ただし、(ファイルマネージャー内で)クリックして画像を開くと、常に最初にトリミングされた画像が表示されます。それは私を夢中にさせます。