Hi...
I want to display images of unknown size in an Img object. Here's the code:
JPEGs work fine on both IE (8) and FF (3.5). PNGs only work on FF, on IE they're scaled down to 16x16 I'd say...
If the URL is passed directly to the browser the image is rendered correctly in any constellation.
Any comments on this? TIA Ekki
* GWT Rocks! * SmartGWT Rocks Even Harder! * SmartGWT PRO 2.0,
GWT 2.0, Jetty 7.0.0, Eclipse 3.5.1, JRE 1.6.0_16 *
For Evaluation only: MySQL 5.1.41, Connector/J 5.1.10
*** www.EasternGraphics.com/X-4GPL ***
I want to display images of unknown size in an Img object. Here's the code:
Code:
Img tImage = new Img(<some url>); tImage.setWidth100(); tImage.setHeight100(); tImage.setImageType(ImageStyle.CENTER);
If the URL is passed directly to the browser the image is rendered correctly in any constellation.
Any comments on this? TIA Ekki
* GWT Rocks! * SmartGWT Rocks Even Harder! * SmartGWT PRO 2.0,
GWT 2.0, Jetty 7.0.0, Eclipse 3.5.1, JRE 1.6.0_16 *
For Evaluation only: MySQL 5.1.41, Connector/J 5.1.10
*** www.EasternGraphics.com/X-4GPL ***
Comment