无法分配 python 魔杖图像对象
Unable to assign python wand Image object
我正在尝试使用 wand 从 pdf 创建高分辨率 jpeg。这个问题是 .
的后续问题
我遇到错误:
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
你可以看到我无法将转换后的图像分配给 im。为什么?
you can see that I am unable to assign the transformed image to im. Why ?
方法 wand.image.Image.transform
不是 return 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)
我正在尝试使用 wand 从 pdf 创建高分辨率 jpeg。这个问题是
我遇到错误:
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
你可以看到我无法将转换后的图像分配给 im。为什么?
you can see that I am unable to assign the transformed image to im. Why ?
方法 wand.image.Image.transform
不是 return 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)