使用WideImage从数据库显示PNG

时间:2014-03-13 18:17:29

标签: php mysql database yii wideimage

使用 WideImage 扩展名,我试图使用此函数从数据库渲染Image Blob:

protected function renderControlNonEditable()
    {
        assert('$this->model instanceof Item || $this->model->getModel() instanceof Item');
        $content = null;
        if ($this->model->files->count() > 0)
        {
            $content  .= '<ul class="attachments">';
            foreach ($this->model->files as $fileModel)
            {
                $filecontent = FileContent::getById($fileModel->id);
                $filecontent = $filecontent->content;
                $content .= '<li><span class="icon-attachment"></span>';
                $content .= FileModelDisplayUtil::renderDownloadLinkContentByRelationModelAndFileModel($this->model,
                                                                                                       $fileModel);
                $content .= ' ' . FileModelDisplayUtil::convertSizeToHumanReadableAndGet((int)$fileModel->size);
                $content .= '</li>';
                $content .= WideImage::load($filecontent);
            }
            $content .= '</ul>';
        }
        return $content;
    }

但是当呈现$content时,它会显示以下BLOB字符串而不是呈现图像。

�PNG  IHDRd$��8:IDATh�ݛy|Օ����

如何确保发出正确的标题?我该怎么做才能解决这个问题?

public function actionImage($model, $fileModel)
    {
         $filecontent = FileContent::getById($fileModel->id);
                $filecontent = $filecontent->content;
        $content = WideImage::load($filecontent);

        return $content;
    }

1 个答案:

答案 0 :(得分:1)

好吧,正如其他人提到的那样,你无法在html页面上转储wideimage(或任何图像)的输出。你最好的解决方案(也是我猜)也是创建另一个只处理图像的功能。

您应该像现在一样创建html而不是

$content .= FileModelDisplayUtil::renderDownloadLinkContentByRelationModelAndFileModel($this->model, $fileModel);            

我认为是获取图像内容,有一个

$content .= '<img src="'.$this->createUrl('image',array('file'=>$fileModel)).'">'

你的函数(actionImage)应该在同一个控制器中(在我的例子中)应该得到blob,做你想做的任何事情,然后输出图像(只有图像,没有html)。