真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯網站制作重慶分公司

Python實現文字特效的方法-創(chuàng)新互聯

創(chuàng)新互聯www.cdcxhl.cn八線動態(tài)BGP香港云服務器提供商,新人活動買多久送多久,劃算不套路!

目前成都創(chuàng)新互聯公司已為1000+的企業(yè)提供了網站建設、域名、雅安服務器托管、網站運營、企業(yè)網站設計、烏當網站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協力一起成長,共同發(fā)展。

不懂Python實現文字特效的方法?其實想解決這個問題也不難,下面讓小編帶著大家一起學習怎么去解決,希望大家閱讀完這篇文章后大所收獲。

基本結構

總結文字特效的特點是,每個文字獨立運動,都符合同一個運動規(guī)律,但每個文字之間保持一個固定的時間差。

每個字的運動可以分成三個部分,字體大小的變化、文字位置的變化、文字顏色(透明度)的變化。

# 把每個文字與它的三個運動結合為一個基本單位
def newTextMotion(char, posFunc, sizeFunc, colorFunc):
    tm={}
    tm['char']=char
    tm['posFunc']= posFunc
    tm['sizeFunc']= sizeFunc
    tm['colorFunc']= colorFunc
    return tm

文字動效的展示

在任意一個時間點上,獲得文字的顯示效果。

# 在指定的時間,計算文字的位置、大小、顏色等
def showText(img, textMotion, time):
    char= textMotion['char'] 
    pos= textMotion['posFunc'](time)
    size= textMotion['sizeFunc'](time)
    color= textMotion['colorFunc'](time)
    font= ImageFont.truetype(fontName, size)
    draw = ImageDraw.Draw(im=img)
    textSize= draw.textsize(text=char, font=font)
    tx= pos[0]- textSize[0]// 2
    ty= pos[1]- textSize[1]// 2
    draw.text(xy=(tx, ty), text=char, fill=color, font=font)

針對一組文字,形成一個列表,獲取起每個時間點的顯示圖,作為一幀

def getTextFrame(tmList, time):
    textImg= Image.new('RGBA', (1280, 720))
    for tm in tmList:
        showText(textImg, tm, time) 
    return textImg

具體文字運動規(guī)律

下面看看這兩種特效的具體運動規(guī)律。乍一看比較復雜,但拆分為三個運動后,其實每種都比較簡單。以此為模塊,讀者可以自行制作更多的文字特效。

# 文字縮小
def makeTextShrink(char, toSize, toPos, toColor, offset, dur):
    def colorFunc(time):
        if time< offset:
            return (0,0,0,0)
        if time> offset+ dur:
            return toColor
        return toColor[:-1] + (50+ round((time-offset)/dur*200),)
    def sizeFunc(time):
        if time< offset:
            return toSize* 8
        if time> offset+ dur:
            return toSize
        return toSize*8 - round((time-offset)/dur* toSize*7.5)
    def posFunc(time):
        if time< offset:
            return (0,0)
        if time> offset+ dur:
            return toPos
        # return (toPos[0], round((time-offset)/dur*toPos[1]))
        return toPos
    return newTextMotion(char, posFunc, sizeFunc, colorFunc)
# 拋物線降落(有一個回彈效果)
def makeTextParaDrop(char, toSize, toPos, toColor, offset, dur):
    def colorFunc(time):
        if time< offset:
            return (0,0,0,0)
        if time> offset+ dur:
            return toColor
        return toColor[:-1] + (50+ round((time-offset)/dur*200),)
    def sizeFunc(time):
        if time< offset:
            return toSize
        if time> offset+ dur:
            return toSize
        return toSize
    def posFunc(time):
        if time< offset:
            return (toPos[0], 0)
        if time> offset+ dur:
            return toPos
        r= 0.75
        dur2= dur
        a= toPos[1]/(dur2* dur2* (1- 2* r))
        b= -2* a* dur2* r
        x= (time-offset)
        return (toPos[0], round(a* x* x+ b*x))
    # print(toPos)
    return newTextMotion(char, posFunc, sizeFunc, colorFunc)

整體設置與運行

對于一行文字,每個增加特效,并依次給予一個延時。

# 一行文字,給定所有參數,配置運動函數與延時
def getMotionList(text, fontSize, fontColor, startPos, fromTime, dur, func):
    tmList=[]
    inter= round(dur/ len(text))
    for i in range(len(text)):
        char= text[i]
        pos= (startPos[0]+ i* fontSize+ 10, startPos[1])
        color= fontColor
        # tm= makeTextDropMotion(char, fontSize, pos, color, 150*i)
        tm= func(char, fontSize, pos, color, fromTime+inter*i, dur)
        tmList.append(tm)
    return tmList

這里,將不同的文字特效函數作為參數傳入即可,有比較好的擴展性。

最后是一個展示函數,用了imageio來制作gif圖。這里注意兩個地方,第一是展示時間應當是單文字運動時間的兩倍。為了確保動感,當第一個文字到位時,最后一個文字恰好啟動,所以時間是兩倍的關系。

第二是制作GIF的延時應當與計算用的延時一致,這里都是50毫秒(20fps)。

def showTextDrop(text, startPos, func):
    fontSize= 50
    color=(255, 255,  0, 255)
    tmList= getMotionList(text, fontSize, color, startPos, 0, 1000, func)
    frames=[]
    outfilename='temp.gif'
    for i in range(0, 2000, 50):
        print(i)
        img= Image.new('RGB', (640, 360))
        # img= Image.open('back.png').resize((640, 360), Image.ANTIALIAS)
        # img = img.convert("RGB")   
        textImg= getTextFrame(tmList, i)
        r, g, b, a= textImg.split()
        img.paste(textImg, (0,0), mask= a)
        str1= 'tempAA.png'
        img.save(str1)
        im = imageio.imread(str1)
        frames.append(im)
    imageio.mimsave(outfilename, frames, 'GIF', duration=0.05) 
    
if __name__=='__main__':
    # showTextDrop('淡妝濃抹總相宜', (150,200), makeTextParaDrop)
    showTextDrop('淡妝濃抹總相宜', (150,200), makeTextDropMotion)

兩張效果圖

Python實現文字特效的方法

Python實現文字特效的方法

感謝你能夠認真閱讀完這篇文章,希望小編分享Python實現文字特效的方法內容對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯,關注創(chuàng)新互聯-成都網站建設公司行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯,詳細的解決方法等著你來學習!


網頁標題:Python實現文字特效的方法-創(chuàng)新互聯
網站URL:http://weahome.cn/article/csohpi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部