以下の例では、画像の左上隅の 100x100 の部分をトリミングしています。 $src_x、$src_y、$src_w、$src_hの値を変更することで、トリミング範囲を変更できます。
- $filename= "test.jpg";
- list($w, $h, $type, $attr) = getimagesize($filename);
- $src_im = imagecreatefromjpeg($filename) );
- $src_x = '0'; // 開始 x
- $src_y = '0'; // 開始 y
- $src_h = '100'; $dst_x = '0'; // 宛先 x
- $dst_y = '0'; // 宛先 y
- $dst_im = imagecreatetruecolor($src_w, $src_h);
- $white = imagecolorallocate($dst_im, 255, 255, 255);
- imagefill($dst_im, 0, 0, $white);
- imagecopy($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h);
- header( "Content-type: image/png");
- imagepng($dst_im);
- imagedestroy($dst_im);
- ?>
-
-
コードをコピー
|