gpt4 book ai didi

python - 如何在python子进程中指定图像输出的尺寸?

转载 作者:太空宇宙 更新时间:2023-11-03 15:11:36 25 4
gpt4 key购买 nike

我想将 pdf 文件转换为图像。我想指定图像的输出尺寸。我该怎么做?

import subprocess
#I want to pass output dimension as parameter. How do I do that
params = ['convert','./data/in.pdf','thumnails.jpg']
subprocess.check_call(params)

最佳答案

尽管我并没有真正使用 image-magick 或其 convert 命令行命令。但我做了一些研究,发现您可以使用 -resize 参数来调整图像大小。您可以引用herehere还有here更多细节。要将其合并到从子进程运行,您可以执行以下操作:

import subprocess
#I want to pass output dimension as parameter. How do I do that
params = ['convert','./data/in.pdf','-resize', '100x100', 'thumnails.jpg'] # replace 100x100 with your width x height
subprocess.check_call(params)

或者,您可以尝试使用 -密度 参数:

params = ['convert', '-density', '100x100', './data/in.pdf', 'thumnails.jpg'] # replace 100x100 with your width x height 

关于python - 如何在python子进程中指定图像输出的尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44172720/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com