logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Imager::File::ICO - read MS Icon files

Author

       Tony Cook <tonyc@cpan.org>

Description

       Imager's MS Icon support is documented in Imager::Files.

Name

       Imager::File::ICO - read MS Icon files

See Also

       Imager, Imager::Files.

perl v5.40.1                                       2025-03-16                                           SGI(3pm)

Synopsis

         use Imager;

         my $img = Imager->new;
         $img->read(file=>"foo.ico")
           or die $img->errstr;

         my @imgs = Imager->read_multi(file => "foo.ico")
           or die Imager->errstr;

         $img->write(file => "foo.ico")
           or die $img->errstr;

         Imager->write_multi({ file => "foo.ico" }, @imgs)
           or die Imager->errstr;

See Also