⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 textonimage.aspx.cs

📁 ASP C#代码实例 适合初学人士学习使用
💻 CS
字号:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Drawing.Text;

namespace Example_12_24
{
	/// <summary>
	/// TextOnImage 的摘要说明。
	/// </summary>
	public class TextOnImage : System.Web.UI.Page
	{
		private readonly string ImagePath = "Images/bluemoon.jpg";

		private void Page_Load(object sender, System.EventArgs e)
		{
			//Load the Image to be written on.
			Bitmap bitMapImage = new System.Drawing.Bitmap(Server.MapPath(ImagePath));
			Graphics graphicImage = Graphics.FromImage( bitMapImage );

			//Smooth graphics is nice.
			graphicImage.SmoothingMode = SmoothingMode.AntiAlias;

			//I am drawing a oval around my text.
			graphicImage.DrawArc(new Pen(Color.Red, 3), 90, 235, 600, 250, 0, 360);

			//Write your text.
			graphicImage.DrawString( "这是我在图片上写的字!哈哈,功能好强大!", new Font("Arial", 20,FontStyle.Bold ), SystemBrushes.WindowText, new Point( 150, 350 ) );

			//Set the content type
			Response.ContentType="image/jpeg";

			//Save the new image to the response output stream.
			bitMapImage.Save(Response.OutputStream, ImageFormat.Jpeg);

			//Clean house.
			graphicImage.Dispose();
			bitMapImage.Dispose();
		}

		#region Web 窗体设计器生成的代码
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// 设计器支持所需的方法 - 不要使用代码编辑器修改
		/// 此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{    
			this.Load += new System.EventHandler(this.Page_Load);
		}
		#endregion
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -