『漫游』酷论坛>『影音数码技术学习交流』>[求助]如何引用图片

[求助]如何引用图片

真宫寺一马@2005-02-01 00:18

avs怎么写能在图象中插入图片。以及图片位置如何定义。
先谢过了
引用

weilai@2005-02-01 08:57

Xlogo
download to: http://www.avisynth.org/warpenterprises/
Direct download: http://www.avisynth.org/warpenterprises/files/xlogo_25_dll_20030630.zip

裡面有個解說.txt

Sample usage:
Use "c:/logo_0.bmp" at x=300, y=200, alpha=180 with all others default:

LoadPlugin("c:/avisynth/xlogo.dll")
AviSource("c:/foo.avi")
Xlogo("c:/logo_0.bmp",300,200,180)


如果只想出現在 #100~#1000 frame
LoadPlugin("c:/avisynth/xlogo.dll")
c=AviSource("c:/foo.avi")
return c.trim(0,99) ++ c.trim(100,1000).Xlogo("c:/logo_0.bmp",300,200,180) ++ c.trim(1001,0)
引用

| TOP