作者:东北人852 | 来源:互联网 | 2024-11-06 13:45
本文详细介绍了在C#编程环境中绘制正方形图像的技术和实现方法,通过具体示例代码帮助读者理解和掌握相关技巧。内容涵盖从基础概念到实际应用的各个方面,适合初学者和有一定经验的开发者参考。希望对您的C#学习之旅有所帮助,并激发您进一步探索的兴趣。
本文实例为大家分享了C#绘制正方形图片的的具体代码,供大家参考,具体内容如下
上述就是C#学习教程:C#正方形图片的绘制方法分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注&#8212;编程笔记 usingSystem; usingSystem.Collections.Generic; usingSystem.Drawing; usingSystem.Drawing.Drawing2D; usingSystem.Drawing.Imaging; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; namespacetreads { /// ///制作小正方形 /// classClass3 { privatestringsrcFileName=@"x";//获取图片的路径 privatestringsrcFileName1=@"x";//要保持图片的新路径 /// ///保存图片 /// ///Image对象 ///保存路径 ///指定格式的编解码参数 privatestaticvoidSaveImage(Imageimage,stringsavePath,ImageCodecInfoici) { //设置原图片对象的EncoderParameters对象 EncoderParametersparameters=newEncoderParameters(1); parameters.Param[0]=newEncoderParameter(System.Drawing.Imaging.Encoder.Quality,((long)100)); image.Save(savePath,ici,parameters); parameters.Dispose(); } /// ///获取图像编码解码器的所有相关信息 /// ///包含编码解码器的多用途网际邮件扩充协议(MIME)类型的字符串 ///返回图像编码解码器的所有相关信息 privatestaticImageCodecInfoGetCodecInfo(stringmimeType) { ImageCodecInfo[]CodecInfo=ImageCodecInfo.GetImageEncoders(); foreach(ImageCodecInfoiciinCodecInfo) { if(ici.MimeType==mimeType) returnici; } returnnull; } /// ///计算新尺寸 /// ///原始宽度 ///原始高度 ///最大新宽度 ///最大新高度 /// privatestaticSizeResizeImage(intwidth,intheight,intmaxWidth,intmaxHeight) { //此次2012-02-05修改过================= if(maxWidth<=0) maxWidth=width; if(maxHeight<=0) maxHeight=height; //