in reply to How to use Image::Magick to crop white space around a signature image?
poj#!/usr/bin/perl use strict; use Image::Magick; my $p = new Image::Magick; $p->Read("image.jpg"); $p->Trim(); $p->Write("trimmed.jpg");
|
|---|
| 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 |