我有这段代码,以pdf文件为参数并将其转换为JPG。我的问题是,当pdf包含多个页面时,魔杖会创建如下图像:test-0.jpg,test-1.jpg等。
with Img(filename=args['pdf'] + file, resolution=300) as pic:
pic.compression_quality = 100
pic.save(filename='images/test.jpg')
我该怎么说魔杖只转换给定pdf的首页?
谢谢!
答案 0 :(得分:1)
最简单的方法是将[0]
附加到文件名。
with Img(filename=args['pdf'] + file + '[0]', resolution=300) as pic:
或者您可以使用pic.sequence
,但这会比较慢,因为它将需要对所有页面进行解码。
with Img(filename=args['pdf'] + file, resolution=300) as pic:
with Img(pic.sequence[0]) as first_page:
first_page.save(filename='images/test.jpg')