當前位置: 首頁>>代碼示例>>PHP>>正文


PHP eZIEImageToolResize類代碼示例

本文整理匯總了PHP中eZIEImageToolResize的典型用法代碼示例。如果您正苦於以下問題:PHP eZIEImageToolResize類的具體用法?PHP eZIEImageToolResize怎麽用?PHP eZIEImageToolResize使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了eZIEImageToolResize類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: eZIEImagePreAction

<?php

/**
 * File containing the pixelate tool handler
 *
 * @copyright Copyright (C) eZ Systems AS.
 * @license For full copyright and license information view LICENSE file distributed with this source code.
 * @version //autogentag//
 * @package ezie
 */
$prepare_action = new eZIEImagePreAction();
$http = eZHTTPTool::instance();
$region = null;
if ($prepare_action->hasRegion()) {
    $region = $prepare_action->getRegion();
}
// retrieve image dimensions
$analyzer = new eZIEImageAnalyzer($prepare_action->getImagePath());
$imageconverter = new eZIEezcImageConverter(eZIEImageToolPixelate::filter($analyzer->data->width, $analyzer->data->height, $region));
$imageconverter->perform($prepare_action->getImagePath(), $prepare_action->getNewImagePath());
eZIEImageToolResize::doThumb($prepare_action->getNewImagePath(), $prepare_action->getNewThumbnailPath());
echo (string) $prepare_action;
eZExecution::cleanExit();
開發者ID:ezsystemstraining,項目名稱:ez54training,代碼行數:23,代碼來源:tool_pixelate.php

示例2: basename

$working_folder_path = eZSys::cacheDirectory() . '/public/ezie/' . $user->id() . "/{$attributeID}-{$version}";
$working_folder_absolute_path = eZSys::rootDir() . "/{$working_folder_path}";
$handler = eZClusterFileHandler::instance();
if (!$handler->fileExists($working_folder_absolute_path)) {
    // @todo DB Based handlers have no knowledge of folders !
    $res = eZDir::mkdir($working_folder_absolute_path, false, true);
}
// Copy the original file in the temp directory
// $work_folder/{history_id}-{file_name}
// (thumb: $working_folder/thumb_{history_id}-{file_name}
$file = "0-" . basename($image_path);
$thumb = "thumb-{$file}";
// @todo Manage possible errors
$handler->fileCopy($image_path, "{$working_folder_path}/{$file}");
// Creation of a thumbnail
eZIEImageToolResize::doThumb("{$working_folder_path}/{$file}", "{$working_folder_path}/{$thumb}");
// retrieve image dimensions
$ezcanalyzer = new eZIEImageAnalyzer("{$working_folder_path}/{$file}", false);
$object = new stdClass();
$imageURI = "{$working_folder_path}/{$file}";
eZURI::transformURI($imageURI, true);
$thumbnailURI = "{$working_folder_path}/{$thumb}";
eZURI::transformURI($thumbnailURI, true);
$moduleURI = 'ezie';
eZURI::transformURI($moduleURI, false);
$object->thumbnail_url = $thumbnailURI;
$object->image_url = $imageURI;
// the key is the folder where the working image is stored
$object->key = $user->id() . "/{$attributeID}-{$version}";
$object->image_id = (int) $attributeID;
$object->image_version = (int) $version;
開發者ID:heliopsis,項目名稱:ezie,代碼行數:31,代碼來源:prepare.php


注:本文中的eZIEImageToolResize類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。