Python psd-tools如何转换文件

2024年07月16日 文件操作 Python51

1、说明

psd文件是Phtoshop图片格式,使用Python的库psd-tools将它进行转换。所有的图片输出的格式为PSD格式。为了方便进行观察与转换,需要将这些PSD文件转换成JPEG,BMP文件。

2、实例

#!/usr/local/bin/python
# -*- coding: gbk -*-
#============================================================
# TEST1.PY                     -- by Dr. ZhuoQing 2021-05-31
#
# Note:
#============================================================
 
from head import *
from psd_tools              import PSDImage
 
picdir = tspstring2text('picdir')
filedim = os.listdir(picdir)
outdir = r'd:\temp\pictemp'
 
for f in filedim:
    fname = os.path.join(picdir, f)
    printf(fname)
 
    psd = PSDImage.open(fname)
    foutname = os.path.join(outdir, f.split('.')[0]+'.BMP')
 
    psd.compose().save(foutname)
 
printf('\a')
 
#------------------------------------------------------------
#        END OF FILE : TEST1.PY
#============================================================

本文链接:http://so.lmcjl.com/news/8570/

展开阅读全文