Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tonycoz/imager-file-apng

APNG support for Imager
https://github.com/tonycoz/imager-file-apng

Last synced: about 1 month ago
JSON representation

APNG support for Imager

Awesome Lists containing this project

README

        

Animated PNG (APNG) support for Imager.

```
use Imager;
use Imager::File::APNG;

my @frames = Imager->read_multi(file => "foo.png", type => "apng)
or die Imager->errstr;

Imager->write_multi({
file => "foo.png",
type => "apng",
apng_delay => 1/60,
}, @frames)
or die Imager->errstr;
```