我正在使用圖像處理工具,並且我正在使用imagemagick在子流程中解壓縮(和壓縮)圖像。這種運作良好,但它看起來像我要做的convert並行調用來獲得我需要的所有數據: convert jpeg:- rgb:- # To read the image data
convert jpeg:- info:- # To read metadata, such as the dimensions o
我想使用imagemagick魔杖包將PDF文件的所有頁面轉換爲單個圖像文件。我雖然具有下列麻煩(見下面的註釋其中的突出問題) import tempfile
from wand.image import Image
with file('my_pdf_with_5_pages.png') as f:
image = Image(file=f, format='png')