C#中显示图片问题
各位大虾/!C#中怎么显示GIF格式动画图片,吥是静态的,要动态的,还有就是RichTextBox里面怎么显示图片.谢谢最好详细点的,...
各位大虾/!C#中怎么显示GIF格式动画图片,吥是静态的,要动态的,还有就是RichTextBox里面怎么显示图片.谢谢 最好详细点的,
展开
2个回答
2013-12-17
展开全部
你的GIF动态图片在界面上没有动,那么可能是因为图片本身的问题。
RichTextBox里面显示图片
public void InsertImage( RichTextBox textBox,ArrayList ar1,ArrayList ar2 )
{
OpenFileDialog openFileDialog1=new OpenFileDialog();
openFileDialog1.Filter="所有图象文件(*.*)|*.*";
string dname="";
if(openFileDialog1.ShowDialog() == DialogResult.OK)
{
string fullName=openFileDialog1.FileName;
string prefix=fullName.Substring(fullName.LastIndexOf(".")+1);
string name=fullName.Substring(fullName.LastIndexOf(@"\")+1);
//
// 把图片放在本地的文件夹中
//
dname=MainFile.TheTeacher.Name+"_"+DateTime.Now.Year.ToString()+"_"+DateTime.Now.Month.ToString()+"_"+DateTime.Now.Day.ToString()+"_"+DateTime.Now.Hour.ToString()+"_"+DateTime.Now.Second.ToString()+"_"+DateTime.Now.Millisecond.ToString()+"."+prefix;
string fullDName=imgFilePath+dname;
File.Move(fullName,fullDName);
Image img=Image.FromFile(fullDName);
Clipboard.SetDataObject(img);
this.PastImage(textBox);
//
// add the pic
//
this.TextChanged_Add(textBox.Rtf,ar1,ar2,dname);
}
RichTextBox里面显示图片
public void InsertImage( RichTextBox textBox,ArrayList ar1,ArrayList ar2 )
{
OpenFileDialog openFileDialog1=new OpenFileDialog();
openFileDialog1.Filter="所有图象文件(*.*)|*.*";
string dname="";
if(openFileDialog1.ShowDialog() == DialogResult.OK)
{
string fullName=openFileDialog1.FileName;
string prefix=fullName.Substring(fullName.LastIndexOf(".")+1);
string name=fullName.Substring(fullName.LastIndexOf(@"\")+1);
//
// 把图片放在本地的文件夹中
//
dname=MainFile.TheTeacher.Name+"_"+DateTime.Now.Year.ToString()+"_"+DateTime.Now.Month.ToString()+"_"+DateTime.Now.Day.ToString()+"_"+DateTime.Now.Hour.ToString()+"_"+DateTime.Now.Second.ToString()+"_"+DateTime.Now.Millisecond.ToString()+"."+prefix;
string fullDName=imgFilePath+dname;
File.Move(fullName,fullDName);
Image img=Image.FromFile(fullDName);
Clipboard.SetDataObject(img);
this.PastImage(textBox);
//
// add the pic
//
this.TextChanged_Add(textBox.Rtf,ar1,ar2,dname);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-17
展开全部
我以前也遇到过这种情况,把一张动态的.gif图片设置成背景图片,结果不会动。如果程序没问题的话,你可以修改下浏览器的设置。IE菜单-->工具-->internet选项-->高级-->多媒体-->早播放网页中的动画选项前面打钩
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询