略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: CairoImageSurface::getFormat

2024-05-03

CairoImageSurface::getFormat

(PECL cairo >= 0.1.0)

CairoImageSurface::getFormatGet the image format

说明

public CairoImageSurface::getFormat ( void ) : int

Retrieves the image format, as one of the CairoFormat defined

参数

此函数没有参数。

返回值

One of the CairoFormat enums

范例

Example #1 CairoImageSurface::getFormat() example

<?php

$surface 
= new CairoImageSurface(CairoFormat::ARGB325050);

var_dump($surface->getFormat()); // 0

$surface2 = new CairoImageSurface(CairoFormat::A85050);

var_dump($surface2->getFormat()); // 2

?>

以上例程的输出类似于:

int(0)
int(2)

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/cairoimagesurface.getformat.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3