热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C#编程指南:详解C#中正方形图像的绘制技巧与实现方法

本文详细介绍了在C#编程环境中绘制正方形图像的技术和实现方法,通过具体示例代码帮助读者理解和掌握相关技巧。内容涵盖从基础概念到实际应用的各个方面,适合初学者和有一定经验的开发者参考。希望对您的C#学习之旅有所帮助,并激发您进一步探索的兴趣。

本文实例为大家分享了C#绘制正方形图片的的具体代码,供大家参考,具体内容如下

上述就是C#学习教程:C#正方形图片的绘制方法分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—编程笔记 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; //


推荐阅读
author-avatar
东北人852
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有