The following code generates a 300x100 image using a 100x100 tile as a source image:
for (my $i = 0; $i < 3; $i++) {
$image->Read("filepath/100x100.png");
}
$result = $image->Montage(geometry=>'100x100',tile=>'3x1');
How do I reach the same result while only reading once from disk?