我正在为移动的应用程序开发一个API,从移动端我将获取base64
的图像并将其插入数据库中的profile_image
列。
在我的网页中,我想显示该图像,那么我如何解码它:
<div class="card horizontal card-driver-details">
<div class="card-image card-circular">
<img src="{{ $driver->profile_image}} "> //i want to display here
</div>
<div class="card-stacked">
<div class="card-content">
<p><b>Name:</b>{{ $driver->first_name }} {{ $driver->last_name }}</p>
<p><b>Phone:</b>{{ $driver->phone_number }}</p>
<p><b>Address:</b>{{ $driver->addess_city_village }} {{ $driver->address_state }}</p>
</div>
</div>
</div>
字符串
6条答案
按热度按时间xggvc2p61#
试试看
字符串
wh6knrhe2#
试试这个。
字符串
这将使用base 64对
profile_image
进行解码,然后打印结果。pwuypxnk3#
所有类型的文件都可以通过使用这个来解决,
字符串
3phpmpom4#
试试这个:
字符串
uurity8g5#
我尝试了下面的代码,但不工作
字符串
然后做了一些关于这一点的浏览,然后发现现在所有更新的浏览器支持
data:image/jpeg/png/gif/etc
所以现在我可以显示图像
型
nwo49xxi6#
为了在Laravel 10中显示base64转换的图像,这对我来说很有效。
字符串