本文整理汇总了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'];
}