in reply to How to use Image::Magick to crop white space around a signature image?

#!/usr/bin/perl use strict; use Image::Magick; my $p = new Image::Magick; $p->Read("image.jpg"); $p->Trim(); $p->Write("trimmed.jpg");
poj
  • Comment on Re: How to use Image::Magick to crop white space around a signature image?
  • Download Code

Replies are listed 'Best First'.
Re^2: How to use Image::Magick to crop white space around a signature image?
by Anonymous Monk on Apr 29, 2018 at 15:30 UTC
    That saved my day!
    !
    Thank you so much :)