Converting animated GIF to WebP leads to wrong results

Im trying to convert animated GIF images to animated WebP images with Aspose Imaging 21.11. The resulting images have kind of motion compression artefacts.
Please consult the attached sample.

Archive.zip (4.4 MB)

@thomas.winklehner
Please use WebP export option FullFrame to resolve the issue, i.e. :

  string TestDirectory = "Your test folder";
   using (Image image = Image.Load(Path.Combine(TestDirectory, "test.gif")))
   {
        image.Save(Path.Combine(TestDirectory, new WebPOptions { FullFrame = true } );
   }

Expected results :test.zip (6.1 MB)

1 Like

Thanks a lot! This did the job.