-
Notifications
You must be signed in to change notification settings - Fork 1
tonycoz/imager-file-apng
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
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; ```