public static Bitmap WaterMarkWithText(System.Drawing.Bitmap origialgif,string
text,string filePath)
{
//用于存放桢
List<Frame> frames = new
List<Frame>();
//如果不是gif文件,直接返回原图像
if (origialgif.RawFormat.Guid
!= System.Drawing.Imaging.ImageFormat.Gif.Guid)
{
return origialgif;
}
//如果该图像是gif文件
foreach (Guid guid in
origialgif.FrameDimensionsList)
{
System.Drawing.Imaging.FrameDimension
frameDimension = new System.Drawing.Imaging.FrameDimension(guid);
int
frameCount = origialgif.GetFrameCount(frameDimension);
for (int i = 0; i
< frameCount; i++)
{
if (origialgif.SelectActiveFrame(frameDimension,
i) == 0)
{
int delay =
Convert.ToInt32(origialgif.GetPropertyItem(20736).Value.GetValue(i));
Image
img = Image.FromHbitmap(origialgif.GetHbitmap());
Font font = new Font(new
FontFamily("宋体"),35.0f,FontStyle.Bold);
Graphics g =
Graphics.FromImage(img);
g.DrawString(text,font,Brushes.BlanchedAlmond,
new PointF(10.0f,10.0f));
Frame frame = new Frame(img,delay);
frames.Add(frame);
}
}
Gif.Components.AnimatedGifEncoder gif =
new Gif.Components.AnimatedGifEncoder();
gif.Start(filePath);
gif.SetDelay(100);
gif.SetRepeat(0);
for (int i = 0; i <
frames.Count; i++)
{
gif.AddFrame(frames[i].Image);
}
gif.Finish();
try
{
Bitmap gifImg =
(Bitmap)Bitmap.FromFile(filePath);
return gifImg;
}
catch
{
return origialgif;
}
}
return origialgif;
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。