Ahaochan / Tampermonkey

油猴脚本集合
https://greasyfork.org/zh-CN/users/30831
GNU General Public License v3.0
787 stars 131 forks source link

Download Ugoira as Animated PNG (APNG)? #48

Closed NintendoManiac64 closed 3 years ago

NintendoManiac64 commented 4 years ago

GIF is limited to 256 colors.

But APNG effectively has no color limit (16bit per channel, so 64bit per pixel including alpha channel or 48bit per pixel without alpha)

And APNG now has very good web browser support: https://caniuse.com/#feat=apng

(the only thing is that an unoptimized APNG can have quite a large file size, and I don't know how realistic it is to support the sort of lossless inter-frame optimization that software like "APNG Optimizer" implements)

issue-label-bot[bot] commented 4 years ago

Issue-Label Bot is automatically applying the label feature_request to this issue, with a confidence of 0.87. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

Ahaochan commented 4 years ago

Good idea. I use gifjs to generate gif. Have any js library to generate apng? You can open a new pull request.