まず、私はPHPのマスターではありません。私は画像のサイズ変更とトリミングに関数を使用しています。透明なPNGをアップロードするまでは完璧に動作しています。 :)PHP - 透明なpngとして画像をコピーする方法
黒い背景でpngを保存します。私はstackoverflowにいくつかの答えが見つかりましたが、私は自分のコードと組み合わせることはできません。
は、ここに私の関数である。
//resize and crop image
function resize_crop_image($max_width, $max_height, $source_file, $dst_dir, $quality = 90){
$imgsize = getimagesize($source_file);
$width = $imgsize[0];
$height = $imgsize[1];
$mime = $imgsize['mime'];
switch($mime){
case 'image/gif':
$image_create = "imagecreatefromgif";
$image = "imagegif";
$format = "gif";
break;
case 'image/png':
$image_create = "imagecreatefrompng";
$image = "imagepng";
$quality = 7;
$format = "png";
break;
case 'image/jpeg':
$image_create = "imagecreatefromjpeg";
$image = "imagejpeg";
$format = "jpg";
break;
default:
return false;
break;
}
$dst_img = imagecreatetruecolor($max_width, $max_height);
$src_img = $image_create($source_file);
$width_new = $height * $max_width/$max_height;
$height_new = $width * $max_height/$max_width;
//if the new width is greater than the actual width of the image, then the height is too large and the rest cut off, or vice versa
if($width_new > $width){
//cut point by height
$h_point = (($height - $height_new)/2);
//copy image
imagecopyresampled($dst_img, $src_img, 0, 0, 0, $h_point, $max_width, $max_height, $width, $height_new);
}else{
//cut point by width
$w_point = (($width - $width_new)/2);
imagecopyresampled($dst_img, $src_img, 0, 0, $w_point, 0, $max_width, $max_height, $width_new, $height);
}
// you can ignore these 4 lines. I'm using it for change the name.
$nameforimage = rand('11111111', '9999999999');
$nameforimage2 = rand('11111111', '9999999999');
$newname = $nameforimage."_".$nameforimage2;
$newdir = $dst_dir."".$newname.".".$format;
$image($dst_img, $newdir, $quality);
if($dst_img)imagedestroy($dst_img);
if($src_img)imagedestroy($src_img);
return $newname.".".$format;
}
編集:私は解決策を見つけた わかりました。
ただ、これらの行を追加します。
imagealphablending($dst_img, false);
imagesavealpha($dst_img, true);
$transparent = imagecolorallocatealpha($dst_img, 255, 255, 255, 127);
imagefilledrectangle($dst_img, 0, 0, $max_width, $max_height, $transparent);
をこの行の後に:
$dst_img = imagecreatetruecolor($max_width, $max_height);
私は間違ったコードを更新しました。もう一度見てください。 –
次の質問で選択された答えは、アルファブレンディングを保存する方法を示します:http://stackoverflow.com/questions/32243/can-png-image-transparency-be-preserved-when-using- phps-gdlib-imagecopyresample –
よろしくお願いいたします。私は見つけたので、今私の質問に答えを追加します。 –