1

私はこのjQueryプラグインを使用して画像をトリミングしています:

http://www.tmatthew.net/jwindowcrop

ご覧のとおり、jQuery側では非常に簡単に使用できますが、私の問題は、PHP/GDを使用して実際の画像をトリミングすることです。

いくつかのゴーグルで、私は得ました:

$targ_w = $targ_h = 150;
$jpeg_quality = 90;

$src = 'demo_files/flowers.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');
imagejpeg($dst_r, null, $jpeg_quality);

しかし、jQueryプラグインによって作成されたズームイン/ズームアウトは処理されません。このプラグインとPHPを使用して画像をトリミングして保存するにはどうすればよいですか?

4

2 に答える 2

3

私はこれを理解しました。他の誰かが同じ質問をしている場合の私のコードは次のとおりです。トリミングは Zebra 画像クラスによって行われます。

http://stefangabos.ro/php-libraries/zebra-image/#documentation

PHP:

// The variables we got from the plugin in upload page:
$x = intval($_POST['x']);
$y = intval($_POST['y']);
$w = intval($_POST['w']);
$h = intval($_POST['h']);
// The img file which we want to crop
$tmp_file = 'path/to/img';
// Now include the Zebra class
include_once('path/to/Zebra_Image.php');
$image = new Zebra_Image();
$image -> preserve_aspect_ratio = true;
$image -> enlarge_smaller_images = true;
$image -> preserve_time = true;
$image -> jpeg_quality = 100;
// Now imagine that the user has selected the area which he want with the plugin, and we also want to make the image out put in a specific size(200*225):
$target_path = 'new/img/path'; // the output img path
$image -> source_path = $tmp_file;
$image -> target_path = $target_path;
$image -> crop($x, $y, $x + $w, $y + $h);
$image -> source_path = $target_path;
$image -> resize(200, 225,  ZEBRA_IMAGE_CROP_CENTER);
于 2013-01-29T21:28:15.417 に答える
0

jwindowcropも使用しています。jwindowcrop のズームをクリックすると、w と h が変わります。(添付の写真を参照)

jwindowcrop から新しい w と h を取得します (元の画像の

PHPマニュアルhttp://www.php.net/manual/en/function.imagecopyresampled.phpに記載されているように、正しいパラメーターを使用していることを確認する必要があり ますズーム

dst_image
Destination image link resource.

src_image
Source image link resource.

dst_x
x-coordinate of destination point. 
(in my case the destination image should start from upper left corner)

dst_y
y-coordinate of destination point.
(in my case the destination image should start from upper left corner)

src_x
x-coordinate of source point.
(the x-coordinate returned by the cropping function e.g. crop image from x=231, 231 pixels far from the left edge)

src_y
y-coordinate of source point.
(the x-coordinate returned by the cropping function e.g. crop image from y=706, 706 pixels far from the top edge)

dst_w
Destination width.
(in my case, my new image should have a width of 800px)

dst_h
Destination height.
(in my case, my new image should have a height of 400px)

src_w
Source width.
(when my cropping function zooms, it changes the width and height of the original image)

src_h
Source height.
(when my cropping function zooms, it changes the width and height of the original image)

imagecopyresized(dst_image, src_image, 0, 0, 231, 706, 800, 400, 521, 318);
于 2014-06-05T08:12:22.000 に答える