91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python批量生成特定尺寸圖片及圖畫任意文字的實例

發布時間:2020-10-08 17:48:49 來源:腳本之家 閱讀:110 作者:像風一樣的自由 欄目:開發技術

因為工作需要生成各種大小的圖片,所以寫了個小腳本,順便支持了下圖畫文字內容。

具體代碼如下:

from PIL import Image, ImageDraw, ImageFont
'''
  Auth: Xiaowu Chen
  Note: Please install [pillow] library before run this script.
'''
 
 
def draw_image(new_img, text, show_image=False):
  text = str(text)
  draw = ImageDraw.Draw(new_img)
  img_size = new_img.size
  draw.line((0, 0) + img_size, fill=128)
  draw.line((0, img_size[1], img_size[0], 0), fill=128)
 
  font_size = 40
  fnt = ImageFont.truetype('arial.ttf', font_size)
  fnt_size = fnt.getsize(text)
  while fnt_size[0] > img_size[0] or fnt_size[0] > img_size[0]:
    font_size -= 5
    fnt = ImageFont.truetype('arial.ttf', font_size)
    fnt_size = fnt.getsize(text)
 
  x = (img_size[0] - fnt_size[0]) / 2
  y = (img_size[1] - fnt_size[1]) / 2
  draw.text((x, y), text, font=fnt, fill=(255, 0, 0))
 
  if show_image:
    new_img.show()
  del draw
 
 
def new_image(width, height, text='default', color=(100, 100, 100, 255), show_image=False):
  new_img = Image.new('RGBA', (int(width), int(height)), color)
  draw_image(new_img, text, show_image)
  new_img.save(r'%s_%s_%s.png' % (width, height, text))
  del new_img
 
 
def new_image_with_file(fn):
  with open(fn, encoding='utf-8') as f:
    for l in f:
      l = l.strip()
      if l:
        ls = l.split(',')
        if '#' == l[0] or len(ls) < 2:
          continue
 
        new_image(*ls)
 
 
if '__main__' == __name__:
  new_image(400, 300, 'hello world any size', show_image=True)
  # new_image_with_file('image_data.txt')
 
 

如果你需要批量的話,批量數據文件的格式如下:

#width,height,text
200,200,hello
300,255,world

執行后的效果如下:

Python批量生成特定尺寸圖片及圖畫任意文字的實例

以上這篇Python批量生成特定尺寸圖片及圖畫任意文字的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

罗城| 长葛市| 广德县| 漳州市| 兴安县| 都江堰市| 海南省| 自治县| 聂荣县| 甘孜县| 长沙市| 敦化市| 安平县| 东莞市| 阿坝| 绵阳市| 山西省| 贵州省| 印江| 长乐市| 鄢陵县| 太保市| 灌云县| 慈利县| 汉寿县| 安丘市| 平远县| 望谟县| 清丰县| 奈曼旗| 乌鲁木齐县| 石家庄市| 鄂尔多斯市| 象山县| 永济市| 望奎县| 宁河县| 长海县| 白沙| 稻城县| 鸡西市|