Re: [SVG] Transparent background of generated PNG

2003-01-28 Thread Martin Lüthi
Mark Eggers [EMAIL PROTECTED] writes: Yes, this is a browser-specific problem. For a review on this, please see the following links: http://webfx.eae.net/dhtml/pngbehavior/pngbehavior.html

Re: [SVG] Transparent background of generated PNG

2003-01-28 Thread Miles Elam
As was already mentioned, it's a long-standing IE bug that should have been fixed years ago. (MS pledged full PNG support back in the days of IE 4.) One option is creating a specific stylesheet for IE that uses IE-specific markup and styling. The other (one that I prefer) is a piece of

Re: [SVG] Transparent background of generated PNG

2003-01-28 Thread Martin Lüthi
Miles Thank you for your hint, this is exactly what I found and use ATM. Best Martin -- Martin Lüthi [EMAIL PROTECTED] - Please check that your question has not already been answered in the FAQ before

Re: [SVG] Transparent background of generated PNG

2003-01-28 Thread Martin Lüthi
Niclas Hedhman [EMAIL PROTECTED] writes: opacity means non-transparency, (and without checking spec) shouldn't therefor opacity=0.0 mean transparent ?? Hmmm, you're of course right! However the PNG's have transparent background on all but the IE browsers. I'll have to play with that...

Re: [SVG] Transparent background of generated PNG

2003-01-28 Thread Derek Hohls
[EMAIL PROTECTED] 29/01/2003 05:19:45 Mark Eggers [EMAIL PROTECTED] writes:[snip] Welcome to the Microsoft-specific way of doing things. and PNG is a free format... oh well! Yes, well, Java is an open-specification too... and look what they did to

Re: [SVG] Transparent background of generated PNG

2003-01-28 Thread Derek Hohls
Martin Please write a summary of the problem and the answer and post it to the listwith [Solution] at the start of the email subject. Ta Derek [EMAIL PROTECTED] 29/01/2003 08:59:45 MilesThank you for your hint, this is exactly what I found and use ATM.BestMartin-- Martin Lüthi [EMAIL

[SVG] Transparent background of generated PNG

2003-01-27 Thread Martin Lüthi
Hi I generate a SVG and serialize it as PNG with transparent background. In Mozilla and Konqueror everything looks fine (also an Windows), but in IE 5.0 the background of the PNG is white. Is this a browser-specific problem? Who can point me to a workaround? My SVG generating code reads

Re: [SVG] Transparent background of generated PNG

2003-01-27 Thread Tony Collen
On 28 Jan 2003, [iso-8859-1] Martin Lüthi wrote: Hi I generate a SVG and serialize it as PNG with transparent background. In Mozilla and Konqueror everything looks fine (also an Windows), but in IE 5.0 the background of the PNG is white. Is this a browser-specific problem? Who can point me

Re: [SVG] Transparent background of generated PNG

2003-01-27 Thread Niclas Hedhman
On Tuesday 28 January 2003 21:14, Martin Lüthi wrote: Hi I generate a SVG and serialize it as PNG with transparent background. In Mozilla and Konqueror everything looks fine (also an Windows), but in IE 5.0 the background of the PNG is white. Is this a browser-specific problem? Who can point

Re: [SVG] Transparent background of generated PNG

2003-01-27 Thread Mark Eggers
Yes, this is a browser-specific problem. For a review on this, please see the following links: http://webfx.eae.net/dhtml/pngbehavior/pngbehavior.html http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/reference/filters/AlphaImageLoader.asp Welcome to the