Help for this page

Select Code to Download


  1. or download this
        my $filename = $query->param('upload_field');
        my $type = $query->uploadInfo($filename)->{'Content-Type'};
    
  2. or download this
        use Image::Size;
        my $filename = $query->param('upload_field');
        my ($width, $height, $type) = imgsize($filename);