如何使用PythonMagick渲染PNG时设置背景颜色

时间:2011-04-27 15:46:55

标签: python imagemagick

我正在尝试使用PythonMagick渲染SVG-> PNG,但似乎忽略了背景颜色。

使用ImageMagick命令,事情按预期工作:

tmp$ convert -background none access.svg access.png
tmp$ convert -background red access.svg access2.png

分别产生透明和红色背景。

但是使用PythonMagick,似乎忽略了背景颜色:

import PythonMagick
svg = PythonMagick.Image('access.svg')
svg.backgroundColor().to_std_string()
'#FFFFFFFFFFFF'
svg.backgroundColor().alpha()
0.0
svg.backgroundColor('none')
svg.backgroundColor().to_std_string()
'#0000000000000000'
svg.backgroundColor().alpha()
1.0
svg.write('access.png')
svg.backgroundColor('red')
svg.backgroundColor().to_std_string()
'#FFFF00000000'
svg.backgroundColor().alpha()
0.0
svg.write('access2.png')

检查输出显示两个png都有白色背景。是否有另一种设置背景颜色的方法,以便在写入图像时识别它?

6 个答案:

答案 0 :(得分:1)

ImageMagick(以及PythonMagick作为其python API)具有非常差的SVG支持。甚至不希望它会呈现SVG文件,因为它是在SVG规范中编写的。它将SVG转换为内部MVG语言,然后转换为PNG。见http://www.imagemagick.org/script/magick-vector-graphics.php

ImageMagick 不是操纵矢量图形的工具。

答案 1 :(得分:0)

我没有看到问题,如果它与命令一起使用,那么使用它:

image = 'convert -background red access.svg access.png'
os.system(image)

不要忘记导入os

import os

另外你可以在命令中使用变量(不要忘记重命名变量):

image = 'convert -background '+background+' '+file_from+' '+file_to

答案 2 :(得分:0)

这可能是获得解决方案的迂回方式,但您是否可以创建所需颜色的单独背景图像,然后将图像组合在一起?

我认为它看起来像这样:

image.composite(background, 0, 0, PythonMagick.CompositeOperator.SrcOverDst)

我对PythonMagick的经验很少,但这是我在未能设置背景后会尝试的。

来源:

答案 3 :(得分:0)

PythonMagick的文档记录很差(要慈善),因此您可能希望坚持使用具有更好文档的内容,例如PythonMagickWand。一般来说,我建议坚持Python Imaging Library,但它不支持SVG,所以它不适合你。

我猜你的代码有什么问题,当你修改图像时,你可能正在创建一个新图像,即使你看到对你保留引用的对象有所改变。所以试试

svg = svg.backgroundColor('none')
svg.write('access.png')
svg = svg.backgroundColor('red')
svg.write('access2.png')

答案 4 :(得分:0)

这里说默认的背景颜色是白色,所以看起来它没有得到它:http://www.imagemagick.org/script/command-line-options.php#background

也许您需要将频道设置为'RGBA',可能默认为RGB,但如果背景应该是正确的颜色。正如许多洪水填充示例所做的那样:http://www.imagemagick.org/Usage/masking/#floodfill

这是对象的输出:

['class', 'delattr', 'dict', 'doc', 'eq', 'format', 'ge', 'getattribute', 'gt', 'hash', 'init', 'instance_size', 'le', 'lt', 'module', 'ne', 'new', 'reduce', 'reduce_ex', 'repr', 'setattr', 'sizeof', 'str', 'subclasshook', 'weakref', 'adaptiveThreshold', 'addNoise', 'adjoin', 'affineTransform', 'animationDelay', 'animationIterations', 'annotate', 'antiAlias', 'attribute', 'backgroundColor', 'backgroundTexture', 'baseColumns', 'baseFilename', 'baseRows', 'blur', 'border', 'borderColor', 'boundingBox', 'boxColor', 'cacheThreshold', 'channel', 'channelDepth', 'charcoal', 'chop', 'chromaBluePrimary', 'chromaGreenPrimary', 'chromaRedPrimary', 'chromaWhitePoint', 'classType', 'clipMask', 'colorFuzz', 'colorMap', 'colorMapSize', 'colorSpace', 'colorize', 'columns', 'comment', 'compare', 'compose', 'composite', 'compressType', 'contrast', 'convolve', 'crop', 'cycleColormap', 'debug', 'defineSet', 'defineValue', 'density', 'depth', 'despeckle', 'directory', 'display', 'draw', 'edge', 'emboss', 'endian', 'enhance', 'equalize', 'erase', 'fileName', 'fileSize', 'fillColor', 'fillPattern', 'fillRule', 'filterType', 'flip', 'floodFillColor', 'floodFillOpacity', 'floodFillTexture', 'flop', 'font', 'fontPointsize', 'fontTypeMetrics', 'format', 'frame', 'gamma', 'gaussianBlur', 'geometry', 'gifDisposeMethod', 'iccColorProfile', 'implode', 'interlaceType', 'iptcProfile', 'isValid', 'label', 'lineWidth', 'magick', 'magnify', 'map', 'matte', 'matteColor', 'matteFloodfill', 'meanErrorPerPixel', 'medianFilter', 'minify', 'modifyImage', 'modulate', 'modulusDepth', 'monochrome', 'montageGeometry', 'negate', 'normalize', 'normalizedMaxError', 'normalizedMeanError', 'oilPaint', 'opacity', 'opaque', 'page', 'penColor', 'penTexture', 'ping', 'pixelColor', 'process', 'profile', 'quality', 'quantize', 'quantizeColorSpace', 'quantizeColors', 'quantizeDither', 'quantizeTreeDepth', 'raise', 'read', 'readPixels', 'reduceNoise', 'registerId', 'renderingIntent', 'resolutionUnits', 'roll', 'rotate', 'rows', 'sample', 'scale', 'scene', 'segment', 'shade', 'sharpen', 'shave', 'shear', 'signature', 'size', 'solarize', 'spread', 'statistics', 'stegano', 'stereo', 'strokeAntiAlias', 'strokeColor', 'strokeDashOffset', 'strokeLineCap', 'strokeLineJoin', 'strokeMiterLimit', 'strokePattern', 'strokeWidth', 'subImage', 'subRange', 'swirl', 'syncPixels', 'textEncoding', 'texture', 'threshold', 'throwImageException', 'tileName', 'totalColors', 'transform', 'transformOrigin', 'transformReset', 'transformRotation', 'transformScale', 'transformSkewX', 'transformSkewY', 'transparent', 'trim', 'type', 'unregisterId', 'unsharpmask', 'verbose', 'view', 'wave', 'write', 'writePixels', 'x11Display', 'xResolution', 'yResolution', 'zoom']

从这里:Documents and examples of PythonMagick,你可以在那里看到频道。

答案 5 :(得分:0)

在Imagick for PHP中你会去:

$im->setBackgroundColor(new ImagickPixel('transparent'));

$ im是你新创建的Imagick对象,没有任何东西加载到它上面。

希望它有所帮助。