Help for this page

Select Code to Download


  1. or download this
    use Image::Resize;
    $image = Image::Resize->new('large.jpg');
    $gd = $image->resize(250, 250);
    
  2. or download this
    use Image::Imlib2;
    
    ...
    
    # save thumbnail to file
    $image2->save("out.png");