in reply to Re: Appending an image to a png file
in thread Appending an image to a png file
but this writes the images to two files 'pimage.jpg.0' & 'pimage.jpg.1'(each having one image). I want both the images to be in a single png file. How do I get it?#!/usr/local/bin/perl use Image::Magick; my($image, $p, $q); $image = new Image::Magick; $image->Read('d:\\d\\Graph.xls..PNG','d:\\d\\Sample.jpg'); $image->Write('d:\\pimage.jpg');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Appending an image to a png file
by beable (Friar) on Aug 04, 2004 at 10:04 UTC |