15

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

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

这是一个图像!

我想生成以下图像:

这是一个图像,带有阴影!


TL;DR:上面这张图片是使用 Photoshop 的投影效果生成的。我想要一个非常相似的外观。作为参考,这是我们设计团队使用的设置。理想情况下,我会在我的代码中对角度、距离、不透明度等进行类似的控制:

这是一些Photoshop设置!

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

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

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

4

6 回答 6

20

只是为了它的地狱(我知道它已被回答并接受):几个月前,为了回答关于图形设计stackexchange关于从源文件丢失的PNG中恢复掩码的问题,我将使用PHP的东西拍打在一起GD 函数从透明 PNG 中提取 alpha 通道。正如 Joe 在上面提到的评论中一样,您可以将 alpha 通道用作投影,只需将其偏移 x 和 y 像素,然后对其应用图像卷积模糊过滤器,然后将原始图像复制合并到顶部。以下代码可能很慢并且是概念证明,但它只是一个开始,它是您最初要求的 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);

?>
于 2011-09-02T21:57:16.253 回答
10

实际上这可以通过 image magick 的转换来完成,不需要 GD 库:

<?php
    $cmd = 'convert /path/to/source.png \( +clone -background black -shadow 80x3+4+4 \) \+swap -background none -layers merge +repage /path/to/destination.png';
    exec($cmd);
?>

你可以玩一点阴影参数。

-shadow percent-opacity{xsigma}{+-}x{+-}y{%}

结果

于 2012-07-27T10:12:12.167 回答
6

如果没有构建完整的边缘检测器算法和显着的处理开销,您将无法在 PHP 中执行此操作。考虑使用带有一些脚本功能的GIMP,让它为您完成艰苦的工作。

于 2011-09-02T19:13:13.430 回答
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;
}
于 2011-09-02T21:19:52.980 回答
3

您可以使用PHPs GD 图像处理库

是一个关于如何添加阴影效果的教程。但是,如果这不符合您的需求,我相信谷歌搜索“PHP GD Drop Shadow”会成功。

于 2011-09-02T19:18:18.817 回答
2

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

我不知道 Python 或任何关于它的东西,但大概这个算法可以帮助你,或者其他人偶然发现这个问题。

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

于 2012-05-28T17:01:11.860 回答