python-PS圖片
阿新 • • 發佈:2018-08-24
復制 ima size 保存 尺寸 新建文件夾 文件夾 for region
from PIL import ImageColor # pip install pillow
# http://pillow-zh-cn.readthedocs.io/zh_CN/latest/installation.html
ImageColor.getcolor(‘red‘, ‘RGB‘)
(255, 0, 0)
ImageColor.getcolor(‘red‘, ‘RGBA‘) # A 透明度,png圖片
(255, 0, 0, 255)
# 切換到工作目錄,有圖片文件的地方 %cd D:\python全站\python處理圖片 %cd D:\python全站\新建文件夾\py2018-鏃墮棿API閭歡鐓х墖\py2018\02-auto\image_ctrl
D:\python全站\python處理圖片
D:\python全站\新建文件夾\py2018-鏃墮棿API閭歡鐓х墖\py2018\02-auto\image_ctrl
%pwd
‘D:\\python全站\\新建文件夾\\py2018-鏃墮棿API閭\ue1bb歡鐓х墖\\py2018\\02-auto\\image_ctrl‘
from PIL import Image # 創建一個縮略圖 # 打開一個jpg圖像文件,註意是當前路徑 im = Image.open(‘lulu.jpg‘) print(im.format, im.size, im.mode) # 獲取圖像尺寸 w, h = im.size print(‘尺寸:%s%s‘ %(w,h)) # 縮放到50% im.thumbnail((w//2, h//2)) # // 整除 print(‘Resize image to %s%s:‘ %(w//2, h//2)) # 吧縮放後的圖像用jpeg格式保存 im.save(‘thumbnail.jpg‘, ‘jpeg‘)
JPEG (960, 542) RGB
尺寸:960542
Resize image to 480271:
# 顯示圖像
im.show()
# 調整大小
im_sizec = im.resize((w//4, h//4))
im_sizec.save(‘cc-1-4.jpg‘)
# 增強效果
from PIL import ImageEnhance
enh = ImageEnhance.Contrast(im)
enh.enhance(1.3).show(‘30%增強對比‘)
# 裁剪圖像 box = (100,100,400,400) region = im.crop(box) region.save(‘cc-300-300.jpg‘) region.show()
# 旋轉圖像
im.rotate(90).save(‘cc-90.jpg‘)
# 鏡像翻轉
im.transpose(Image.FLIP_LEFT_RIGHT).save(‘cc-水平.jpg‘)
im.transpose(Image.FLIP_TOP_BOTTOM).save(‘cc-上下.jpg‘)
# 添加水印,復制圖片,計算位置,粘貼合並圖片
# 打開圖片文件
logo_file = ‘cc.jpg‘
im_logo = Image.open(logo_file)
logo_width, logo_height = im_logo.size
# 打開目標文件
target = ‘py-banner.jpg‘
im_target = Image.open(target)
target_width, target_height = im_target.size
# 粘貼
im_copy = im_target.copy()
im_copy.paste(im_logo, (target_width-logo_width, target_height-logo_height))
im_copy.save(‘cc-logo.jpg‘)
python-PS圖片