Mr. Goodie2Shoes
Well-known member
Adding it to my to-do listWould you consider adding Optimus support to this add-on?

Adding it to my to-do listWould you consider adding Optimus support to this add-on?
Great, thanks!Adding it to my to-do list![]()
It was reported by @clubpromos that some images were not being processed with the full potential by kraken.io. That was because XenForo saves the attachments as .data files and not the original file extension.
This query will output the sum of the file size of all the image files, in bytes:How do I find the size of my image attachments? I have a feeling I'd need an expensive Kraken package to process them all.
SELECT SUM(file_size) FROM xf_attachment_data WHERE width > 0;
lol yeah... 149 gigs to be exact160237038297
is that 152 gig?
Any progress?Adding it to my to-do list![]()
I am targeting the next version to include support for OptimusAny progress?
I am not sure if that would be feasible...Is it worth investigating trimming duplicate attachments?
Why not using the local optimisation tools?How do I find the size of my image attachments? I have a feeling I'd need an expensive Kraken package to process them all.
Honestly I hadn't thought about it or knew they existed until I saw this addon.Why not using the local optimisation tools?
Works fine with CloudfrontI currently serve all my attachments from Amazon Cloudfront CDN. If the optimized images have the same filename my CDN will still serve the un-optimized versions for a pretty long time. I suppose I could create a new origin and serve my new attachments from that. Has anyone done this?
Apologies if I've missed this above.
I don't know exactly what our total file size was before compression but from our testing, an 8500Kb (8.5MB) image was compressed to 140.4Kb for a 98.3% reduction. Our forum is 10 years old so many of the ~45K images were older and probably much smaller than modern hi-res images.Thanks for the review
Can you tell me how the percentage of reduction so that I can add your site in the "Case Studies" section?![]()
You can run this query to get the current total file size for the images and adding that to the size saved will return the original file sizeI don't know exactly what our total file size was before compression but from our testing, an 8500Kb (8.5MB) image was compressed to 140.4Kb for a 98.3% reduction. Our forum is 10 years old so many of the ~45K images were older and probably much smaller than modern hi-res images.
This query will output the sum of the file size of all the image files, in bytes:
Code:SELECT SUM(file_size) FROM xf_attachment_data WHERE width > 0;
The problem I am currently facing is the good compressors don't support STDIO piping that this add-on uses. I was working on a workaround but then classifieds got to meWhen do you think you'll add .png support?![]()
You can run this query to get the current total file size for the images and adding that to the size saved will return the original file size![]()
We use essential cookies to make this site work, and optional cookies to enhance your experience.