Help for this page

Select Code to Download


  1. or download this
    mogrify  crop 200x200+0+0 -gravity center file.jpg
    
  2. or download this
    my $image = Image::Magick->new;
    $image->Read($file);
    ...
    }
    
    $image->Crop(width => $size, height => $size);
    
  3. or download this
    $image->Set(Gravity => 'Center');