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

溫馨提示×

溫馨提示×

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

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

Python中如何實現文字成像方法

發布時間:2022-01-14 14:12:57 來源:億速云 閱讀:154 作者:小新 欄目:開發技術

小編給大家分享一下Python中如何實現文字成像方法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

一、特效預覽

Python中如何實現文字成像方法

處理前

Python中如何實現文字成像方法

處理后

Python中如何實現文字成像方法

細節放大后

二、程序原理

1.輸入你想隱藏的文字

2.然后寫到另一張跟照片同等大小的空白紙張上

3.將相同位置的文字的顏色用照片上相同位置的顏色填充即可

4.然后生成新的圖片你聽懂了嗎 

三、程序源碼

#!/usr/bin/env python
# encoding: utf-8
 
from PIL import Image, ImageDraw, ImageFont
 
class wordPicture:
    '''
     This is a main Class, the file contains all documents.
     One document contains paragraphs that have several sentences
     It loads the original file and converts the original file to new content
     Then the new content will be saved by this class
    '''
    def __init__(self):
        self.font_size = 7
        self.picture = 'assets/picture.jpeg'
 
    def hello(self):
        '''
        This is a welcome speech
        :return: self
        '''
        print('*' * 50)
        print(' ' * 20 + '文字成像')
        print(' ' * 5 + 'Author: autofelix  Date: 2022-01-06 13:14')
        print('*' * 50)
        return self
 
    def run(self):
        '''
        The program entry
        '''
        word = input('請輸入你想說的:') or '我鐘意你'
 
        resource = Image.open(self.picture)
        img_array = resource.load()
 
        image_new = Image.new('RGB', resource.size, (0, 0, 0))
        draw = ImageDraw.Draw(image_new)
        font = ImageFont.truetype('/System/Library/Fonts/PingFang.ttc', self.font_size)
 
        yield_word = self.character_generator(word)
 
        for y in range(0, resource.size[1], self.font_size):
            for x in range(0, resource.size[0], self.font_size):
                draw.text((x, y), next(yield_word), font=font, fill=img_array[x, y], direction=None)
 
        image_new.convert('RGB').save('result.jpeg')
 
    def character_generator(self, text):
        while True:
            for i in range(len(text)):
                yield text[i]
 
 
if __name__ == '__main__':
    wordPicture().hello().run()

看完了這篇文章,相信你對“Python中如何實現文字成像方法”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

定州市| 城市| 尉犁县| 天祝| 云龙县| 天峨县| 桂平市| 新泰市| 高平市| 安阳县| 四川省| 铁力市| 高要市| 福海县| 崇文区| 乾安县| 常山县| 寻甸| 泽普县| 琼海市| 泊头市| 抚宁县| 麻城市| 新巴尔虎右旗| 长沙县| 盘锦市| 沙田区| 辉县市| 五常市| 广德县| 茌平县| 张家口市| 武邑县| 团风县| 诸暨市| 景洪市| 德保县| 宁安市| 青田县| 柘城县| 昌吉市|