无法分配

无法分配

我试图使用魔杖PDF创建高分辨率JPEG文件蟒蛇魔杖Image对象。这个问题是跟进到How to create high res JPEG with Wand。

,我发现了错误:

with ok.transform('2000x1000', '100%') as image: 

AttributeError: __enter__

试图单步执行代码:

Python 3.6.2 |Continuum Analytics, Inc.| (default, Jul 20 2017, 12:30:02) [MSC v.1900 64 bit (AMD64)] on win32 

>>> im = ok.transform('2000x1000', '100%')

>>> im

>>> im

你可以看到,我不能指定转换后的影像即时通讯。为什么?

回答:

you can see that I am unable to assign the transformed image to im. Why ?

方法wand.image.Image.transform不返回wand.image.Image的实例。

另请注意。使用IM-7删除了MagickWand便利方法MagickTransformImage。直接使用wand.image.Image.crop & wand.image.Image.resize

with Image(filename=file_path, resolution=400) as image: 

image.crop(width=2000, height=1000)

以上是 无法分配 的全部内容, 来源链接: utcz.com/qa/257244.html

回到顶部