11

在调整 png 大小时,我已经全面了解如何正确管理 alpha。我设法让它保持透明度,但仅限于完全透明的像素。这是我的代码:

$src_image = imagecreatefrompng($file_dir.$this->file_name);
$dst_image = imagecreatetruecolor($this->new_image_width, $this->new_image_height);
imagealphablending($dst_image, true);
imagesavealpha($dst_image, true);
$black = imagecolorallocate($dst_image, 0, 0, 0);
imagecolortransparent($dst_image, $black);
imagecopyresampled($dst_image, $src_image, 0, 0, 0, 0, $this->new_image_width, 
                 $this->new_image_height, $this->image_width, $this->image_height);
imagepng($dst_image, $file_dir.$this->file_name);

从此源图像开始:

在此处输入图像描述

调整大小的图像如下所示:

在此处输入图像描述

我看过的关于这个问题的几乎所有论坛帖子的解决方案都说要做这样的事情:

imagealphablending($dst_image, false);
$transparent = imagecolorallocatealpha($dst_image, 0, 0, 0, 127);
imagefill($dst_image, 0, 0, $transparent);

此代码的结果无法保存任何 alpha:

在此处输入图像描述

还有其他解决方案吗?我错过了阿尔法混合的东西吗?为什么这对其他人有用,而对我却完全失败?我正在使用 MAMP 2.1.3 和 PHP 5.3.15。

4

2 回答 2

11
"They have not worked at all and I'm not sure why."

那么你一定是做错了什么。链接副本中的代码添加了几行以加载和保存图像:

$im = imagecreatefrompng(PATH_TO_ROOT."var/tmp/7Nsft.png");

$srcWidth = imagesx($im);
$srcHeight = imagesy($im);

$nWidth = intval($srcWidth / 4);
$nHeight = intval($srcHeight /4);

$newImg = imagecreatetruecolor($nWidth, $nHeight);
imagealphablending($newImg, false);
imagesavealpha($newImg,true);
$transparent = imagecolorallocatealpha($newImg, 255, 255, 255, 127);
imagefilledrectangle($newImg, 0, 0, $nWidth, $nHeight, $transparent);
imagecopyresampled($newImg, $im, 0, 0, 0, 0, $nWidth, $nHeight,
    $srcWidth, $srcHeight);

imagepng($newImg, PATH_TO_ROOT."var/tmp/newTest.png");

生成图像:

具有透明度的调整大小的 PNG

即这个问题(和答案)是完全重复的。

于 2013-06-18T22:01:02.887 回答
-2

我使用 simpleImage 类来调整图像大小。您可以在保持纵横比的情况下重新调整图像大小。此类使用imagecreatetruecolorimagecopyresampled核心 Php 函数来重新调整图像大小

  $new_image = imagecreatetruecolor($width, $height);
  imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
  $this->image = $new_image;

在http://www.white-hat-web-design.co.uk/blog/resizing-images-with-php/找到完整的代码

于 2013-06-07T06:58:09.297 回答