0

从 php 脚本(Ubuntu3.6 上的 PHP 5.3.10-1)我连接到 MSSQL 服务器,我想从图像字段类型中检索图像数据。我想打印它。

我可以从 MSSQL 获取数据,但无法将其打印/回显为有效图像。如何打印/回显/保存?

$db= new PDO('odbc:MYODBC', '***', '***');
$stmt = $db->prepare("USE database");
$stmt->execute();
$tsql = "SELECT image 
         FROM Pics 
         WHERE id = 12";
$stmt = $db->prepare($tsql);
$stmt->execute();

$stmt->bindColumn(1, $lob, PDO::PARAM_LOB);
$stmt->fetch(PDO::FETCH_BOUND);

header("Content-Type: image/jpg");

echo($lob); //not an image: 424df630030000000000360000002800 ...

imagecreatefromstring($lob);  // Data is not in a recognized format ...

$lob = fopen('data://text/plain;base64,' . base64_encode($lob), 'r'); //Resource
fpassthru($lob); //not an image: 424df63003000000000036000000280000 ...

PHP 脚本编码:UTF-8。

在 /etc/freetds/freetds.conf

[MYODBC]
host = myhost.com
client charset = UTF-8
tds version = 7

((在 MSSQL 的服务器上使用 sqlsrv 我可以使用这个:

$image = sqlsrv_get_field( $stmt, 0, 
                      SQLSRV_PHPTYPE_STREAM(SQLSRV_ENC_BINARY));
header("Content-Type: image/jpg");
fpassthru($image);

))

更新

echo base64_decode($lob); //Not an image: γn­τΣ}4ΣM4ΣM4ί­4ΣM4ΫΝ4ΣM4s­...
4

2 回答 2

1

尝试添加以下标题:

  • 内容处置
  • 内容传输编码
  • 内容长度

在 PHP 代码中:

header('Content-Type: image/jpg');
header('Content-Disposition:attachment; filename="my_file.jpg"');// Set the filename to your needs
header('Content-Transfer-Encoding: binary');
header('Content-Length: 12345');// Replace 12345 with the actual size of the image in bytes
于 2013-06-13T09:14:43.867 回答
0

我最近正在与类似的存储问题作斗争。事实证明,我在插入数据库表之前引用了我的二进制图像数据。因此,请确保您没有添加引号并将其转换为字符串 - 就像我不小心那样。

这是在现有本地文件上完成的准备工作,以获取要存储到数据库中的正确数据。此外,请确保您有 bin2hex() 可用或获取该函数的替换版本。

function prepareImageDBString($filepath) {

    $out = 'null';
    $handle = @fopen($filepath, 'rb');
    if ($handle) {
        $content = @fread($handle, filesize($filepath));
        // bin2hex() PHP Version >= 5.4 Only!
        $content = bin2hex($content); 
        @fclose($handle);
        $out = "0x" . $content;
    }
    return $out;
}

我希望这可以帮助别人。

于 2016-04-29T20:08:33.613 回答