PHP上传似乎默认为72 dpi,我需要300 dpi

时间:2012-05-03 22:33:42

标签: php upload resolution

我有一个页面,而只用于打印,其中的一些图像是通过我的脚本上传的。似乎总是将图像缩小到72 dpi,不管我设置imagejpeg()imagepng()的质量如何。

我在git hub上使用了自己的个人脚本和这个脚本

https://github.com/maxim/smart_resize_image

我希望得到一些关于在原始300dpi下保留dpi的指导。

这是我自己的个人脚本

if (!empty($_FILES['image']['name'])) //checking if file upload box contains a value
    {   
        $saveDirectory = 'pics/';           //name of folder to upload to
        $tempName = $_FILES['image']['tmp_name'];   //getting the temp name on server
        $fileName1 = $_FILES['image']['name'];      //getting file name on users computer

        $count = 1;
        do{
        $location = $saveDirectory . $_GET['section'] . $count . $fileName1;
        $count++; 
        }while(is_file($location));

        if (move_uploaded_file($tempName, $location))   //Moves the temp file on server
            {                                                           //to directory with real name
                $image = $location;

                // Get new sizes
                list($width, $height, $type) = getimagesize($image);    //gets information about new server image

                $framewidth = 932;
                $frameheight = 354;

                $realwidth = $width;    //setting original width and height
                $realheight = $height;

                // Load
                $file1new = imagecreatetruecolor($framewidth, $frameheight);    //creates all black image with target w/h

                if($type == 2){
                    $source = imagecreatefromjpeg($image);
                    imagecopyresampled($file1new, $source , 0, 0, 0, 0, $framewidth, $frameheight, $realwidth, $realheight);
                }
                elseif($type == 3){
                    $source = imagecreatefrompng($image);    
                    imagecopyresampled($file1new, $source , 0, 0, 0, 0, $framewidth, $frameheight, $realwidth, $realheight);
                }
                else{
                    echo "Wrong file type";
                }

                if($type == 2){

                    //creates jpeg image from file1new for file1 (also retains quality)
                    imagejpeg($file1new, $image,100);
                    //frees space
                    imagedestroy($file1new);
                }
                elseif($type == 3){

                    //creates png image from file1new for file1 (also retains quality)
                    imagepng($file1new, $image,10);
                    //frees space
                    imagedestroy($file1new);
                }
                else{
                    echo "Wrong file type";
                } 
            } 
            else 
            {
                echo '<h1> There was an error while uploading the file.</h1>';
            }
        }
}

编辑:即使dpi不是答案,因为我看到具体的jpgs不保留该信息。我需要一些方法来保持这些图像非常清晰和清晰。

2 个答案:

答案 0 :(得分:3)

如果您生成图像并使用浏览器打开,浏览器会在渲染之前将其缩小到72dpi。 如果您使用gimp / phptoshop /任何图像编辑器打开,它应该保持相同的dpi质量。 虽然在屏幕上没有区别,因为你的屏幕是72 dpi。

没有在新的浏览器上测试过,但是在netscape和第一个firefox版本中就是这样,我认为它从那时起就没有改变过。

答案 1 :(得分:0)

lorezyra (at) lorezyra (dot) com此处发布的功能:http://www.php.net/manual/es/function.imagejpeg.php#85712可能会解决问题。