如何将PDF转换为tiff图像?

问题描述 投票:-1回答:1

我需要知道如何在.NET中将pdf文件转换为tiff图像(接受PHP,JS,Python代码)。

javascript python php .net
1个回答
0
投票

使用枕头:

from PIL import Image

a = Image.open('1.pdf')
a.save('1.tiff','TIFF')
© www.soinside.com 2019 - 2024. All rights reserved.