私はcakephpアプリケーションを持っています。私のアプリはそのレイアウトにdefault.ctpを使用していることを理解しています。デフォルトのレイアウトでは、ヘッダーはhtml/textに設定されています。ヘッダータイプをimage/pngに変更したいのですが、どこで変更すればよいですか?誰かが私を助けてくれます
コード:
$this->layout=NULL;
$this->autoRender=false;
$this->RequestHandler->respondAs('image/jpg');
View Coding :(index.ctp)
<?php
session_start();
$text = rand(10000,99999);
$_SESSION["vercode"] = $text;
$height = 25;
$width = 65;
$image_p = imagecreate($width, $height);
$black = imagecolorallocate($image_p, 0, 0, 0);
$white = imagecolorallocate($image_p, 255, 255, 255);
$font_size = 14;
imagestring($image_p, $font_size, 5, 5, $text, $white);
imagejpeg($image_p, null, 80);
?>
Controller coding :
public function index()
{
$this->layout=false;
$this->response->type('png');
}
注:CakePHPバージョン2.3.0