以下に、uploadActionの関数を示します。このコードは機能します。画像を取得することができます。ただし、自動サイズ変更メカニズムをコードに統合したいと思います。このアップロードアクションでアップロードしているファイルを、サイズ変更機能を介して強制的に解析する方法を誰かに説明してもらえますか?
public function uploadAction()
{
$request = $this->getRequest();
$error = null;
if ($request->isPost()) {
if ($request->getParam('submit')) {
// Create upload object
$upload = new Zend_File_Transfer();
// Add our validators
$upload->addValidator('Size', false, 102400);
$upload->addValidator('Extension', false, 'jpg,png,gif');
// Set our destination
$upload->setDestination(APPLICATION_PATH . '/../public/images/blog/');
if(!$upload->receive()) {
$messages = $upload->getMessages();
foreach ($messages as $type => $message) {
switch($type) {
case 'fileExtensionFalse':
$this->view->error = 'File must be an image (jpg, gif, png)';
break;
case 'fileUploadErrorNoFile':
$this->view->error = 'Please select a file to upload';
break;
default:
$this->view->error = implode("/n", $messages);
break;
}
}
}
print_r($messages); die();
}
}
}
サイズ変更機能
public function fastimagecopyresampled (&$dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h, $quality = 4)
{
if (empty($src_image) || empty($dst_image)) { return false; }
if ($quality <= 1)
{
$temp = imagecreatetruecolor ($dst_w + 1, $dst_h + 1);
imagecopyresized ($temp, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w + 1, $dst_h + 1, $src_w, $src_h);
imagecopyresized ($dst_image, $temp, 0, 0, 0, 0, $dst_w, $dst_h, $dst_w, $dst_h);
imagedestroy ($temp);
}
elseif ($quality < 5 && (($dst_w * $quality) < $src_w || ($dst_h * $quality) < $src_h))
{
$tmp_w = $dst_w * $quality;
$tmp_h = $dst_h * $quality;
$temp = imagecreatetruecolor ($tmp_w + 1, $tmp_h + 1);
imagecopyresized ($temp, $src_image, 0, 0, $src_x, $src_y, $tmp_w + 1, $tmp_h + 1, $src_w, $src_h);
imagecopyresampled ($dst_image, $temp, $dst_x, $dst_y, 0, 0, $dst_w, $dst_h, $tmp_w, $tmp_h);
imagedestroy ($temp);
} else
{
imagecopyresampled ($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
}
return true;
}
アップロード時に画像のサイズや品質を変更できるようにしたいと思います。アップロードしたばかりのファイルにアクセスするための関数または呼び出しは何ですか、または保存する前にファイルを操作できますか?ファイルをアップロードするように、それを私の関数に通してから、そこからの出力を私の「保存された」ファイルにしますか?