Help for this page

Select Code to Download


  1. or download this
    $image->Read($filename);
    $image->[0]->Set(scene=>15);
    $image->Write(filename=>"testp%04d.tif",
                  compression=>'Group4',
                  density=>"240x240");
    
  2. or download this
    $image->Read($filename);
    $image->Write(filename=>"testp%04d.tif",
                  compression=>'Group4',
                  density=>"240x240",
                  scene=>15);
    
  3. or download this
    $image->Read($filename);
    $image->Write(scene=>15,
                  filename=>"testp%04d.tif",
                  compression=>'Group4',
                  density=>"240x240");