ImageMagick白色到透明背景,同时保持白色对象

2022-02-26 00:00:00 imagemagick php

我正在使用PHP的ImageMagick将图像的白色背景变为透明。我将图像URL传递给此PHP脚本,它将返回图像。

<?php

# grab the remote image url
$imgUrl = $_GET['img'];

# create new ImageMagick object
$im = new Imagick($imgUrl);

# remove extra white space
$im->clipImage(0);

# convert white background to transparent
$im->paintTransparentImage($im->getImageBackgroundColor(), 0, 3000);

# resize image --- passing 0 as width invokes proportional scaling
$im->resizeImage(0, 200, Imagick::FILTER_LANCZOS, 1);

# set resulting image format as png
$im->setImageFormat('png');

# set header type as PNG image
header('Content-Type: image/png');

# output the new image
echo $im->getImageBlob();

这些转换工作得非常好。但是,如果我有一个带有白色对象的图像,将模糊值传递给paintTransparentImage()并不能很好地工作;这就是我清理锯齿状边缘的方式。

以下是结果示例,请注意白色沙发:

如果我没有传递一个fuzz值,那么我会得到一个适当的切割,但会留下乱七八糟的边缘:

我尝试使用resizeImage()来实现所谓的"空间抗锯齿"(将图像放大->使用paintTransparentImage()->缩小图像),但我没有注意到任何重大变化。

我可以做些什么来更好地处理这些真正的白色图像?我试过trimImage()和edgeImage(),但我无法得到我想要的结果。

最坏的情况(虽然不理想),有没有一种方法可以识别图像是否包含特定颜色的某个百分比?也就是说。如果图像包含>90%的白色像素,那么我可以运行paintTransparentImage(),模糊值为0,而不是3000,这至少会给我一个适当的剪切。

谢谢。


解决方案

解决方案:

先用其他颜色替换白色背景,然后将该颜色更改为透明。

<?php

# get img url
$imgUrl = $_GET['img'];

# create new ImageMagick object from image url
$im = new Imagick($imgUrl);

# replace white background with fuchsia
$im->floodFillPaintImage("rgb(255, 0, 255)", 2500, "rgb(255,255,255)", 0 , 0, false);

#make fuchsia transparent
$im->paintTransparentImage("rgb(255,0,255)", 0, 10);

# resize image --- passing 0 as width invokes proportional scaling
$im->resizeImage(0, 200, Imagick::FILTER_LANCZOS, 1);

# set resulting image format as png
$im->setImageFormat('png');

# set header type as PNG image
header('Content-Type: image/png');

# output the new image
echo $im->getImageBlob();

相关文章