Ithumb-XS v0.2.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 install Ithumb::XS DEPENDENCIES This module requires these other modules and libraries: Imlib2 USAGE ## Usage use Ithumb::XS (); Ithumb::XS::create_thumbnail({ width => 800, height => 600, src_image => 'source_image.jpg', dst_image => 'destination_result_image.jpg' }); OO-interface: use Ithumb::XS; my $ithumb = Ithumb::XS->new; $ithumb->convert({ width => 800, height => 600, src_image => 'source_image.jpg', dst_image => 'destination_result_image.jpg' }); COPYRIGHT AND LICENCE Copyright (C) 2018, 2019 by Peter P. Neuromantic For more information see LICENSE file.