1

私はJoomlaとPHP開発に不慣れなので、ご容赦ください。

クイズの後にいくつかの簡単なデータを取得して、証明書の画像を描画します。ユーザーがリンクをクリックしてその画像をダウンロードする必要があります。

繰り返しになりますが、Joomla の外部では機能するものを取得できますが、内部では機能しません。動的に作成されたイメージにまだ到達しておらず、静的なものだけで問題が発生しています。つまり、ダウンロードされたファイルが無効です。

テンプレートプレビューを既存の画像として使用して、Joomlaの外で作業することができた1つのスクリプトを次に示します。

<?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フレームワーク内. header.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 に答える