本文整理匯總了PHP中Library::getResizeArgs方法的典型用法代碼示例。如果您正苦於以下問題:PHP Library::getResizeArgs方法的具體用法?PHP Library::getResizeArgs怎麽用?PHP Library::getResizeArgs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Library
的用法示例。
在下文中一共展示了Library::getResizeArgs方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: RunResize
protected function RunResize($action)
{
$args = Library::getResizeArgs($this->width, $this->height, $action['width'], $action['height'], $action['option']);
if ($args === false) {
return;
}
foreach ($this->frames as &$frame) {
$newimage = imagecreatetruecolor($args['dst_w'], $args['dst_h']);
$transparentindex = imagecolorallocatealpha($newimage, 255, 255, 255, 127);
imagefill($newimage, 0, 0, $transparentindex);
imagecopyresized($newimage, $frame['resource'], $args['dst_x'], $args['dst_y'], $args['src_x'], $args['src_y'], $args['dst_w'], $args['dst_h'], $args['src_w'], $args['src_h']);
imagedestroy($frame['resource']);
$frame['resource'] = $newimage;
}
$this->width = $args['dst_w'];
$this->height = $args['dst_h'];
}
示例2: runResize
protected function runResize($action)
{
$args = Library::getResizeArgs($this->width, $this->height, $action['width'], $action['height'], $action['option']);
if ($args === false) {
return;
}
$newimage = imagecreatetruecolor($args['dst_w'], $args['dst_h']);
if ($this->format === 'png') {
imagealphablending($newimage, false);
imagesavealpha($newimage, true);
$transparentindex = imagecolorallocatealpha($newimage, 255, 255, 255, 127);
imagefill($newimage, 0, 0, $transparentindex);
} else {
if ($this->format === 'gif') {
$transparentindex = imagecolorallocatealpha($newimage, 255, 255, 255, 127);
imagefill($newimage, 0, 0, $transparentindex);
}
}
imagecopyresampled($newimage, $this->resource, $args['dst_x'], $args['dst_y'], $args['src_x'], $args['src_y'], $args['dst_w'], $args['dst_h'], $args['src_w'], $args['src_h']);
imagedestroy($this->resource);
$this->resource = $newimage;
$this->width = $args['dst_w'];
$this->height = $args['dst_h'];
}