Help for this page

Select Code to Download


  1. or download this
      my  $png_data = $im->png;
      #open (DISPLAY,"| display -") || die;
    ...
        print DISPLAY $png_data;
        close DISPLAY;
    
  2. or download this
    open (I, '<', "/tmp/upload/$tag.jpg");
    #print $query->header(-content_type => "image/png");
    print while <I>;
    close I;
    exit;