![]() ![]() ![]() |
|
It's not server side in the sense that it's not an image file but "text" stored in the database and delivered as part of the page markup - which is not cacheable and repeated everywhere it's used. Just look at the source for the previous page and you will see why the page loads slower than others.
Please support Geekzone by subscribing, or using one of our referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync
Also, using PNG instead of JPEG makes images bigger. PNG is only good for things like logos or lines. Photos have to be JPEG to be effective in terms of size.
Please support Geekzone by subscribing, or using one of our referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync
Fred99:
The first started to load the quote, then bogged. Beachball (OSX Safari) Didn't freeze but bogged. Went back to the email tab (Safari-Yahoo webmail) and white screen, would not reload. Re activated the url in the dress bar, loaded email. GZ homepage tab still worked. The second pic was fine.
What you could to solve that problem is on the server side after the post is made is post process it AND run a regex something along the lines of this:
/<img.+src=\"data\:image\/(.+);base64,([A-z0-9\=\+]+)\"/
In this case the first item in the set will be the image type, second will be the content base64 encoded. Then write the image to a nginx/s3 bucket/cloudflare cache. With the correct extension/headers decoded. Then replace the match with an HTTP(s) link to the image.
People should be hosting their own images anyway.
freitasm:
Also, using PNG instead of JPEG makes images bigger. PNG is only good for things like logos or lines. Photos have to be JPEG to be effective in terms of size.
Google have just made JPEG up to 35% smaller with better image quality:
https://github.com/google/guetzli/
Interesting conundrum.
On the plus side, base64 is convenient.
You can paste something from the snipping tool (for example) straight into the quick reply box, and submit, no uploading process necessary.
darylblake:What you could to solve that problem is on the server side after the post is made is post process it AND run a regex something along the lines of this:
/<img.+src=\"data\:image\/(.+);base64,([A-z0-9\=\+]+)\"/
In this case the first item in the set will be the image type, second will be the content base64 encoded. Then write the image to a nginx/s3 bucket/cloudflare cache. With the correct extension/headers decoded. Then replace the match with an HTTP(s) link to the image.
People should be hosting their own images anyway.
Please support Geekzone by subscribing, or using one of our referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync
Dairyxox:
Interesting conundrum.
On the plus side, base64 is convenient.
You can paste something from the snipping tool (for example) straight into the quick reply box, and submit, no uploading process necessary.
Which is why I'd been using it. I'll stop now - because from what I've seen there's a definite issue with Safari / OSX, also with (AFAIK) default settings with Chrome on Android the base 64 characters are downloaded quickly, but the browser is displaying that as the "gobbledygook" text - not parsing it as an image.
As suggested above I will look at automatically convert a blob into a file and replace it in the forum when posted.
Please support Geekzone by subscribing, or using one of our referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync
darylblake:Google have just made JPEG up to 35% smaller with better image quality:
Good reduction; it took a JPEG of a photo from my DSLR from 14M down to 6.3M. Slow, though:
$ time bin/Release/guetzli ~/Desktop/DSC_0005.png ~/Desktop/output.jpg
real 43m52.705s
user 40m27.351s
sys 1m57.240s
[The release notes do state it's slow and memory hungry. They're not wrong.]
|
![]() ![]() ![]() |