一、生成图片并实现颜色渐变效果
C#图像处理
原创
©著作权归作者所有:来自51CTO博客作者wulangxiong的原创作品,请联系作者获取转载授权,否则将追究法律责任
Response.Clear();
Bitmap imgOutput = new Bitmap(100, 50);
Graphics gic = Graphics.FromImage(imgOutput);
gic.Clear(Color.BlueViolet);
gic.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
gic.DrawString("渐变图形", new Font("黑体",16,FontStyle.Italic),new SolidBrush(Color.White),new PointF(2,2));
gic.FillRectangle(new System.Drawing.Drawing2D.LinearGradientBrush(new Point(0,0), new Point(100,50), Color.FromArgb(0,0,0,0),Color.FromArgb(255,255,255,255)),0,0,100,50);
imgOutput.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
gic.Dispose();
imgOutput.Dispose();
Response.End();
二、对图片进行反转
System.Drawing.Image drawp_w_picpath = System.Drawing.Image.FromFile(photopath);//photopath表示图片的物理地址
drawp_w_picpath.RotateFlip(RotateFlipType.Rotate270FlipNone);
if(File.Exists(photopath))
{
File.SetAttributes(photopath,FileAttributes.Normal);
File.Delete(photopath);
}
drawp_w_picpath.Save(photopath,System.Drawing.Imaging.ImageFormat.Jpeg);
drawp_w_picpath.Dispose();
三、对图片进行缩放
System.Drawing.Image drawp_w_picpath = System.Drawing.Image.FromFile(photopath);
Bitmap imgOutput = new Bitmap(drawp_w_picpath,60,30);
imgOutput.Save(newphotppath, System.Drawing.Imaging.ImageFormat.Jpeg);
imgOutput.Dispose();
Response.End();
其他还有一些画线、画矩形、画圆等的函数和方法都可以在System.Drawing中找到;

提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
C#图像处理
(1)在Form1窗体中的PictureBox1控件中显示通过OpenFileDialog指定的图像文件内容。将Size
图像处理 i++ 灰度图像 二值图像 -
C# opencv图像处理实例
01—图像处理1. 本例中,我们需要导入:Emgu.CV.UI.dll、Emgu.CV.World.dll2
c# 项目实战 sed 控件 选择图片 -
C#处理图像-缩略图,图像翻转
我们在C#中要对图像处理,因为用得少,所以很多时候,搞不清楚应该怎么处理,下面就“缩略图”的创建,和图像的
c# image 图像处理 button object -
C#中使用opencv处理图像
OpenCV(Open Source Computer Vision Library)是一个(开源免费)发行
官网 封装 desktop c# c++ -
c#图像处理入门
定义的图像的对象.该类的主要方法和属性如下:1. GetPixel方法和SetPixel方法:获
ide 位图 数据 图像处理 c#