Bifurcator Offline Upload & Sell: On
|
p.1 #14 · Re sizing image for this site in CS6 | |
I've seen a few web pages which consider the embedded PPI value - tho usually custom coded commercial sites. If that top image were displayed using that code it might cause a browser crash or display plug-in - it would be massive whatever happened! The bottom one I guess would render as a single pixel. 
My internet EXIF viewer for example frags up on that 30,000 PPI one:

Notice the one-pixel image in the preview display of the left panel.
Just lucky that the code for displaying it here and in most forums I guess, looks something like this:
<img onload="if (this.naturalWidth === undefined) { var img = new Image(); img.src = this.src; naturalWidth = img.width; naturalHeight = img.height; } ris(this,src,naturalWidth,naturalHeight); width=naturalWidth; height=naturalHeight;" width="800" height="532" border="0" alt="This image is copyrighted by the owner" src="http://dougieville.us/ppi/300000.jpg" style="cursor: default; ">
|