• asp.net GDI+把图片绘制成自定义的椭圆形状


     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Web;
     5 using System.Web.UI;
     6 using System.Web.UI.WebControls;
     7 using System.Drawing;
     8 using System.Drawing.Drawing2D;
     9 
    10 public partial class _Default : System.Web.UI.Page
    11 {
    12     protected void Page_Load(object sender, EventArgs e)
    13     {
    14         Bitmap bitmap = new Bitmap(400, 200);
    15         Graphics g = Graphics.FromImage(bitmap);
    16         g.Clear(Color.White);
    17         TextureBrush mytextbrush = new TextureBrush(System.Drawing.Image.FromFile(Server.MapPath("~/images/001aa.jpg")));
    18         g.FillEllipse(mytextbrush,0,0,400,200);
    19         System.IO.MemoryStream ms=new System.IO.MemoryStream();
    20         bitmap.Save(ms,System.Drawing.Imaging.ImageFormat.Jpeg);
    21         Response.ClearContent();
    22         Response.ContentType = "image/Jpeg";
    23         Response.BinaryWrite(ms.ToArray());
    24     }
    25 }


    
    
  • 相关阅读:
    wait 和 notify 方法
    synchronized关键字
    多线程之thread、runnable的区别
    CodeForces 213 E
    hdu 3038 并查集
    zoj 3349 dp + 线段树优化
    hdu 4419 线段树 扫描线 离散化 矩形面积
    hdu 4262(线段树)
    hfut 1287
    hdu 4747 (线段树)
  • 原文地址:https://www.cnblogs.com/luxiaoyao/p/6130643.html
Copyright © 2020-2023  润新知