techno
techno

Reputation: 6500

JPEG/JPG and TIFF/TIF which is the Correct or Commonly used extension

I have found many image editors offering to save the image in JPEG or TIF Format with Extensions .JPEG/.JPG and .TIF/.TIFF As im developing a image editing tool which format should my app support.

Upvotes: 1

Views: 265

Answers (2)

leonbloy
leonbloy

Reputation: 75906

If (as per comments) you are asking about which extension to prefer for each format, there is very little difference:

.jpeg is (very slightly) more correct-nice-modern

.jpg is (very slightly) more compatible-safe

The compatibility/safety issue refers mainly to old DOS-based filesystems that used the 8.3 filename structure. But that is rarely a issue in 2012.

Both are ok - but, please, dont' use uppercase.

The same goes for .tif vs .tiff (as, BTW, .html vs .htm)

Upvotes: 1

nickgroenke
nickgroenke

Reputation: 1502

JPEG is far more common than TIF. PNG is also pretty common now.

Upvotes: 1

Related Questions