.net5生成图片缩略图,有旋转的缩略图生成回正图片

2024-06-10 09:58

本文主要是介绍.net5生成图片缩略图,有旋转的缩略图生成回正图片,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

需要在nuget安装包System.Drawing.Common

using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace WebNetCore5_Img_Storage.Model.Tool
{/// <summary>/// 生成图片缩略图/// </summary>/// <remarks>/// 创建时间:2021-2-5 16:32:19/// </remarks>public static class ImageHandle{/// <summary>/// (推荐)生成缩略图,图片流输入,输出图片流/// </summary>/// <param name="dWidth">要生成的宽度</param>/// <param name="dHeight">要生成的高度</param>/// <param name="flag">生成图片质量,1-100</param>/// <param name="inputStream">输入图片流</param>/// <param name="outStream">输出图片流</param>public static void CompressImgByte(int dWidth, int dHeight, Stream inputStream, Stream outStream, int flag = 80, string arg = null){inputStream.Position = 0;System.Drawing.Image iSource = System.Drawing.Image.FromStream(inputStream);var prop = iSource.PropertyItems.FirstOrDefault(x => x.Id == 274);if (prop != null){//读取旋转方向byte[] buffed = prop.Value;StringBuilder sbv = new StringBuilder();foreach (var byteValue in buffed){sbv.Append(byteValue.ToString("x2"));}             string value2 = sbv.ToString();//Console.WriteLine($"图片id  {arg}  图片274里面的值>" + value2);//linux测试//windows获取到旋转的值为0600,linux旋转值为0006if (value2.Equals("0006") || value2.Equals("0600")){//未做任何操作,此缩略图会自动逆时针旋转90度//下面操作纠正旋转,让其顺时针旋转90度,让图片回正iSource.RotateFlip(RotateFlipType.Rotate90FlipNone);}}System.Drawing.Imaging.ImageFormat tFormat = iSource.RawFormat;//按比例缩放            if (dWidth > 0 && iSource.Width > dWidth && iSource.Width > iSource.Height){dHeight = dWidth * iSource.Height / iSource.Width;}else if (dWidth > 0 && dHeight == 0 && iSource.Width > dWidth){dHeight = dWidth * iSource.Height / iSource.Width;}else if (dWidth == 0 && dHeight > 0 && iSource.Width > iSource.Height){dWidth = dHeight * iSource.Width / iSource.Height;}else if (dHeight > iSource.Height || dWidth > iSource.Width){dWidth = iSource.Width;dHeight = iSource.Height;}else if (dHeight > 0 && iSource.Width < iSource.Height){dWidth = dHeight * iSource.Width / iSource.Height;}else{dWidth = iSource.Width;dHeight = iSource.Height;}Bitmap ob = new Bitmap(dWidth, dHeight);//ob.SetResolution(72,72);Graphics g = Graphics.FromImage(ob);//清空画布并以透明背景色填充g.Clear(System.Drawing.Color.Transparent);g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;g.DrawImage(iSource, new Rectangle(0, 0, dWidth, dHeight), 0, 0, iSource.Width, iSource.Height, GraphicsUnit.Pixel);g.Dispose();//以下代码为保存图片时,设置压缩质量  System.Drawing.Imaging.EncoderParameters ep = new System.Drawing.Imaging.EncoderParameters();long[] qy = new long[1];qy[0] = flag;//设置压缩的比例1-100  System.Drawing.Imaging.EncoderParameter eParam = new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.Quality, qy);ep.Param[0] = eParam;try{System.Drawing.Imaging.ImageCodecInfo[] arrayICI = System.Drawing.Imaging.ImageCodecInfo.GetImageEncoders();System.Drawing.Imaging.ImageCodecInfo jpegICIinfo = arrayICI.FirstOrDefault(x => x.FormatDescription.Equals("JPEG"));if (jpegICIinfo != null){//ob.Save("d://" + DateTime.Now.Ticks + ".jpg", jpegICIinfo, ep);ob.Save(outStream, jpegICIinfo, ep);//dFile是压缩后的新路径}else{ob.Save(outStream, tFormat);}}catch (Exception ex){string msg = ex.Message;Console.WriteLine(msg);}finally{iSource.Dispose();ob.Dispose();}}/// <summary>/// (推荐)生成缩略图,图片流输入,输出图片流/// </summary>/// <param name="dWidth">要生成的宽度</param>/// <param name="dHeight">要生成的高度</param>/// <param name="filePath">输入文件路径</param>/// <param name="outFilePath">输出保存文件路径</param>/// <param name="flag">生成的图片质量,0-100,默认80</param>public static void CompressImgFile(int dWidth, int dHeight, string filePath, string outFilePath, int flag = 80){System.Drawing.Image iSource = System.Drawing.Image.FromFile(filePath);//检测图片是否有旋转foreach (var item in iSource.PropertyItems){//System.Diagnostics.Debug.WriteLine(item.Id);if (item.Id == 274){//读取旋转方向byte[] buffed = item.Value;StringBuilder sbv = new StringBuilder();foreach (var byteValue in buffed){sbv.Append(byteValue.ToString("x2"));}//string value2 = string.Join("", buffed);string value2 = sbv.ToString();System.Diagnostics.Debug.WriteLine("方向=" + value2);//windows获取到旋转的值为0600,linux旋转值为0006if (value2.Equals("0006") || value2.Equals("0600")){//未做任何操作,此缩略图会自动逆时针旋转90度//下面操作纠正旋转,让其顺时针旋转90度,让图片回正iSource.RotateFlip(RotateFlipType.Rotate90FlipNone);}break;}}System.Drawing.Imaging.ImageFormat tFormat = iSource.RawFormat;//按比例缩放            if (dWidth > 0 && iSource.Width > dWidth && iSource.Width > iSource.Height){dHeight = dWidth * iSource.Height / iSource.Width;}else if (dWidth > 0 && dHeight == 0 && iSource.Width > dWidth){dHeight = dWidth * iSource.Height / iSource.Width;}else if (dWidth == 0 && dHeight > 0 && iSource.Width > iSource.Height){dWidth = dHeight * iSource.Width / iSource.Height;}else if (dHeight > iSource.Height || dWidth > iSource.Width){dWidth = iSource.Width;dHeight = iSource.Height;}else if (dHeight > 0 && iSource.Width < iSource.Height){dWidth = dHeight * iSource.Width / iSource.Height;}else{dWidth = iSource.Width;dHeight = iSource.Height;}Bitmap ob = new Bitmap(dWidth, dHeight);//ob.SetResolution(72,72);Graphics g = Graphics.FromImage(ob);//清空画布并以透明背景色填充g.Clear(System.Drawing.Color.Transparent);g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;g.DrawImage(iSource, new Rectangle(0, 0, dWidth, dHeight), 0, 0, iSource.Width, iSource.Height, GraphicsUnit.Pixel);g.Dispose();//以下代码为保存图片时,设置压缩质量  System.Drawing.Imaging.EncoderParameters ep = new System.Drawing.Imaging.EncoderParameters();long[] qy = new long[1];qy[0] = flag;//设置压缩的比例1-100  System.Drawing.Imaging.EncoderParameter eParam = new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.Quality, qy);ep.Param[0] = eParam;try{System.Drawing.Imaging.ImageCodecInfo[] arrayICI = System.Drawing.Imaging.ImageCodecInfo.GetImageEncoders();System.Drawing.Imaging.ImageCodecInfo jpegICIinfo = null;// string imgExtend = tFormat.ToString().ToUpper();string imgExtend = "JPEG";for (int x = 0; x < arrayICI.Length; x++){if (arrayICI[x].FormatDescription.Equals(imgExtend)){jpegICIinfo = arrayICI[x];break;}}if (jpegICIinfo != null){ob.Save(outFilePath, jpegICIinfo, ep);//dFile是压缩后的新路径  }else{ob.Save(outFilePath, tFormat);}}catch (Exception ex){string msg = ex.Message;Console.WriteLine(msg);}finally{iSource.Dispose();ob.Dispose();}}}
}

