1. 程式人生 > 實用技巧 >PhotoShop工具開發之Python(二)

PhotoShop工具開發之Python(二)

接上篇


前面學會了,怎麼開啟-關閉 PhotoShop, 今天就來學怎麼編輯-匯出儲存

  • 首先連線PhotoShop,學以致用
from comtypes.client import CreateObject
ps_app = CreateObject("Photoshop.Application", dynamic=True)

一.新建圖層並填充背景色

  • 新建圖層
ps_app.Preferences.RulerUnits = 1
new_doc = ps_app.Documents.Add(1024, 1024, 72, "new_doc", 2, 1, 1) #新建文件
new_art_layer = new_doc.ArtLayers.Add()
new_art_layer.name = "background_color_base" # 建立一個名為background_color_base圖層 
  • 設定背景色
background_color = CreateObject('Photoshop.SolidColor')
background_color.rgb.red = 128
background_color.rgb.green = 128
background_color.rgb.blue = 255
  • 填充圖層
new_doc.selection.Fill(background_color)

二.設定匯出TGA選項

tga_options = CreateObject('Photoshop.TargaSaveOptions') # 建立TGA儲存選項物件
tga_options.Resolution = 24 # 24位或32位
tga_options.AlphaChannels = False # True 帶A通道
tga_options.RLECompression = False #True 壓縮方式輸出

上面那一堆都是在設定儲存選項,可以參照下圖TGA另存選項

三.設定儲存PSD選項

psd_options = CreateObject('Photoshop.PhotoshopSaveOptions')
psd_options.annotations = False
psd_options.alphaChannels = True
psd_options.layers = True
psd_options.spotColors = True
psd_options.embedColorProfile = True

上面那一堆都是在設定儲存選項,可以參照下圖PSD另存選項

四.儲存

經過上面一頓操作後,我們可以把操作結果儲存下來

#儲存PSD
new_doc.SaveAs(r"本地路徑.psd", psd_options,True) 
 #儲存TGA
new_doc.SaveAs(r"本地路徑.tga", tga_options,True)

Ending


目前為止,python操作Photoshop的技巧,已經學會了 開啟 - 新建 - 儲存 - 退出,下次我們繼續深入不同的動作