williamsandonz
williamsandonz

Reputation: 16420

What is maximum size of image that can be used on website?

I.e in pixels, and in mb?

Wondering this for awhile thanks!

Upvotes: 2

Views: 8721

Answers (3)

COD3BOY
COD3BOY

Reputation: 12092

The answer is, there is no such limit, but from a practical point of view, use of images larger than 2 MP (1600x1200) on your website wont make any sense,it wont be it useful/easier for a wide audience. and w.r.t size in MB, if you're seeking practical solution, an image with <2MB would likely serve you in any case.

Upvotes: 2

sarnold
sarnold

Reputation: 104020

The maximum size of a JPEG image is 65535 x 65535 pixels.

The maximum size of a PNG image is 2^31-1 x 2^31-1 pixels. You would have great difficulty constructing an image this large due to memory constraints on typical computers.

Some older platforms cannot operate on files that are over two gigabytes in size. Of course, two gigabyte image files would be awkward to work with in most situations, so unless you're doing astronomy with amazing telescopes, I really wouldn't worry about it.

Since most displays are under 1920 x 1200 pixels, it would probably make sense to resize your images down to this size, unless your intention is to allow your clients to make photographic reproductions of your images -- in which case, give your clients as many pixels as you can.

Upvotes: 7

Michael Banzon
Michael Banzon

Reputation: 4967

Eventually the host computer will run out of memory and can't load the image - but I think it is safe to say that you'll never make that happen.

Images for webpages can be as big as you like. You need to think about the convenience (or lack thereof) of the users loading very big images on connections that are now mobile all the time and unstable to say the least.

Upvotes: 1

Related Questions