调用参考

输出流

 string fileInput = "E:\\测试图片\\2023_11_07_155548.3179.jpg";string outFile = "E:\\测试图片\\2023_11_07_155548.3179_c2222.jpg";//ImageHandle.CompressImgFile(1300, 1300, fileInput, outFile);var fileByter= File.ReadAllBytes(fileInput);System.IO.Stream inStream = new System.IO.MemoryStream();inStream.Write(fileByter, 0, fileByter.Length);System.IO.Stream outStream = new System.IO.MemoryStream();//执行压缩图片ImageHandle.CompressImgByte(1300, 1300, inStream, outStream);outStream.Position = 0;//压缩后的图片byte[] fileYaSuoByte = new byte[outStream.Length];outStream.Read(fileYaSuoByte, 0, (int)outStream.Length);File.WriteAllBytes(outFile,fileYaSuoByte);

这篇关于.net5生成图片缩略图,有旋转的缩略图生成回正图片的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1047842

相关文章

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

Python使用qrcode库实现生成二维码的操作指南

《Python使用qrcode库实现生成二维码的操作指南》二维码是一种广泛使用的二维条码,因其高效的数据存储能力和易于扫描的特点,广泛应用于支付、身份验证、营销推广等领域,Pythonqrcode库是... 目录一、安装 python qrcode 库二、基本使用方法1. 生成简单二维码2. 生成带 Log

