PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Page
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cloudinary\Transformation; use Cloudinary\ClassUtils; /** * Represents one or more pages of a paged document, such as a PDF or TIFF file. * * **Learn more**: * <a href=https://cloudinary.com/documentation/paged_and_layered_media#delivering_content_from_pdf_files * target="_blank">Delivering content from PDF files</a> * * @api */ abstract class Extract { /** * Gets selected pages of a PDF/DOC. * * @param Page|PageQualifier|int ...$pages * * @return Page * * @internal */ public static function getPage(...$pages) { return ClassUtils::forceVarArgsInstance($pages, Page::class); } /** * Gets selected frame of an animated image. * * @param Frame|PageQualifier|int ...$frames * * @return Page */ public static function getFrame(...$frames) { return static::getPage($frames); } }
[-] LayerName.php
[edit]
[-] PageAllTrait.php
[edit]
[-] PageIndexTrait.php
[edit]
[+]
..
[-] PageNameTrait.php
[edit]
[-] Extract.php
[edit]
[-] PsdTools.php
[edit]
[-] PsdLayer.php
[edit]
[-] SmartObject.php
[edit]
[-] SmartObjectQualifier.php
[edit]
[-] PageNamesTrait.php
[edit]
[-] Frame.php
[edit]
[-] PageQualifierTrait.php
[edit]
[-] PageLayerNameTrait.php
[edit]
[-] Page.php
[edit]
[-] PageQualifier.php
[edit]
[-] BasePageAction.php
[edit]
[-] PageLayerNamesTrait.php
[edit]
[-] PageRangeTrait.php
[edit]
[-] PageNumberTrait.php
[edit]
[-] SmartObjectName.php
[edit]
[-] PageValue.php
[edit]
[-] ClippingPath.php
[edit]