-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: updated images #11
base: main
Are you sure you want to change the base?
Conversation
They are webp, but they are still around 1.2mb while the ones currently in the repo are a bit over 200kb at similar resolution. So maybe they need a bit of compression magic that i dont know. Or are they not supposed to be lossless? |
Maybe you can try with ImageMagick, that is basically the tool most of us use to transform from PNG to webp. You can specify even the quality like so: magick wizard.png -quality 50 -define webp:lossless=true wizard.webp This is the command I personally use to turn multiple images into webp: for file in *.png; do convert -quality 100 "$file" "${file%.png}.webp"; done |
I cant get them lower in size. Even after optimizing the PNGs (with |
So I somehow didn't consider the very HD cat picture in the images that perhaps obviously wouldn't compress well with lossless. So I will make new screenshots without the kitty unfortunately. Either late Sunday or Monday. |
Now it should be acceptable maybe. Another thing to consider is if the UI by default is on the bottom, but it shouldn't matter much. |
Now this is as small as they will probably go. |
Perfect, thanks for the optimization, I will merge this as soon as #9 is merged. |
Fixes #10
One problem is they are big. And i dont know how you guys make them tiny. I tried full effort optipng and oxipng before doing full effort (-m 6) lossless webp.
But these new images show off the new (if #9 merged) background image (which is indeed part of the app already)