Salve,
girando sul web ho trovato questa procedura per la creazione di immagini gif..
Dim Bitmap
Bitmap objBmp = new Bitmap (32,32)
System.Drawing.Graphics objGraphics = System.Drawing.Graphics.Fromimage(objbmp)
objGraphics.Clear(Color.White)
objGraphics.TextRenderingHint = TextRenderingHint.AntiAlias
System.Drawing.Font objFont = new Font("Arial", 10, FontStyle.Regular)
objGraphics.DrawString("mymail@myaddress.com", objFont, Brushes.Blue, 3, 3)
Response.ContentType = "image/GIF"
objBmp.Save(Response.OutputStream, imageFormat.Gif)
Però non mi funzia...Mi spiegate perchè?

Rispondi quotando