首页 > 其他 > 详细

C#图片上写文字

时间:2014-07-03 11:07:26      阅读:382      评论:0      收藏:0      [点我收藏+]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Drawing;

namespace BitMap
{
    /// <summary>
    /// Image 的摘要说明
    /// </summary>
    public class Image : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/jpeg";

            //画板
            using (Bitmap bitMap = new Bitmap(100, 100))
            {
                //画笔
                using (Graphics g = Graphics.FromImage(bitMap))
                {
                    g.DrawString("Cupid", new Font("微软雅黑", 20), Brushes.Blue, new Point(10, 5));
                    bitMap.Save(context.Response.OutputStream,System.Drawing.Imaging.ImageFormat.Jpeg);
                }
            }
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

  

C#图片上写文字,布布扣,bubuko.com

C#图片上写文字

原文:http://www.cnblogs.com/alphafly/p/3815738.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!