in reply to Piece up a BMP file with Image::Magick

Use the Clone method to make copies of the original.

my $picture = Image::Magick->new(); $picture->ReadImage("$image_filename"); my $copy = $picture->Clone();