我正在尝试使用ImageMagick(6.8.8-7)读取SVG图像并获得有效的透明像素。
以下代码适用于PNG格式,但对于SVG,我只能有一些白色背景。 所以我尝试添加MagickSetBackgroundColor和MagickSetImageBackgroundColor以及一些合并图层,但我仍然无法使其工作。
以下是PoC的摘录:
MagickWandGenesis();
m_wand = NewMagickWand();
MagickReadImage(m_wand, file_name);
hasAlfa = MagickGetImageAlphaChannel(m_wand);
fprintf(stderr, "alpha channel detection: %d\n", hasAlfa);
if (hasAlfa == MagickTrue) {
PixelWand *color;
MagickWand *new_wand;
imagedata = malloc(w*h*4);
color = NewPixelWand();
PixelSetColor(color, "none");
MagickSetBackgroundColor(m_wand, color);
MagickSetImageBackgroundColor(m_wand, color);
new_wand = MagickMergeImageLayers(m_wand, MergeLayer);
DestroyMagickWand(m_wand);
m_wand = new_wand;
mrc = MagickExportImagePixels(m_wand, 0, 0, (size_t)w, (size_t)h, "RGBA", CharPixel, imagedata);
fprintf(stderr, "R:%d G:%d B:%d A:%d\nR:%d G:%d B:%d A:%d\n", imagedata[0], imagedata[1], imagedata[2], imagedata[3], imagedata[4], imagedata[5], imagedata[6], imagedata[7]);
}
使用PNG图像的结果:
size: 9 x 11
alpha channel detection: 1
R:0 G:0 B:0 A:0
R:0 G:0 B:0 A:0
使用SVG图像的结果:
size: 640 x 1000
alpha channel detection: 1
R:255 G:255 B:255 A:255
R:255 G:255 B:255 A:255
任何线索?
答案 0 :(得分:0)
我希望,我理解你的问题。要将透明度从svg转换为png,必须将像素定义为透明。 你可以使用" opacity"来定义svg中的透明度,但是在svg中,透明度仅适用于下一层(不是alpha层,透过像alpha中的所有对象)。 如果你想在png上使用alpha透明度,它确实是最好的定义方式(即白色),并将其设置为alpha transperency