Help for this page

Select Code to Download


  1. or download this
      my $old = Image::Resize->new($explimg);
      my $new = $old->resize(800, 600);
    
  2. or download this
        use GD;
        my $GDimage = newFromPng GD::Image("imago_temp.png");
    ...
        binmode DISPLAY;
        print DISPLAY $newimage->jpeg(100);
        close (DISPLAY);