PHP 对 png 画像进行缩放、透明背景をサポート
クリップボードにコピー引用内容:
[www.bkjia.com]
function Smart_resize_image( $file, $width = 0, $height = 0, $proportional = false, $output = 'file', $delete_original = true, $use_linux_commands = false )
{
if ( $height <= 0 && $width <= 0 ) {
return false;
}
$info = getimagesize($file);
$image = '';
$final_width = 0;
$final_height = 0;
list($width_old, $height_old) = $info;
if ($proportional) {
if ($width == 0) $factor = $height/$height_old;
elseif ($height == 0) $factor = $width/$width_old;
else $factor = min ( $width / $width_old, $height / $height_old);
$final_width = ラウンド ($width_old * $factor);
$final_height =round ($height_old * $factor);
}
else {
$final_width = ( $width <= 0 ) ? $width_old : $width;
$final_height = ($height <= 0 ) ? $height_old : $height;
}
switch ($info[2] ) {
case IMAGETYPE_GIF:
$image = imagecreatefromgif($file);
休憩;
場合 IMAGETYPE_JPEG:
$image = imagecreatefromjpeg($file);
休憩;
ケース IMAGETYPE_PNG:
$image = imagecreatefrompng($file);
休憩;
デフォルト:
falseを返します。
}
$image_resize = imagecreatetruecolor( $final_width, $final_height );
if ( ($info[2] == IMAGETYPE_GIF) || ($info[2] == IMAGETYPE_PNG) ) {
$trnprt_indx = imagecolortransparent($image);
// 特定の透明色がある場合
if ($trnprt_indx >= 0) {
// 元の画像の透明色の RGB 値を取得します
$trnprt_color = imagecolorsforindex($image, $trnprt_indx);
// 新しい画像リソースに同じ色を割り当てます
$trnprt_indx = imagecolorallocate($image_resize, $trnprt_color['red'], $trnprt_color['green'], $trnprt_color['blue']);
// 新しい画像の背景を割り当てられた色で完全に塗りつぶします。
imagefill($image_resize, 0, 0, $trnprt_indx);
// 新しい画像の背景色を透明に設定します
imagecolortransparent($image_resize, $trnprt_indx);
}
// まだ割り当てられていない PNG には常に透明な背景色を作成します
elseif ($info[2] == IMAGETYPE_PNG) {
// 透明ブレンドを (一時的に) オフにします
imagealphablending($image_resize,間違い);
// 画像の新しい透明色を作成します
$color = imagecolorallocatealpha($image_resize, 0, 0, 0, 127);
// 新しい画像の背景を割り当てられた色で完全に塗りつぶします。
imagefill($image_resize, 0, 0, $color);
// 透明ブレンドを復元します
imagesavealpha($image_resize, true);
}
}
imagecopyresampled($image_resize, $image, 0, 0, 0, 0, $final_width, $final_height, $width_old, $height_old);
if ( $delete_original ) {
if ( $use_linux_commands )
exec('rm '.$file);
else
@unlink($file);
}
switch ( strto lower($output) ) {
case 'ブラウザ':
$mime = image_type_to_mime_type($info[2]);
header("コンテンツタイプ: $mime");
$output = NULL;
休憩;
ケース 'ファイル':
$output = $file;
休憩;
case 'return':
return $image_resize;
休憩;
デフォルト:
ブレイク;
}
switch ($info[2] ) {
case IMAGETYPE_GIF:
imagegif($image_resize, $output);
休憩;
ケース IMAGETYPE_JPEG:
imagejpeg($image_resize, $output);
休憩;
ケース IMAGETYPE_PNG:
imagepng($image_resize, $output);
休憩;
デフォルト:
falseを返します。
}
true を返します。
}
http://www.bkjia.com/PHPjc/363937.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/363937.html技術記事 PHP 对 png 画像进行缩放,サポート透明背景 クリップボードにコピー 引用内容: [www.veryhuo.com] function Smart_resize_image( $file, $width = 0, $height = 0, $proportiona...