J
Jenny
My application generates images dynamic. These images are
then used for an image button like in the beneath.
Dim ob As Bitmap = New Bitmap(130, 30)
Dim banner As Graphics = Graphics.FromImage(ob)
Dim tempfilepath As String = System.IO.Path.GetTempPath
ob.Save(tempfilepath & "temp.jpg",
Imaging.ImageFormat.Jpeg)
image_button.ImageUrl = tempfilepath & CType(i, String) &
"temp.jpg"
Is it also possible to add this graphic with the help of
Response.BinaryWrite etc.? If yes how must the code luck like?
Thanks for all help
Jenny
then used for an image button like in the beneath.
Dim ob As Bitmap = New Bitmap(130, 30)
Dim banner As Graphics = Graphics.FromImage(ob)
Dim tempfilepath As String = System.IO.Path.GetTempPath
ob.Save(tempfilepath & "temp.jpg",
Imaging.ImageFormat.Jpeg)
image_button.ImageUrl = tempfilepath & CType(i, String) &
"temp.jpg"
Is it also possible to add this graphic with the help of
Response.BinaryWrite etc.? If yes how must the code luck like?
Thanks for all help
Jenny