Only if resizing is done on phpBB side, could bekeith10456 wrote:If you're viewing the post the image would already be resized - correct? So you wouldn't have to worry about your data cap.
- reading the image from the "foreign site" (50MB 5000*4000px),
- resizing [this can be done with gd or imagemagick] to maximum allowed resolution (eg. 50KB 500*400px),
- caching it and
- then send it to the Browser.
- For full resolution, the image can be clickable and then is read from the foreign site.
If there will be only a
<img src="foreign/site/theimage.jpg" maxwith=500>
or similar by html, css, javascript, clients browser has to read the image from the foreign site in full resolution and full filesize and then resizes it using html, css, javascript ...