1. 程式人生 > >圖片的縮放處理

圖片的縮放處理

gpo ram color format div files blog form body

"c:\Program Files\ImageMagick-6.9.9-Q16\identify.exe" -format "%[fx:w]x%[fx:h]"  111.jpg

返回:
1080x1440

A   x   B

# 如果寬比高大,表示是橫版
if A>=B:
  pass

# 如果高比寬要大,表示是豎版
else:
  pass


1024x768

# 如果是橫版
"c:\Program Files\ImageMagick-6.9.9-Q16\convert.exe" -resize 1024 111.jpg 111_heng.jpg

# 如果是豎版
"c:\Program Files\ImageMagick-6.9.9-Q16\convert.exe" -resize x768 111.jpg 111_shu.jpg

圖片的縮放處理