18

目前我想创建一个质量最低的透明png。

编码:

<?php
function createImg ($src, $dst, $width, $height, $quality) {
    $newImage = imagecreatetruecolor($width,$height);
    $source = imagecreatefrompng($src); //imagecreatefrompng() returns an image identifier representing the image obtained from the given filename.
    imagecopyresampled($newImage,$source,0,0,0,0,$width,$height,$width,$height);
    imagepng($newImage,$dst,$quality);      //imagepng() creates a PNG file from the given image. 
    return $dst;
}

createImg ('test.png','test.png','1920','1080','1');
?>

但是,存在一些问题:

  1. 在创建任何新文件之前我需要指定一个 png 文件吗?或者我可以在没有任何现有 png 文件的情况下创建吗?

    警告:imagecreatefrompng(test.png):打开流失败:没有这样的文件或目录

    C:\DSPadmin\DEV\ajax_optipng1.5\create.php 在第 4 行

  2. 虽然有错误信息,但它仍然会生成一个 png 文件,但是,我发现该文件是黑色图像,我需要指定任何参数使其透明吗?

谢谢。

4

3 回答 3

51

1) imagecreatefrompng('test.png')尝试打开文件test.png,然后可以使用 GD 功能进行编辑。

到 2) 启用保存 Alpha 通道imagesavealpha($img, true);。以下代码通过启用 Alpha 保存并用透明度填充它来创建一个 200x200 像素大小的透明图像。

<?php
$img = imagecreatetruecolor(200, 200);
imagesavealpha($img, true);
$color = imagecolorallocatealpha($img, 0, 0, 0, 127);
imagefill($img, 0, 0, $color);
imagepng($img, 'test.png');
于 2013-06-24T09:18:11.333 回答
7

看一眼:

一个示例函数复制透明的 PNG 文件:

    <?php
    function copyTransparent($src, $output)
    {
        $dimensions = getimagesize($src);
        $x = $dimensions[0];
        $y = $dimensions[1];
        $im = imagecreatetruecolor($x,$y); 
        $src_ = imagecreatefrompng($src); 
        // Prepare alpha channel for transparent background
        $alpha_channel = imagecolorallocatealpha($im, 0, 0, 0, 127); 
        imagecolortransparent($im, $alpha_channel); 
        // Fill image
        imagefill($im, 0, 0, $alpha_channel); 
        // Copy from other
        imagecopy($im,$src_, 0, 0, 0, 0, $x, $y); 
        // Save transparency
        imagesavealpha($im,true); 
        // Save PNG
        imagepng($im,$output,9); 
        imagedestroy($im); 
    }
    $png = 'test.png';

    copyTransparent($png,"png.png");
    ?>
于 2013-06-24T09:22:00.853 回答
2

1) 您可以创建一个没有任何现有文件的新 png 文件。2)你得到一个黑色的图像,因为你使用imagecreatetruecolor();. 它创建具有黑色背景的最高质量图像。由于您需要最低质量的图像使用imagecreate();

<?php
$tt_image = imagecreate( 100, 50 ); /* width, height */
$background = imagecolorallocatealpha( $tt_image, 0, 0, 255, 127 ); /* In RGB colors- (Red, Green, Blue, Transparency ) */
header( "Content-type: image/png" );
imagepng( $tt_image );
imagecolordeallocate( $background );
imagedestroy( $tt_image );
?>

您可以在本文中阅读更多内容:如何使用 PHP 创建图像

于 2013-11-30T08:44:22.387 回答