https://github.com/tonycoz/imager-file-apng
APNG support for Imager
https://github.com/tonycoz/imager-file-apng
Last synced: 3 months 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 (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-09T08:38:05.000Z (almost 3 years ago)
- Last Synced: 2025-01-19T17:57:05.591Z (5 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;
```