c#调整图片分辨率的实现示例
作者:墨水直达
本文主要介绍了c#调整图片分辨率的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
描述:项目上有个需求是每隔一段时间从redis拿图片(图片格式为base64)
拿到之后将图片发送给led屏,这里尝试了下,图片拿取没啥问题,发送给led屏也没问题,但就是图片没显示出来,后面查找后发现,是因为图片分辨率的原因。
所以才有了下面的操作:
//这里是拿取redis的数据,并将他它转成图片 public void UpdateBaiduMap() { if (client.ContainsKey("map_theroad")) { try { string img = client.Get<string>("map_theroad"); img = img.Replace("data:image/png;base64,", "").Replace("data:image/jgp;base64,", "").Replace("data:image/jpg;base64,", "").Replace("data:image/jpeg;base64,", "").Replace("{", "").Replace("}", ""); ;//将base64头部信息替换 byte[] bytes = Convert.FromBase64String(img); //本来准备 //直接将bytes[]发送给led的,后面发现不行 MemoryStream memStream = new MemoryStream(bytes); System.Drawing.Image mImage = System.Drawing.Image.FromStream(memStream); Bitmap bp = new Bitmap(mImage); string ImageFilePath = "../../LED/images"; if (System.IO.Directory.Exists("../../LED/images") == false)//如果不存在就创建文件夹 { System.IO.Directory.CreateDirectory(ImageFilePath); } string ImagePath = ImageFilePath + "/baidu_maps.png";//定义图片名称 //需要调整图片分辨率 bp = KiResizeImage(bp, 170, 156); bp.Save(ImagePath, System.Drawing.Imaging.ImageFormat.Png);//注意保存路径 } catch (Exception e) { } } }
下面的方法是更改图片分辨率
public Bitmap KiResizeImage(Bitmap bmp, int newW, int newH) { try { Bitmap b = new Bitmap(newW, newH); Graphics g = Graphics.FromImage(b); // 插值算法的质量 g.InterpolationMode = InterpolationMode.HighQualityBicubic; g.DrawImage(bmp, new Rectangle(0, 0, newW, newH), new Rectangle(0, 0, bmp.Width, bmp.Height), GraphicsUnit.Pixel); g.Dispose(); return b; } catch { return null; } }
到此这篇关于c#调整图片分辨率的实现示例的文章就介绍到这了,更多相关c# 图片分辨率内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!