简体   繁体   English

有谁知道如何将存储在数据库中的二进制数据转换回图像?

[英]Does anyone know how to convert binary data stored into a database back into an image?

A database has stored an image as binary. 数据库已将图像存储为二进制。 I'm looking to convert it back to a JPEG in PHP. 我希望将它转换回PHP格式的JPEG。 Does anyone know how this might be accomplished? 有谁知道如何实现这一目标?

I'm aware this might be something that I can find through Google but I have not yet tracked down an answer and thought it would be best to hedge my bets and ask a question here. 我知道这可能是我可以通过谷歌找到的东西,但我还没有找到答案,并认为最好对冲我的赌注并在此问一个问题。

If I find out before I get a response, I will post the solution here. 如果我在收到回复之前发现了,我会在这里发布解决方案。

Simply select the data from the database and put it in the variable $image_data_from_database 只需从数据库中选择数据并将其放入变量$ image_data_from_database中

Save to file: 保存到文件:

<?php
    file_put_contents("image.jpg", $image_data_from_database);
?>

or display the image in-place: 或就地显示图像:

<?php
    header('Content-Type: image/jpeg');
    echo $image_data_from_database;
?>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 将GD图像转换回二进制数据 - Convert GD image back to binary data 有谁知道如何在PHP中将序数转换为基数? - Does anyone know how to convert an ordinal to a cardinal number in PHP? 有谁知道如何将此Perl脚本转换为PHP? - Does anyone know how to convert this Perl script into PHP? 如何将以二进制形式存储的数据库中的图像定义为 div 背景图像? - How to define an image from the database stored in binary as a div background image? 有谁知道如何在mysql中存储图像并使用angular和php显示回来? - Anyone know how to store image in mysql and display back using angular and php? 如何将BLOB数据(存储在数据库中)转换为pdf - How to convert BLOB data (stored in database) to pdf 有谁知道如何在 Laravel 4 上安装 SASS? - Does anyone know how to install SASS on Laravel 4? 有谁知道我如何读取 PHP 中的电子邮件,然后将它们写入数据库? - Does anyone know how I can read emails in PHP and then write them to a database? 如何将二进制图像数据转换为图像文件并将其保存在php的文件夹中 - How to convert binary image data to image file and save it in folder in php 有谁知道如何将GTFS数据信息映射到http://simcity.vasile.ch/sbb/? - Does anyone know how to map GTFS data info into http://simcity.vasile.ch/sbb/?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM