Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tonycoz/imager-file-apng
- Owner: tonycoz
- Created: 2022-06-25T04:38:53.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-09T08:38:05.000Z (over 2 years ago)
- Last Synced: 2024-10-13T12:05:15.741Z (2 months ago)
- Language: Perl
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
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;
```