从PostgreSQL,我试图将图像文件读入Imagick对象 - 并简单地将相同的文件重新写回另一个bytea字段。目标是完全理解PHP和Imagick中使用的字符串处理和转换。
这是在PostgreSQL 9上,因此本机bytea_output是十六进制;我一直在关注注释,将bytea_output改为escape以便由PHP处理。
最终,目标是将此文件转换为ImageMagick支持的任何格式。
事情开始得足够好!在取消它后,$ imagestring正好是磁盘上文件的长度。到现在为止还挺好。事后不久就会失去控制......
我找不到任何要写回的字符串,它将重新构成文件 - 以相同的长度 - 返回数据库。
这里看错了什么?
// an entire image file is stored in the bytea col: bfile
$query = "SET bytea_output = 'escape'";
$result = spi_exec($query);
# Run the query and get the $result object.
$result = spi_exec($query);
# Fetch the row from the $result.
$row = spi_fetch_row($result);
$content = $row['bfile'];
// pg_unescape it to make it usable?
$unescaped = pg_unescape_bytea($content);
// Image is read into imagestring
$imagestring = substr($unescaped,12); // remove Mac file header?
$length_image = strlen($imagestring); // 330,494 (EXACTLY length on disk)
// Create Imagick object
$im = new Imagick();
// Convert image into Imagick
$im->readimageblob($imagestring);
// Imagick::getImageSize is deprecated. use Imagick::getImageLength
// - here things get weird....
$image_in_length = $im->getImageLength(); // 330,897
// ============= DO WORK HERE ====================================
/* Set format to pdf, or png, or... */
// THIS IS THE OBJECTIVE, of course!
// $im->setImageFormat( 'pdf' );
// =================================================================
// FOR THE TIME BEING, would like to simply re-write the same file
// Output the image
$output = $im->getimageblob();
//IS THIS RIGHT? ouput length is shorter?
$length_output = strlen($output); // 39,654
$escaped = pg_escape_bytea($output);
$length_escaped = strlen($escaped); // 182,720
// FINALLY: Re-concatenate the strings, and write back to blobtest:destfile:
// ALL of these produce the same result:
$query = "UPDATE blobtest SET destfile = '".$escaped."' WHERE pkey = '" .$args[0]. "'";
$result = spi_exec($query);
$length = getImageLength($image);
//return $inputtype;
$query = "SET bytea_output = 'hex'";
$result = spi_exec($query);
return $length;
答案 0 :(得分:0)
我认为ImageMagick不记得它已读取的确切图像数据 - 它会在将readImageBlob()
运行到其内部格式时进行转换,并在运行getImageBlob()
时将其转换为输出格式。
即使它是相同的格式 - 例如PNG输入和PNG输出 - 相同的图像可以以数百种方式保存 - 例如取决于压缩设置等。对于有损格式,如JPG,你甚至都不会得到相同的图像 - 只是它的近似值。
在任何图像处理程序中尝试相同的操作,例如Gimp - 在网络上打开一些PNG,将PNG另存为另一个文件名 - 您将获得两个代表同一图像的不同文件。
我认为这就是为什么你会得到不同的数据大小。