|
[Visual Basic]
Dim ca As New Canvas
ca.DrawFile(Server.MapPath("rez/boat.gif"), "")
ca.SaveAs(Server.MapPath("myfile1.jpg"), "")
ca.SaveAs(Server.MapPath("myfile2"), "Type=jpeg")
ca.SaveAs(Server.MapPath("myfile3.gif"), "Interlace=true")
ca.SaveAs(Server.MapPath("myfile4.gif"), "Transparent=10,10")
[C#]
Canvas ca = new Canvas();
ca.DrawFile(Server.MapPath("rez/boat.gif"), "");
ca.SaveAs(Server.MapPath("myfile1.jpg"), "");
ca.SaveAs(Server.MapPath("myfile2"), "Type=jpeg");
ca.SaveAs(Server.MapPath("myfile3.gif"), "Interlace=true");
ca.SaveAs(Server.MapPath("myfile4.gif"), "Transparent=10,10");
This code produces four files as output. The first two files ('myfile1.jpg'
and 'myfile') are jpeg images. Because the second file has no file
extension the type parameter is needed to specify that the image
type should be jpeg.
The second two files ('myfile3.gif' and 'myfile4.gif') are both
gif images. The first is interlaced and the second is transparent
(using the color at the point 10,10 as the transparent color).
|