|
|
|
ขอความช่วยเหลือ การใส่ Logo ลายน้ำไปในรูปครับผม แต่เปลี่ยนจาก code ที่ผมมีอยู่ครับผม |
|
|
|
|
|
|
|
คือผมจะทำการ อัพโหลดรูปครับแล้วใส่ลายน้ำ ตอนนี้ทำเป็นแบบ ข้อความลายน้ำได้ครับ แต่อยากได้เป็นรูป logo แทนที่ code เดิมครับ ดังนี้
Code (C#)
protected Bitmap waterMarkImage(Bitmap imgBmp)
{
Bitmap original_image = imgBmp;
string sWaterMark = "ทดลองลายน้ำ";
int fontsize = ((original_image.Width * 2) / (sWaterMark.Length * 3));
int x = original_image.Width / 2;
int y = original_image.Height * 6 / 10;
StringFormat drawFormat = new StringFormat();
drawFormat.Alignment = StringAlignment.Center;
drawFormat.FormatFlags = StringFormatFlags.NoWrap;
Graphics graphic = Graphics.FromImage(original_image);
graphic.DrawString(sWaterMark, new Font("Verdana", fontsize, FontStyle.Bold),
new SolidBrush(Color.FromArgb(20, 255, 255, 255)), x, y, drawFormat);
if (graphic != null) graphic.Dispose();
return original_image;
}
จาก code ดังกล่าวถ้าเปลี่ยนเป็น รูปแทนข้อความต้องทำยังไงครับผม ขอบคุณล่วงหน้านะครับผม
Tag : .NET, Ms SQL Server 2008, C#
|
|
|
|
|
|
Date :
2015-05-21 16:51:19 |
By :
yatard |
View :
1317 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|