Help for this page

Select Code to Download


  1. or download this
     open F, TMP_GIF_FNAME;
     my $im = GD::Image->newFromGif( F );
     close F;
    
  2. or download this
    sub newFromGif {
        croak("Usage: newFromGif(class,filehandle,[truecolor])") unless @_
    +>=2;
    ...
        binmode($fh);                  # <-- line 193
        $class->_newFromGif($fh,@_);
    }