作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案 存储图像数据时如何对其进行编码?我建议您-6ren">
当我试图从我的开发环境中的数据库加载图像时,无法加载图像,而是返回错误消息“无法显示图像,因为它包含错误。”
<?php
require_once 'app_config.php'; //app config file
require_once 'database_connection.php'; //database connection
try{
//Get the image id.
if(!isset($_REQUEST['image_id'])){
handle_error("No image to load was specified.");
}
$image_id = $_REQUEST['image_id'];
//Build the SELECT statement
$select_query = sprintf("SELECT * FROM images WHERE image_id = %d", $image_id);
//Run the query
$result = mysql_query($select_query);
//Get the result and handle errors from getting no result
if(mysql_num_rows($result) == 0){
handle_error("We couldn't find the requested image.", "No image found with and ID of " . $image_id . ".");
}
$image = mysql_fetch_array($result);
//Tell the browser what's coming with headers
header('Content-type: ' . $image['mime_type']);
header('Content-length: ' . $image['file_size']);
echo $image['image_data'];
}catch(Exception $exc){
handle_error("Something went wrong loading your image.",
"Error loading image: " . $exc->getMessage());
}
?>
最佳答案
存储图像数据时如何对其进行编码?我建议您尝试 base64_decode()
它,因为这是传输/存储图像数据的常见方式。
echo base64_decode($image['image_data']);
exit;
关于php - 图像无法显示,因为它包含错误,当我删除以下行时显示文本 "header(' Content-type : ' ....",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18839082/
对于周期性的后台任务,我发现经常使用JobScheduler。或者,也有JobService和AlarmManager表示轻微的(?)不同的用例。但是,为什么不推出一个新的Runnable?在后台任务
我需要为每一行的第一个 TD 设置样式 跟在带有类“header”的列之后, 没有 colspan 集 我认为仅使用 CSS 是不可能的,所以我假设我需要使用 jQuery? abc
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 11 个月前关闭。 Improve
我是一名优秀的程序员,十分优秀!