Tagged Questions
PNG (portable network graphics) is a bitmapped image format and video codec using lossless data compression.
47
votes
8answers
33k views
favicon.png vs favicon.ico - why should I use PNG's instead of ICO's?
Other than the fact that PNG is a more common image format, is there any technical reason to favor favicon.png vs. favicon.ico?
I'm supporting modern browsers which all support PNG favorite icons.
31
votes
21answers
3k views
Which format for small website images? GIF or PNG?
When doing small icons, header graphics and the like for websites, is it better to use GIFs or PNGs?
Obviously if transparency effects are required, then PNGs are definitely the way to go, and for ...
29
votes
4answers
10k views
Converting SVG to PNG using C#
I've been trying to convert SVG images to PNG using C#, without having to write too much code. Can anyone recommend a library or example code for doing this?
26
votes
20answers
1k views
Ethical Dilemma: Should I still cater for IE6 as a web-developer [closed]
Possible Duplicates:
IE6: To support or not to support.
Should we support IE6 anymore?
I'd hate to (HATE TO) admit it, but there are some people still using this browser. A client of mine ...
23
votes
3answers
5k views
MIME type warning in chrome for png images
Just ran my site in chrome and suprisingly it comes up with this warning for each of my .png images:
Resource interpreted as image but transferred with MIME type application/octet-stream.
Anyone ...
21
votes
13answers
39k views
How to solve/hack fading semi-transparent PNG bug in IE8?
As you know, IE6 has bug that can't display semi-transparent PNG file without using non-standard style like filter. In IE7, this problem is fixed. But It still has some bug about PNG file. It can't ...
20
votes
4answers
559 views
Memory corruption in System.Move due to changed 8087CW mode (png + stretchblt)
I have strange a memory corruption problem. After many hours debugging and trying I think I found something.
For example: I do a simple string assignment:
sTest := 'SET LOCK_TIMEOUT ';
However, ...
18
votes
8answers
26k views
PNG Transparency Problems in IE8
I'm having problems with a transparent PNG image showing black dithered pixel artifacts around the edge of the non transparent part of the image. It only does this in Internet Explorer and it only ...
18
votes
7answers
16k views
Can PNG image transparency be preserved when using PHP's GDlib imagecopyresampled?
The following PHP code snippet uses GD to resize a browser-uploaded PNG to 128x128. It works great, except that the transparent areas in the original image are being replaced with a solid color- black ...
17
votes
9answers
1k views
Efficient way to fingerprint an image (jpg, png, etc)?
Is there an efficient way to get a fingerprint of an image for duplicate detection?
That is, given an image file, say a jpg or png, I'd like to be able to quickly calculate a value that identifies ...
15
votes
3answers
1k views
Transparent png on android market for high resolution asset
I'm trying to upload a logo with a transparent background to the android market. For some reason, my png is getting transformed by the market in a way that removes the transparency.
My designer is ...
15
votes
12answers
2k views
15
votes
5answers
11k views
PNG Transparency with PHP
Hey having some trouble trying to maintain transparency on a png when i create a thumbnail from it, anyone any experience with this? any help would be great, here's what i am currently doing:
...
14
votes
4answers
4k views
How do I make a PNG resource?
I've got a form with a large TImage on it as a background. Problem is, this is stored directly in the DFM as a bitmap, which takes up about 3 MB. The original PNG file is ~250K. I'd like to try to ...
14
votes
7answers
69k views
Free tool to Create/Edit PNG Images?
Is there any free tool available for creating and editing PNG Images?
14
votes
10answers
1k views
IE6 issues with transparent PNGs
I've gotten used to the idea that if I want/need to use alpha-trans PNGs in a cross-browser manner, that I use a background image on a div and then, in IE6-only CSS, mark the background as "none" and ...
13
votes
3answers
195 views
Can I save a huge PNG without the whole thing being in memory?
I'm saving a very large PNG (25 MB or so) with Java. The problem is that while it's being generated, it's using 3+ gigabytes of memory, which is not ideal since it severely slows down systems with low ...
13
votes
9answers
727 views
Using PNG images in web sites
Is it okay to use PNG images in a website? I haven't really seen them used much so was wondering what the drawbacks are. There must be some as surely everyone would be using them?...
Are they, for ...
13
votes
7answers
19k views
Background colour of a PNG in IE8
I have the following logo, which displays as the same background colour as the HTML body in FF3, Chrome (#363636):
Logo
But in IE8 it displays a different, darker colour.
Is this FF3/Chrome ...
13
votes
8answers
4k views
LaTeX equivalent to Google Chart API
I'm currently looking at different solutions getting 2 dimensional mathematical formulas into webpages. I think that the wikipedia solution (generating png images from LaTeX sourcecode) is good enough ...
11
votes
5answers
17k views
11
votes
12answers
2k views
How to get PNG transparency working in browsers that don't natively support it?
Our (beloved) designer keeps creating PNG files with transparent backgrounds for use in our applications. I'd like to make sure that this feature of the PNG works in "older" browsers as well. What's ...
10
votes
2answers
1k views
PIL: Thumbnail and end up with a square image
Calling
image = Image.open(data)
image.thumbnail((36,36), Image.NEAREST)
will maintain the aspect ratio. But I need to end up displaying the image like this:
<img src="/media/image.png" ...
10
votes
9answers
6k views
Is there a JavaScript PNG fix for IE6 that allows CSS background positioning?
I've seen a few fixes for allowing PNG images to have transparency in Internet Explorer 6, but I've yet to find one that also allows you to set the background position in CSS. If you use sprites, it's ...
10
votes
4answers
1k views
How can I make Internet Explorer not change the colors in my PNG images
When using PNG files (made with Paint.NET) as background images on my web site, IE7 is changing the colors and actually displaying a darker version of my images, as seen here. In this image, the dark ...
10
votes
5answers
20k views
Which jQuery plugin should be used to fix the IE6 PNG transparency issue?
Is there an IE6/PNG fix that is officially developed by the jQuery team?
If not which of the available plugins should I use?
9
votes
2answers
129 views
Why does this PNG file look different depending on the browser? [closed]
If you take screen shot this web page in different browser, you'd see that it displays slightly different in firefox. (7.01, ubuntu)
At first I thought it was because of color profile, but even if I ...
9
votes
2answers
175 views
Reducing PNG file size in .NET
I often use OptiPNG or pngcrush to reduce the file size of my PNG images.
I would like to be able to do this sort of thing programatically from within a .NET application. I'm dynamically generating ...
9
votes
2answers
465 views
What would cause OpenGL alpha blending differences between Windows and OS X?
There are 3 backgrounds in the below image: black white & grey
There are 3 bars on each one: black -> transparent, white -> transparent, and colors -> transparent
I am using ...
9
votes
4answers
4k views
When to use PNG or JPG in iPhone development?
I have an app that will display a bunch of images in a slideshow. Those images will be part of the bundle, thus distributed with the app.
All the images are photographs or photographic, etc.
I've ...
9
votes
3answers
6k views
Get a PDF/PNG as output from a UIWebView or UIView
Is there any way to get the content of a UIWebView and convert it to a PDF or PNG file? I'd like to get similar output to that available on the Mac by selecting the PDF button when printing from ...
9
votes
3answers
10k views
How to merge transparent PNG with image using PHP?
The situation is this: I have a small 50x50 pic. I also have a small 50x50 transparent picture which contains a frame for the 50x50 pic, so I basically want to put the transparent png on top of the ...
9
votes
2answers
4k views
Drag and drop batch file for multiple files?
I wrote a batch file to use PngCrush to optimize a .png image when I drag and drop it onto the batch file.
In the what's next section, I wrote about what I thought would be a good upgrade to the ...
9
votes
4answers
5k views
Using 256 x 256 Vista icon in application
I have an application which I have made a 256 x 256 vista icon for.
I was wondering how I would be able to use the 256x256 png in the ico file used as the application icon and show it in a picture ...
8
votes
2answers
205 views
C# Managed PNG Optimization Library Available?
I am looking to build in PNG optimization (a PNG "sqeezer/squisher" of sorts) into my builds (TFS 2010 Build Workflow). I want to create a new build activity and as with all my activities, I prefer ...
8
votes
3answers
243 views
A button control and underlying replacement for TBitmap that properly handles PNG transparency without writing pre-blend code
Delphi TSpeedButtons don't really support PNG transparency properly, because the Glyph property uses a TBitmap internally, and TBitmap is for bitmaps, and doesn't support PNG transparency properly, ...
8
votes
5answers
1k views
jpg images in iphone and 2x images
I am working on an iphone app and targeting iOS 4.0 or later. I am trying to add an image to UIImageView, and image is in jpg format. This is what I have done so far..
UIImageView *bgImageView ...
8
votes
3answers
425 views
Javascript generate transparent 1X1 pixel in dataURL format
I would like to know a way to generate a single pixel in JavaScript converting it to base64. The ideal function would be:
function createPixel(hexColor, opacity){
//...Calculate
return ...
8
votes
7answers
207 views
What C library allows scaling of ginormous images?
Consider the following file:
-rw-r--r-- 1 user user 470886479 2009-12-15 08:26 the_known_universe.png
How would you scale the image down to a reasonable resolution, using no more than 4GB of RAM?
...
8
votes
2answers
1k views
Detecting if a PNG image file is a Transparent image?
I am looking for a way to quickly determine if a PNG image has transparent features. That is, whether any portion of the image is translucent or displays the background in any way. Does anyone one ...
8
votes
1answer
3k views
iPhone: Changing CGImageAlphaInfo of CGImage
I have a PNG image that has an unsupported bitmap graphics context pixel format. Whenever I attempt to resize the image, CGBitmapContextCreate() chokes on the unsupported format
I receive the ...
8
votes
8answers
2k views
Firefox 3.5 color correction hack?
After finally getting down to upgrading to FF 3.5, I noticed that some of my web pages have color problems. Specifically, say I have a PNG image with a color in it which is meant to be the same as the ...
8
votes
2answers
8k views
Converting a PDF to PNG
I'm trying to convert a PDF (at least the cover of one, I'm successfully extracting the first page of the PDF with pdftk) to a PNG. I'm using imagemagick to do the converstion:
convert cover.pdf ...
8
votes
6answers
5k views
How do I get an Icon from a png image?
I'm creating an WPF app, so I'm mostly working with the ImageSource class for icons. However, the system tray icon has to be of type System.Drawing.Icon. Is it possible to create such an object from a ...
7
votes
3answers
194 views
Is it okay these days to use PNG with alpha-transparency in websites?
I remember from 3 years ago that it was an absolutely huge pain to use any nice PNG with alpha in websites, because of IE6 and other bad browsers.
But how about now? How about if your target audience ...
7
votes
3answers
3k views
Drop shadow for PNG image in CSS
HI,
i have png image, that has free form (non square).
I need to apply drop-shadow effect to this image.
The standard approach ...
-o-box-shadow: 12px 12px 29px #555;
-icab-box-shadow: 12px ...
7
votes
3answers
2k views
Server-side SVG to PNG (or some other image format) in python
Currently I'm using rsvg to load the svg (from a string, not from a file) and drawing to cairo. Anyone know a better way? I use PIL elsewhere in my application, but I don't know of a way to do this ...
7
votes
2answers
619 views
PNG file format endianness?
Im not sure if endian is the right word but..
I have been parsing through a PNG file and I have noticed that all of the integer values are in big endian. Is this true?
For example, the width and ...
7
votes
1answer
138 views
Animate PNGs with jQuery?
Is there a simple plugin or some robust code that would allow me to animate PNGs with a simple start and stop method? TSM, Alex.
[Edit: I made a jQuery plugin that animates PNGs. Will post when ...
7
votes
6answers
1k views
MathML or OMML to PNG w/ .NET?
Are there any libraries which take MathML (or, even more preferably, OMML) and outputs a .PNG file?
I am putting together an export process for .docx files and, as a part of this process, I'd like to ...