制作电影特效效果
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了制作电影特效效果相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
Lable控件的Font属性
PictureBox控件的Size属性
实现代码:
private void button1_Click(object sender, EventArgs e) { timer1.Start(); pictureBox1.Visible = false; label1.Visible = true; } private void button2_Click(object sender, EventArgs e) { timer1.Start(); pictureBox1.Visible = true; label1.Visible = false; } private void timer1_Tick(object sender, EventArgs e) { label1.Font = new Font(label1.Font.FontFamily,label1.Font.Size+1); pictureBox1.Size = new Size(pictureBox1.Width+5,pictureBox1.Height+5); }
以上是关于制作电影特效效果的主要内容,如果未能解决你的问题,请参考以下文章
手把手:使用OpenCV进行面部合成— C++ / Python