How can .png files utilize transparency, whereas all .jpegs are all opaque rectangles?

174 views

What about the “design” of a .png allows it to be transparent for logos and such? Whereas when I export a .jpeg it’s always an opaque square.

In: 0

3 Answers

Anonymous 0 Comments

The way that PNGs do transparency is that they have 4 “color layers” – one for red, green, blue and “alpha”

Red green and blue channels are enough to be combined to make the color for each pixel. The alpha channel indicates for each pixel, “how transparent” it should be

JPG only has the red/green/blue channels, so it doesn’t support transparency

An older format, GIF, supports transparency but only as a binary on/off value, i.e. the pixel is either fully opaque or full transparent

Anonymous 0 Comments

Jpeg is designed to reduce file size. One of the ways it does it is by removing transparent layer.

Png is designed to have decent quality and supports transparent layer

Anonymous 0 Comments

To put it kind of redundantly, PNG can support transparency (technical term, Alpha) and JPEG cant simply because both standards are designed to be that way.

JPEG (Joint Photographic Experts Group) is intended for use with realistic images captured off a camera. So it supports the Red/Green/Blue channels and has lossy compression which is fine with natural images with realistic gradients in tone between pixels. It doesn’t support an Alpha channel because its just not how the format was intended to be used.

PNG (Portable Network graphics) was originally intended to replace GIF when it was realized the compression algorithm used by that actually demanded royalties to be paid to a private company. So it was meant to replace GIF, which nowadays is used near exclusively for its animation capabilities but was more common as a still image back then. GIF does support a binary Alpha channel (The pixel is fully transparent or fully opaque) and so PNG inherited Alpha support, if at far greater quality than GIF allowed as with its colour information.

As a sidenote, as an animator and graphic designer, GIF is a terrible format that has literally received no revisions since 1989, the internet really needs to collectively move on to a new standard.