本文整理匯總了PHP中Library::getFileObjectFromContents方法的典型用法代碼示例。如果您正苦於以下問題:PHP Library::getFileObjectFromContents方法的具體用法?PHP Library::getFileObjectFromContents怎麽用?PHP Library::getFileObjectFromContents使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Library
的用法示例。
在下文中一共展示了Library::getFileObjectFromContents方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: runImage
protected function runImage($action)
{
$this->width = $action['width'];
$this->height = $action['height'];
$fileobject = Library::getFileObjectFromContents($action['contents']);
include_once 'GIFSplit.php';
$gif = new GIFSplit($fileobject);
$this->frames = $gif->frames;
}
示例2: setFrames
protected function setFrames()
{
foreach ($this->background->frames as $framekey => $frame) {
if ($framekey === 0 || $frame['disposalmethod'] === '010' || $this->background->frames[$framekey - 1]['disposalmethod'] === '010') {
$resource = imagecreatetruecolor($this->background->width, $this->background->height);
if (isset($this->fill) === true) {
$backgroundindex = imagecolorallocate($resource, $this->fill['red'], $this->fill['green'], $this->fill['blue']);
imagefill($resource, 0, 0, $backgroundindex);
} else {
$backgroundindex = imagecolorallocatealpha($resource, 255, 255, 255, 127);
imagefill($resource, 0, 0, $backgroundindex);
imagecolortransparent($resource, $backgroundindex);
}
imagecopy($resource, $frame['resource'], 0, 0, 0, 0, $this->background->width, $this->background->height);
if (isset($this->layersresource) === true) {
imagecopy($resource, $this->layersresource, 0, 0, 0, 0, $this->background->width, $this->background->height);
}
} else {
$resource = imagecreatetruecolor($this->background->width, $this->background->height);
$transparentindex = imagecolorallocatealpha($resource, 255, 255, 255, 127);
imagefill($resource, 0, 0, $transparentindex);
imagecolortransparent($resource, $transparentindex);
imagecopy($resource, $frame['resource'], 0, 0, 0, 0, $this->background->width, $this->background->height);
if (isset($this->layersresource) === true) {
if (isset($this->layerscoordinates) === false) {
$this->setLayersCoordinates();
}
imagealphablending($resource, false);
foreach ($this->layerscoordinates as $layerscoordinate) {
imagesetpixel($resource, $layerscoordinate['x'], $layerscoordinate['y'], $transparentindex);
}
}
}
$this->frames[$framekey]['disposalmethod'] = $frame['disposalmethod'];
$this->frames[$framekey]['delaytime'] = $frame['delaytime'];
$contents = Library::getContentsFromGDResource($resource, 'gif');
$this->frames[$framekey]['fileobject'] = Library::getFileObjectFromContents($contents);
}
}