1

好的,这就是问题所在。我需要显示可以是许多不同类型的图像列表。出于安全原因,系统管理员决定将所有这些图像保留在 webroot 之外。我正在使用一些有趣的 php 技巧来获取我的图像,但我无法显示 eps 文件,而且我的 tiff 也有问题,但我更专注于 EPS。哦,顺便说一句,我们使用的是 MVC,所以 url 是我们调用函数和传递参数的方式。

这就是我通过数据库中的图像路径循环显示图像的方式

foreach($paths as $path){
    // $path = '/0/path/1/to/2/image/3/filename.eps' 
    <img src="/path/to/script/0/path/1/to/2/image/3/filename.eps" />
}

在该脚本中,我执行以下操作:

$count = 0;
// BUILD SRC PATH FROM PASSED ARGUMENTS
while($this->_getParam($count) && $count < 30 ){
    $path[] = urldecode($this->_getParam($count));
    $count++;
}
$path = '/'.urldecode(implode('/',$path));

$srcESC = escapeshellarg($path);
$mime = exec('file -bi '.$srcESC);

if (!file_exists($path)) return;
switch($mime){
    case 'image/x-MS-bmp':
        header('Content-Type: image/x-ms-bmp');
        break;
    case 'application/postscript':
        header('Content-Type: application/postscript');
        break;
    case 'image/gif':
        header('Content-Type: image/gif');
        break;
    case 'image/x-ico':
        header('Content-Type: image/x-icon');
        break;
    case 'image/jpeg':
        header('Content-Type: image/jpeg');
        break;
    case 'application/pdf':
        header('Content-Type: application/pdf');
        break;
    case 'image/png':
        header('Content-Type: image/x-png');
        break;
    case 'image/svg+xml':
    case 'image/svg-xml':
        header('Content-Type: image/svg+xml');
        break;
    case 'image/x-tiff':
    case 'image/tiff':
        header('Content-Type: image/tiff');
        break;
    case 'image/x-photoshop':
    case 'application/x-quark-xpress-3':
    case 'application/pdf':
    case 'application/octet_stream':
    header('Content-Description: File Transfer');
    header('Content-Disposition: attachment; filename='.basename($path));
    header('Content-type: application/octet');
        header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($path));
        break;
    }
    readfile($path);

EPS 应该在应用程序/postscript Content_Type 上获取,这就是我的标题通过 chrome 检查返回的内容,但它只是不会拉取文件的视觉效果。

有任何想法吗?

4

0 回答 0