1

我想限制用户使用jquery文件上传上传固定高度和宽度的图像我从选项中得到的是

             // Uncomment the following version to restrict the size of
            // uploaded images:
            /*
            '' => array(
                'max_width' => 1920,
                'max_height' => 1200,
                'jpeg_quality' => 95
            ),

我想检查固定的高度和宽度,我正在上传 2 张图片,每张图片必须具有不同的尺寸,是否有任何参数

4

1 回答 1

-1

我建议您使用 PHP 而不是 javascript 或 flash 中的任何前端检查,这可以被绕过。

getimagesize();

手册: http: //php.net/manual/en/function.getimagesize.php

于 2013-05-07T10:18:35.120 回答