本文整理汇总了Python中pgmagick.Image.quantize方法的典型用法代码示例。如果您正苦于以下问题:Python Image.quantize方法的具体用法?Python Image.quantize怎么用?Python Image.quantize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pgmagick.Image
的用法示例。
在下文中一共展示了Image.quantize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: gera_xyz
# 需要导入模块: from pgmagick import Image [as 别名]
# 或者: from pgmagick.Image import quantize [as 别名]
def gera_xyz(imagem):
'''
* reduz a imagem a 25% da dimensão em pixels e converte para GIF 64 cores;
* gera um arquivo .txt com os dados pixel a pixel, quanto às cores em RGB
e xyz
'''
print messages.strings['welcome']
print messages.strings['crexyz']
img_base = Blob(open(imagem).read())
img_alvo = Image(img_base)
img_alvo.magick('GIF')
img_alvo.colorSpace = 'XYZ'
img_alvo.scale('25%')
img_alvo.quantizeColors(64)
img_alvo.quantizeDither(img_alvo.quantize(64))
img_alvo.write('./tmp.txt')
with open('./tmp.txt', 'r') as tt:
return tt.readlines()