如何使用PHP为图像添加阴影?

时间:2011-09-02 19:08:13

标签: php image imagemagick dropshadow

我正在寻找一种使用PHP为图像添加阴影的方法。在您回答或投票结束之前:我希望使用CSS或HTML执行此操作。我想生成一个图像文件。这this questionthis one的副本。

我正在寻找一种非常具体的效果。例如,给定此输入图像:

It's an image!

我想生成以下图片:

It's an image, with a drop shadow!


TL; DR:上面的图片是使用Photoshop的投影效果生成的。我希望看起来非常相似。作为参考,这是我们的设计团队使用的设置。理想情况下,我在代码中对角度,距离,不透明度等有类似的控制:

It's some Photoshop settings!

我可以完全访问基于debian-linus的服务器,因此任何GD或ImageMagick解决方案都可以使用。和任何FOSS linux软件解决方案一样,虽然我更喜欢使用IM或GD的方式,因为它们已经安装并且不需要安装新软件。

阴影必须能够放置在透明的非矩形PNG上!

我问这个问题主要是因为我在网上找到的脚本和解决方案只产生矩形阴影,看起来像是整体便便,或者只是简单地根本不起作用。

5 个答案:

答案 0 :(得分:19)

只是为了它的地狱(我知道它得到了回答和接受):几个月前,为了回应关于图形设计stackexchange的问题,关于从源文件丢失的PNG中恢复掩码,我把一些东西打了一下它使用PHP GD函数从透明PNG中提取alpha通道。正如乔在上面提到的评论中,您可以使用Alpha通道作为投影,仅将其偏移x和y像素,然后对其应用图像卷积模糊滤镜,然后将原始文件复制到顶部。下面的代码可能是SLOW和概念证明,但它是一个开始,它是你最初请求的PHP。

<?php

$im = imagecreatefrompng('./images/alphatest_nolayer.png');
$w = imagesx($im);
$h = imagesy($im);

$om = imagecreatetruecolor($w,$h);

for ($x = 0; $x < $w; $x++) {
    for ($y = 0; $y < $h; $y++) {
        $rgb = imagecolorat($im, $x, $y);
        $colors = imagecolorsforindex($im,  $rgb);

        $orgb = imagecolorallocate($om,$colors['alpha'],$colors['alpha'],$colors['alpha']);
        imagesetpixel($om,$x,$y,$orgb);
    }
}

header('Content-Type: image/png');
imagepng($om);

imagedestroy($om);
imagedestroy($im);

?>

答案 1 :(得分:6)

如果没有构建完整的边缘检测器算法和显着的处理开销,您将无法在PHP中执行此操作。考虑使用GIMP和一些script-fu,让它为你付出艰苦的努力。

答案 2 :(得分:6)

我使用了Marc B的建议,并呼吁GIMP为我做这件事。如果有人关心,这是我使用的代码:

/**
 * Call upon The GIMP to apply a dropshadow to a given image.
 * 
 * NOTE: This will overwrite the image file at $filename! Be sure to make a copy
 * of this file first if you need one.
 * 
 * @param string $filename
 * @param int $offset_x
 * @param int $offset_y
 * @param float $radius
 * @param array $color
 * @param int $opacity
 * @return type 
 * @todo Resize the canvas so there's room to apply dropshadows to images which have no whitespace around them.
 */
function apply_gimp_dropshadow($filename,$offset_x=8,$offset_y=8,$radius=15,$color=false,$opacity=40)
{
    if(!is_array($color))
        $color = array(0,0,0);
    $color = join(' ',$color);

    $gimpScript = <<<END_OF_SCHEME_CODE_OH_HOW_I_HATE_YOU_SCHEME
(define (dropshadow filename)
  (let* (
      (image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
      (drawable (car (gimp-image-get-active-layer image)))
    )
    (script-fu-drop-shadow image drawable 8 8 15 '($color) 40 FALSE)
    (set! drawable (car (gimp-image-merge-visible-layers image 0)))
    (gimp-file-save RUN-NONINTERACTIVE image drawable filename filename)
    (gimp-image-delete image)
  )
)

(dropshadow "$filename")
(gimp-quit 0)
END_OF_SCHEME_CODE_OH_HOW_I_HATE_YOU_SCHEME;

    $descriptorspec = array(
        0 => array("pipe", "r"),  // stdin is a pipe that the child will read from
        1 => array("pipe", "w"),  // stdout is a pipe that the child will write to
    );

    $cwd = '/tmp';
    $gimp = proc_open('/usr/bin/gimp -i -b -', $descriptorspec, $pipes, $cwd);

    if (!is_resource($gimp))
        throw new Exception('Could not open a pipe to GIMP');

    fwrite($pipes[0], $gimpScript);
    fclose($pipes[0]);

    $gimpOutput = stream_get_contents($pipes[1]);
    fclose($pipes[1]);
    $gimpResult = proc_close($gimp);

    return $gimpResult;
}

答案 3 :(得分:3)

您可以使用PHPs GD Image Processing Libraries

Here是一个关于如何添加阴影效果的教程。但是,如果这不符合您的需求,我肯定谷歌搜索“PHP GD投影”将成功。

答案 4 :(得分:2)

这个答案没有提供 Python 解决方案,但确实提供了通用的算法

我不知道Python或任何有关它的东西,但可能这个算法可以帮助你,或者其他人在这个问题上绊倒。

注意:严格来说,这应该是评论,但我真的希望能够展示图片。