Convert image to WBMP
Messages   Related Types
This message was discovered on microsoft.public.dotnet.framework.aspnet.mobile.
Responses highlighted in red are from those people who are likely to be able to contribute good, authoratitive information to this discussion. They include Microsoft employees, MVP's and others who IMHO contribute well to these kinds of discussions.
Post a new message to this list...

Sara T.
How can I convert image for display from .GIF to .WBMP by using
ASP.NET(VB.NET)?

I cannot see for imageformat type by using function:

Bitmap.Save(OutputStream, System.Drawing.Imaging.ImageFormat.Gif)

Or may be ImageFormat does not support WBMP.

Sara T.

Reply to this message...
 
    
Andy (VIP)
Hi, Sara,

I have found that, although ASP.NET can display WBMP files, it can't convert
other files to WBMP. I had to use the converter at the Teraflops site,

http://www.teraflops.com/wbmp/

and add the result to my solution as a separate resource. I then use the
following code (in C#) to make ASP.NET display the correct image for the type
of browser:

MobileCapabilities currentCaps = (MobileCapabilities)Request.Browser;
String prefImage = currentCaps.PreferredImageMime;
if (prefImage.Equals("image/vnd.wap.wbmp"))
{
imgFoo.ImageUrl = "foo.wbmp";
}
else
{
imgFoo.ImageUrl = "foo.gif";
} // end if

"Sara T." wrote:

[Original message clipped]

Reply to this message...
 
    
Sara T.
Thanks for your solution.
But I need some a little code to do that because now I am converting image
on the fly.

Sara T.

"Andy" <Click here to reveal e-mail address> wrote in message
news:Click here to reveal e-mail address...
[Original message clipped]

Reply to this message...
 
    
Jean-Luc David [MS-MVP] (VIP)
Hi Sara,

You might want to take a look at the ImageDraw Mobile control:
http://www.asp.net/ControlGallery/ControlDetail.aspx?Control=1954

You can also take a peek at the Active Image v.5.0 control:
http://www.tonec.com/products/acim/

Thanks,
Jean-Luc David
Microsoft .NET MVP
Click here to reveal e-mail address
http://www.stormpixel.com
http://weblogs.asp.net/jld/

--- Original Message ---
[Original message clipped]

Reply to this message...
 
 
System.Drawing.Bitmap
System.Drawing.Imaging.ImageFormat
System.Web.Mobile.MobileCapabilities




Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com