How to convert apng into webp? #962
Unanswered
FurkanGozukara
asked this question in
Help
Replies: 1 comment 10 replies
-
If you want to read an image that contains multiple frames you will need to use the using (var images = new MagickImageCollection(@"path\Debug\a.png"))
{
var defines = new WebPWriteDefines
{
Lossless = true,
Method = 6,
};
images.Write("a.webp", defines);
} And if you want to read an animated PNG file you will need to have |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have tried like this but apng animation is lost
Also I am looking for settings to lossless yet maximum compression. I don't care about CPU time speed etc. I need lossless and maximum compression. how to achieve that?
So I have a lot of PNG files and some APNG files
I will turn all of them into WEBP files
Yet I still want to keep APNG animation as well
Here example apng to test : https://static.pokemonpets.com/images/npcTrainers/trainer15125down.png
Beta Was this translation helpful? Give feedback.
All reactions