C#中图片如何自适应pictureBox大小

《C#中图片如何自适应pictureBox大小》文章描述了如何在C#中实现图片自适应pictureBox大小,并展示修改前后的效果,修改步骤包括两步,作者分享了个人经验,希望对大家有所帮助... 目录C#图片自适应pictureBox大小编程修改步骤总结C#图片自适应pictureBox大小上图中“z轴

使用Python将长图片分割为若干张小图片

《使用Python将长图片分割为若干张小图片》这篇文章主要为大家详细介绍了如何使用Python将长图片分割为若干张小图片,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. python需求的任务2. Python代码的实现3. 代码修改的位置4. 运行结果1. Python需求

Python使用Pandas库将Excel数据叠加生成新DataFrame的操作指南

《Python使用Pandas库将Excel数据叠加生成新DataFrame的操作指南》在日常数据处理工作中,我们经常需要将不同Excel文档中的数据整合到一个新的DataFrame中,以便进行进一步... 目录一、准备工作二、读取Excel文件三、数据叠加四、处理重复数据(可选)五、保存新DataFram

SpringBoot生成和操作PDF的代码详解

《SpringBoot生成和操作PDF的代码详解》本文主要介绍了在SpringBoot项目下,通过代码和操作步骤,详细的介绍了如何操作PDF,希望可以帮助到准备通过JAVA操作PDF的你,项目框架用的... 目录本文简介PDF文件简介代码实现PDF操作基于PDF模板生成,并下载完全基于代码生成,并保存合并P

详解Java中如何使用JFreeChart生成甘特图

《详解Java中如何使用JFreeChart生成甘特图》甘特图是一种流行的项目管理工具,用于显示项目的进度和任务分配,在Java开发中,JFreeChart是一个强大的开源图表库,能够生成各种类型的图... 目录引言一、JFreeChart简介二、准备工作三、创建甘特图1. 定义数据集2. 创建甘特图3.

使用 Python 和 LabelMe 实现图片验证码的自动标注功能

《使用Python和LabelMe实现图片验证码的自动标注功能》文章介绍了如何使用Python和LabelMe自动标注图片验证码,主要步骤包括图像预处理、OCR识别和生成标注文件,通过结合Pa... 目录使用 python 和 LabelMe 实现图片验证码的自动标注环境准备必备工具安装依赖实现自动标注核心

Java操作xls替换文本或图片的功能实现

《Java操作xls替换文本或图片的功能实现》这篇文章主要给大家介绍了关于Java操作xls替换文本或图片功能实现的相关资料,文中通过示例代码讲解了文件上传、文件处理和Excel文件生成,需要的朋友可... 目录准备xls模板文件:template.xls准备需要替换的图片和数据功能实现包声明与导入类声明与

基于C#实现将图片转换为PDF文档

《基于C#实现将图片转换为PDF文档》将图片(JPG、PNG)转换为PDF文件可以帮助我们更好地保存和分享图片,所以本文将介绍如何使用C#将JPG/PNG图片转换为PDF文档,需要的可以参考下... 目录介绍C# 将单张图片转换为PDF文档C# 将多张图片转换到一个PDF文档介绍将图片(JPG、PNG)转