Ithumb-XS v0.4.0 ================ Ithumb::XS - is a fast, small (one function) and simple Perl-XS module for creation a thumbnails, using Imlib2 library. INSTALLATION To manual install this module type the following: perl Makefile.PL make make test make install To automatical install: cpan -i Ithumb::XS DEPENDENCIES This module requires these other modules and libraries: Imlib2 (binary and headers) USAGE ## Usage use Ithumb::XS (); Ithumb::XS::convert_image({ width => 800, height => 600, src_image => 'src_image.jpg', dst_image => 'dst_image.jpg' }); OO-interface: use Ithumb::XS; my $ithumb = Ithumb::XS->new; $ithumb->convert({ width => 800, height => 600, src_image => 'src_image.jpg', dst_image => 'dst_image.jpg' }); COPYRIGHT AND LICENCE Copyright (C) 2018, 2019 by Peter P. Neuromantic For more information see LICENSE file.