我被要求将Python应用程序移植到PHP(我不太喜欢PHP)。
我遇到麻烦的部分使用一组基于Map Icons Collection Nicolas Mollet的精彩{{3}}的单色“模板”图像。这些模板图像用于创建具有自定义背景和前景色的图标。 PIL的Image.paste用于使用模板Image作为alpha蒙版“粘贴”带有所选颜色的图标前景。例如:
我如何在PHP中复制它?除了按像素逐个进行之外,还有其他选择吗?
[更新]
我并不为我的PHP技能感到自豪......到目前为止我得到了什么:
<?php
header('Content-type: image/png');
// read parameters: icon file, foreground and background colors
$bgc = sscanf(empty($_GET['bg']) ? 'FFFFFF' : $_GET['bg'], '%2x%2x%2x');
$fgc = sscanf(empty($_GET['fg']) ? '000000' : $_GET['fg'], '%2x%2x%2x');
$icon = empty($_GET['icon']) ? 'base.png' : $_GET['icon'];
// read image information from template files
$shadow = imagecreatefrompng("../static/img/marker/shadow.png");
$bg = imagecreatefrompng("../static/img/marker/bg.png");
$fg = imagecreatefrompng("../static/img/marker/" . $icon);
$base = imagecreatefrompng("../static/img/marker/base.png");
imagesavealpha($base, true); // for the "shadow"
// loop over every pixel
for($x=0; $x<imagesx($base); $x++) {
for($y=0; $y<imagesy($base); $y++) {
$color = imagecolorsforindex($bg, imagecolorat($bg, $x, $y));
// templates are grayscale, any channel serves as alpha
$alpha = ($color['red'] >> 1) ^ 127; // 127=transparent, 0=opaque.
if($alpha != 127) { // if not 100% transparent
imagesetpixel($base, $x, $y, imagecolorallocatealpha($base, $bgc[0], $bgc[1], $bgc[2], $alpha));
}
// repeat for foreground and shadow with foreground color
foreach(array($shadow, $fg) as $im) {
$color = imagecolorsforindex($im, imagecolorat($im, $x, $y));
$alpha = ($color['red'] >> 1) ^ 127;
if($alpha != 127) {
imagesetpixel($base, $x, $y, imagecolorallocatealpha($base, $fgc[0], $fgc[1], $fgc[2], $alpha));
}
}
}
}
// spit image
imagepng($base);
// destroy resources
foreach(array($shadow, $fg, $base, $bg) as $im) {
imagedestroy($im);
}
?>
它的工作和性能都不错。
答案 0 :(得分:1)
根据我的评论,ImageMagick可以做到这一点。但是,您已经指出这对您的用例可能不是非最佳的,因此请考虑使用GD2。有关如何在PHP站点上执行image merging的演示。
我猜这可以在任何(最近的)默认PHP安装上完成。