البرمجة فى الألفية الثالثة

الطريق الصحيح لعالم البرمجة ... دع العميل يحلم ثم حقق أنت حلمه
 
HomeHome  ­CalendarCalendar  ­FAQFAQ  ­SearchSearch  ­RegisterRegister  ­Log inLog in  
Post new topic   Reply to topicShare | 
 

 Needs a Help !! How to write on a photo?

View previous topic View next topic Go down 
AuthorMessage
HpCoder



عدد المساهمات: 2
تاريخ التسجيل: 2009-03-18

PostSubject: Needs a Help !! How to write on a photo?   Wed Mar 18, 2009 12:56 pm

Hello ,
I need a code for how to write on a photo using asp.net c# web application.I would be so thankful for any support or help in my problem

With all my respect
Thanks
Back to top Go down
MRamadan
Admin


عدد المساهمات: 5
تاريخ التسجيل: 2009-03-03

PostSubject: Re: Needs a Help !! How to write on a photo?   Sat Mar 21, 2009 12:42 am

using System.Drawing.Imaging;
using System.Drawing;
using System.Drawing.Drawing2D;

private void Page_Load(object sender, System.EventArgs e)
{
// Creating Bitmap object.
Bitmap bmp= new Bitmap(Server.MapPath(Request.QueryString["i"]));
// Query string or file name if u want.
Graphics g=Graphics.FromImage(bmp);
g.SmoothingMode = SmoothingMode.AntiAlias ;
// Writing the string u want to add.
g.DrawString(Request.QueryString["t"],
new Font("verdana",12),SystemBrushes.WindowText, 1, 1);
// String can be added from Query string or any string u want to add.
Response.ContentType="image/jpeg";
bmp.Save(Response.OutputStream, bmp.RawFormat) ;
}


There is another code to type a vertical text as watermark.
http://bytescout.com/watermarkingsdk_simple_vertical_text_preset.html


king
Back to top Go down
 

Needs a Help !! How to write on a photo?

View previous topic View next topic Back to top 
Page 1 of 1

Permissions of this forum:You cannot reply to topics in this forum
البرمجة فى الألفية الثالثة :: برمجةعامة :: لغة الــ #C-
Post new topic   Reply to topic