1

我是 Joomla 和 PHP 开发的新手,所以请多多包涵。

在测验后提取一些简单的数据以绘制证书图像。我需要用户单击链接并下载该图像。

再一次,我可以在 Joomla 之外得到一些工作,但在内部却不行。我什至还没有得到动态创建的图像,并且只遇到了静态图像的问题,即下载的文件无效。

这是我能够在 Joomla 之外使用模板预览作为现有图像的一个脚本:

<?php
header("Content-type: image/png");  
header('Content-Disposition: attachment; filename="template_preview.png"');  
readfile('template_preview.png');  

下载的时候图片是正确的。

但是,在我的 Joomla 文件中:

<?php defined('_JEXEC') or die;
require_once("includes/variables_certificate.php"); 
header("Content-type: image/png");  
header("Content-Type: application/octet-stream");  
header('Content-Disposition: attachment; filename="template_preview.png"');  
$filename = JPATH_SITE.'/templates/'.$this->template.'/template_preview.png';  
readfile($filename);  

我得到一个无效的图像。这甚至还不是我要提取动态图像的部分:/

有任何想法吗?

我可以从 Joomla 中找到的唯一其他线程在这里,并且不是完全相同的问题: 强制在 PHP 中下载文件 - 在 Joomla 框架内 还遵循了这里的一堆示例:http: //php.net/manual/en/function。头文件.php

提前谢谢大家!

#############################################

部分解决方案适用于静态图像(感谢@Chris!),但试图让动态图像工作

下载.php:

<?php
require_once("includes/variables_certificate.php");
defined('_JEXEC') or die;
// $filename = JPATH_SITE.'/templates/'.$this->template.'/template_preview.png'; //works
$filename = JURI::root().'index.php?tmpl=certgenerator&quizmod='.$quizmod; //Not working

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="certificate.png"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($filename));
ob_clean();
flush();
readfile($filename);
exit;

和 certgenerator.php:

defined('_JEXEC') or die;
require_once("includes/variables_certificate.php");

$image_file = JPATH_SITE.'templates/'.$this->template.'/images/certificate_page.png'; 
$my_img = imagecreatefrompng ($image_file);
$font_size_big = 24;
$text_color = imagecolorallocate( $my_img, 0, 255, 0 );
$font_file = JPATH_SITE.'templates/'.$this->template.'/FelipaRegular.ttf';  

imagefttext( $my_img, $font_size_big, 0, 55, 75, $text_color, $font_file, "why u no work"); //if commented out image displays but not font obviously, as it's written now it returns a blank page
imagestring( $my_img, 4, 30, 25, "works", $text_color ); //works but doesn't include font

header( "Content-type: image/png" );
imagepng( $my_img );

imagecolordeallocate( $text_color );
imagedestroy( $my_img );
4

1 回答 1

2

使用输出缓冲并将文件刷新到浏览器。可能还想确保defined('_JEXEC')返回 true。

<?php
require_once("includes/variables_certificate.php");
defined('_JEXEC') or die;
$filename = JPATH_SITE.'/templates/'.$this->template.'/template_preview.png';

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($filename));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($filename));
ob_clean();
flush();
readfile($filename);
exit;
于 2012-07-28T00:57:05.773 回答