gpt4 book ai didi

PHP Safari PDF转图片问题

转载 作者:太空宇宙 更新时间:2023-11-03 19:18:09 26 4
gpt4 key购买 nike

我正在尝试使用标题和 Imagick 将 PDF 显示为图像。我让它在其他浏览器中工作,但在 Safari 中图像带有黑色背景。这里有一个示例,示例生成的代码如下:

http://www.iptlock.com/pdf_test.php

<?php
header("Pragma: no-cache");
header("Expires: -1");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");

$file_location='/media/files/bFdIdcxsOKtkBjzayEBD.pdf';

$im = new imagick($file_location."[0]");
$im->setImageFormat( "jpg" );
header( "Content-Type: image/jpeg" );
echo $im;
?>

所以我不确定哪里出了问题或如何纠正问题。

最佳答案

当我将缩略图从 PDF 转换为 JPG/JPEG 时,我也会遇到同样的情况。

这是我为此实现的功能:

function writeAttachmentsToDisk($mbox,$uid,$part,$dir,$subtype,$subject,$attachments,$readonly=false,$dataInici=''){
if(!file_exists($dir)){
mkdir($dir);
}
if(!empty($dataInici)){
$subject = trim(str_replace($dataInici,'',$subject));
}
$filename = setNomArxiu(@iconv_mime_decode($subject,0,'UTF-8').(count($attachments)>0?'-'.strtoupper(alpha(count($attachments))):'')).'.'.$subtype;
if(!$readonly || !file_exists($dir.'/'.$filename)){
$temp_filename = 'tmp.eml';
$email_file = $dir."/".$temp_filename;
@imap_savebody($mbox,$email_file,$uid,$part,FT_UID | FT_PEEK);
if(file_exists($email_file)){
$tb = false;
for($a=0;$a<count($attachments);$a++){
if(files_identical($email_file,$attachments[$a])){
$tb = true;
break;
}
}
if(!$tb){
$command = "php -r '\$fh = fopen(\$argv[1], \"r\"); \$theData=fread(\$fh, filesize(\$argv[1])); fclose(\$fh); echo base64_decode(\$theData);' '$email_file' > $dir/$filename";
exec($command,$output,$result);
if($result!=0){
unlink($email_file);
@rmdir($dir);
return false;
} else {
unlink($email_file);
return $dir.'/'.$filename;
}
}else{
unlink($email_file);
@rmdir($dir);
return false;
}
}else{
unlink($email_file);
@rmdir($dir);
return false;
}
}else{
return $dir.'/'.$filename;
}
}

上面的函数使用了与当前问题无关的其他函数(alpha、setNomArxiu、files_identical)。

我想问题一定出在这里:

$command = "php -r '\$fh = fopen(\$argv[1], \"r\"); \$theData=fread(\$fh, filesize(\$argv[1])); fclose(\$fh); echo base64_decode(\$theData);' '$email_file' > $dir/$filename";
exec($command,$output,$result);

生成的图像 can be seen here in most browsers但在 Safari 中和在 Mac 中保存时会变暗,几乎是黑色。

对这里发生的事情有什么想法吗?

谢谢!

关于PHP Safari PDF转图片问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5475797/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com