无法将 imgkit 图像转换为 PIL 图像
Unable to convert imgkit image to PIL image
我正在尝试将 imgkit 图像转换为 PIL 图像以对其进行修改。当我尝试使用文件时,imgkit 成功地将 html 转换为图像。当我使用 BytesIO 并尝试转换为 PIL 图像时,出现错误。
这是我的代码:
img = imgkit.from_string(template.render(a=elements, r=range(len(elements))), False, config=config)
bytesImg = BytesIO(img)
bytesImg.seek(0)
image = Image.open(bytesImg) #error here
PIL.UnidentifiedImageError: cannot identify image file <_io.BytesIO object at 0x102082680>
我已经看过了this and this。
是我错误地将 imgkit 图像转换为字节还是存在其他错误?
使用 Pillow 8.1 Python 3.9 和 imgkit 1.0.2
我是不是将 imgkit 图像错误地转换为字节,还是存在其他错误?
我将从检查您的字节是否表示您的 Pillow 可以理解的图像开始。如果您排除其中一种已知格式,内置模块 imghdr 应该足够了(请参阅文档中的 table)。这种情况下的用法:
import imghdr
...
print(imghdr.what(None, h=img))
如果它确实识别格式,那么请检查您的 Pillow 是否支持它,否则您需要手动检查 file signature(很少的起始字节)。
imgkit 正在将 html 转换为 pdf,因为配置变量被弄乱了。
使用
which wkhtmltoimage
找到 wkhtmltoimage 的路径并设置
config = imgkit.config(wkhtmltoimage="path found")
我正在尝试将 imgkit 图像转换为 PIL 图像以对其进行修改。当我尝试使用文件时,imgkit 成功地将 html 转换为图像。当我使用 BytesIO 并尝试转换为 PIL 图像时,出现错误。
这是我的代码:
img = imgkit.from_string(template.render(a=elements, r=range(len(elements))), False, config=config)
bytesImg = BytesIO(img)
bytesImg.seek(0)
image = Image.open(bytesImg) #error here
PIL.UnidentifiedImageError: cannot identify image file <_io.BytesIO object at 0x102082680>
我已经看过了this and this。 是我错误地将 imgkit 图像转换为字节还是存在其他错误?
使用 Pillow 8.1 Python 3.9 和 imgkit 1.0.2
我是不是将 imgkit 图像错误地转换为字节,还是存在其他错误?
我将从检查您的字节是否表示您的 Pillow 可以理解的图像开始。如果您排除其中一种已知格式,内置模块 imghdr 应该足够了(请参阅文档中的 table)。这种情况下的用法:
import imghdr
...
print(imghdr.what(None, h=img))
如果它确实识别格式,那么请检查您的 Pillow 是否支持它,否则您需要手动检查 file signature(很少的起始字节)。
imgkit 正在将 html 转换为 pdf,因为配置变量被弄乱了。
使用
which wkhtmltoimage
找到 wkhtmltoimage 的路径并设置
config = imgkit.config(wkhtmltoimage="path found")