-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Compress PNG to WebP if non-animated and non-transparent #9370
Comments
@tamaina What's your point to keep it PNG, btw? |
I protest vigorously. I hate lossy images anyway. |
Not even WebP? 👀 This could be an option, but generally I don't think it's a good storage/network use to keep PNG by default. This could be much cleaner if Mastodon v3 didn't just fail on WebP but at least tried something with its backing ImageMagick 😭 |
The benefits of this proposal far outweigh the drawbacks imho. |
@tamaina これまだダメです? Windowsでスクリーンショット上げるユーザー少なくないので対応したい |
う〜〜ん、低圧縮のlossy webpならいいのかも? ただwebpをブラウザで実装するのが辛いのか |
特に問題ないと思いますが |
WebP対応出来ているブラウザーではWebPにして他ではそのままにするとかどうでしょう |
....SafariではJPEGにしてしまえば💢(悪魔の声) でも他に手あります?そのまま vs JPEGに |
画像周りの話、悩ましいし、ややこしいし、この際 Epic Issue 立てて一旦整理したい…… |
wasm使って全部AVIFにしようって話があったような |
理想を言えばこれができると一番嬉しい |
理想と言えばSafariにWebPエンコードをサポートさせるのが理想ですね 一旦はWebPサポートしているブラウザーのみ対応して後は別の件で話したいです(最近のSafariの変化がかなり大きくて希望を持ってもいいかなって) |
その方針で良いと思います |
とりあえずSafariはpngにすればいいと思う(iPadのスクショは16bit PNG /w Display P3らしいので、8bit・色域メタデータなしにするだけでも相当軽くなるはず (本当はavifにしたいんだよな…Mastodon…) |
でも2MBだから微妙だなぁ |
toBlob webp、Safariだとquality無視されるけど一応生成できなかったっけ? |
これ本当なら MDN のデータの方修正しようぜ |
webpじゃなくPNGが出てきてしまう件について |
https://html.spec.whatwg.org/multipage/canvas.html#serialising-bitmaps-to-a-file
仕様だった件 |
なるほど〜〜 |
(エラーにならないんだ… |
若干逸れた話題かもしれないけど、しばらく oxipng を使ってみたところかなりいい感じだった |
Summary
Following #9277.
For now Misskey only compresses big PNGs to smaller PNGs, but small PNGs are still have significantly large file size compared to lossy formats. A screenshot from a Windows machine with a 1920x1080 display can eat 2 megabytes for example even when such image does not use any alpha value.
One caveat is that the only way to detect transparency from a PNG file is to scan every pixel in JS, which may take some time. 🤔 (Windows uses RGBA without any transparency. 🤷)
Q: Why not WebP?
A: Not usable yet because of Mastodon v3. #9334 (comment)
The text was updated successfully, but these errors were encountered: