PHP で生成した画像を保存する方法
PHP コード
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->
$targ_w = $targ_h = 150; //保存的图片的大小
$jpeg_quality = 90;
$src = '/image/abc.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);
ImageDestroy($dst_r);
ログイン後にコピー
これで画像は正常に表示されるようになりました
1: ただし、abc123.jpg をサーバーに自動的に保存する方法
2: 50*50 のサムネイルを保存する方法 abc123456.jpg
-----解決策-------------- - ----出力なし。ファイルとして保存。imagejpeg() の 2 番目のパラメーターをファイル名に変更するだけです。当然、Header() で出力ストリームを宣言する必要はありません。
サムネイルを保存します。imagecopyresampled() 関数を参照してください。
------解決策------------------
1.
bool imagejpeg ( resource $image [, string $filename [, int $quality ]] )
2 番目のパラメーターはファイルを指定します。
2,
bool imagecopyresize ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )