我在我的GETer实体中加载我的图像(blob数据)当我在我的GETer中返回($ this-> foto)时,我看到:屏幕上的资源ID#284当我像这样更改我的GETer时:return stream_get_contents($ this- >照片);我看到了这些: JFIF (,,,,,,,,(和更多)
在我的Controller中,调用index.html.twig来显示我的所有实体
/**
* Lists all Producten entities.
*
*/
public function indexAction()
{
$em = $this->getDoctrine()->getManager();
$entities = $em->getRepository('CustomCMSBundle:Producten')->findAll();
return $this->render('CustomCMSBundle:Producten:index.html.twig', array(
'entities' => $entities,
));
}
现在在我的观点(index.html.twig)中我想展示图片
{% for entity in entities %}
<tr>
<td>
<img src="{{ entity.foto}}" alt="" width="80" height="80" />
</td>
<td>
{{ entity.foto }}
</td>
<td>
<ul>
<li>
<a href="{{ path('cms_producten_show', { 'id': entity.id }) }}">show</a>
</li>
<li>
<a href="{{ path('cms_producten_edit', { 'id': entity.id }) }}">edit</a>
</li>
</ul>
</td>
</tr>
{% endfor %}
但我没看到这张照片?
谁能帮我?
您正在使用<img src="(raw image)">
而不是<img src="(image's url)">
一个快速的解决方案是在base64中对您的图像进行编码并嵌入它。
调节器
$images = array();
foreach ($entities as $key => $entity) {
$images[$key] = base64_encode(stream_get_contents($entity->getFoto()));
}
// ...
return $this->render('CustomCMSBundle:Producten:index.html.twig', array(
'entities' => $entities,
'images' => $images,
));
视图
{% for key, entity in entities %}
{# ... #}
<img alt="Embedded Image" src="data:image/png;base64,{{ images[key] }}" />
{# ... #}
{% endfor %}
在您的实体中写下您的图像获取器,如下所示:
public function getFoto()
{
return imagecreatefromstring($this->foto);
}
并使用它而不是对象“foto”属性。
php doc的功能:http://php.net/manual/de/function.imagecreatefromstring.php
一种更直接的方式,无需在控制器中进行额外的工作:
在实体类中
/**
* @ORM\Column(name="photo", type="blob", nullable=true)
*/
private $photo;
private $rawPhoto;
public function displayPhoto()
{
if(null === $this->rawPhoto) {
$this->rawPhoto = "data:image/png;base64," . base64_encode(stream_get_contents($this->getPhoto()));
}
return $this->rawPhoto;
}
在视图中
<img src="{{ entity.displayPhoto }}">
感谢@ b.enoit.be回答我的问题here,我可以改进这段代码,这样图像可以多次显示。