in reply to Re: Exporting images
in thread Exporting images
I'm opening this multi-layer-gif in gimp. I don't know if photoshop will open it the same way.#!/usr/bin/perl use warnings; use strict; use Image::Magick; my $image1=new Image::Magick; $image1->Read("dir1/1.gif","dir1/2.gif"); $image1->Write("dir1.gif");
Update: .tif also works as a multi-layer file, at least you won't have to combine both images down to an 8 bit pallette.
|
|---|