(C#) ASP.NET Write Text to Image (StringFormat) |
(C#) ASP.NET Write Text to Image (StringFormat) ตัวอย่างการสร้างรูปภาพ และ การเขียนข้อความลงในรูปภาพ และการจัดตำแหน่งของข้อความในตำแหน่งต่าง ๆ
Language Code : VB.NET || C#
Framework : 1,2,3,4
AspNetWriteTextImages2.aspx
<%@ Page Language="C#" Debug="true" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Drawing.Imaging" %>
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
int intWidth = 0;
int intHeight = 0;
string FileName = null;
intWidth = 400;
intHeight = 200;
FileName = "MyImages/Images.png";
Bitmap objBitmap = new Bitmap(intWidth, intHeight);
Graphics objGraphic = Graphics.FromImage(objBitmap);
//*** Create Images ***//
objGraphic.FillRectangle(Brushes.Maroon, 0, 0, intWidth, intHeight);
//*** Write Text ***//
string strText = "ยินดีต้อนรับ Welcome To www.ThaiCreate.Com";
//*** String ***//
Font objFont = new Font("Tahoma", 12, FontStyle.Bold);
//*** Font Style ***//
SolidBrush objBrushWrite = new SolidBrush(Color.YellowGreen);
//*** Font Color ***//
//*** Text Align ***//
StringFormat strFormat = new StringFormat();
strFormat.Alignment = StringAlignment.Center;
//*** .Near (Left) , .Far (Right) ***//
strFormat.LineAlignment = StringAlignment.Center;
//*** .Near (Top) , .Far (Down) ***//
//*** DrawString ***//
objGraphic.DrawString(strText, objFont, objBrushWrite, new Rectangle(0, 0, intWidth, intHeight), strFormat);
//*** Save As ***//
objBitmap.Save(Server.MapPath(FileName.ToString()), ImageFormat.Png);
//*** Close ***//
objGraphic.Dispose();
//*** Nothing ***//
objBitmap = null;
objGraphic = null;
//*** View Images ***//
this.imgPicture.ImageUrl = FileName;
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Images (System.Drawing)</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Image id="imgPicture" runat="server" />
</form>
</body>
</html>
</form>
ในตัวอย่างจะสามารถจัดตำแหน่งได้ตามต้องการ ซึ่งผมได้เขียน Comment เพื่อสะดวกในการใช้งาน โดย Property ต่าง ๆ เหล่านี้จะสามารถมีให้เลือกใช้งานได้ เมื่อพัฒนาโปรแกรมบน Visual Studio .NET 2003 หรือ Visual Studio 2005,Visual Studio 2008
Screenshot
Property & Method (Others Related) |
|