在C#。NET中合并两个图像

在C#。NET中合并两个图像,第1张

在C#/。NET中合并两个图像

基本上,我在我们的一个应用程序中使用了它:我们想在一个视频帧上叠加一个播放图标

Image playbutton;try{    playbutton = Image.FromFile();}catch (Exception ex){    return;}Image frame;try{    frame = Image.FromFile();}catch (Exception ex){    return;}using (frame){    using (var bitmap = new Bitmap(width, height))    {        using (var canvas = Graphics.FromImage(bitmap))        { canvas.InterpolationMode = InterpolationMode.HighQualityBicubic; canvas.DrawImage(frame,       new Rectangle(0,          0,          width,          height),       new Rectangle(0,          0,          frame.Width,          frame.Height),       GraphicsUnit.Pixel); canvas.DrawImage(playbutton,       (bitmap.Width / 2) - (playbutton.Width / 2),       (bitmap.Height / 2) - (playbutton.Height / 2)); canvas.Save();        }        try        { bitmap.Save(,  System.Drawing.Imaging.ImageFormat.Jpeg);        }        catch (Exception ex) { }    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5440919.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存