Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16235 программистов и 1779 роботов. Сейчас ищут 1762 программиста ...
CairoImageSurface::getFormat - Get the image format
Вернуться к: CairoImageSurface
CairoImageSurface::getFormat
(PECL cairo >= 0.1.0)
CairoImageSurface::getFormat — Get the image format
Описание
public int CairoImageSurface::getFormat
( void
)
Retrieves the image format, as one of the CairoFormat defined
Список параметров
У этой функции нет параметров.
Возвращаемые значения
One of the CairoFormat enums
Примеры
Пример #1 CairoImageSurface::getFormat() example
<?php
$surface = new CairoImageSurface(CairoFormat::ARGB32, 50, 50);
var_dump($surface->getFormat()); // 0
$surface2 = new CairoImageSurface(CairoFormat::A8, 50, 50);
var_dump($surface2->getFormat()); // 2
?>
Результатом выполнения данного примера будет что-то подобное:
int(0) int(2)
Смотрите также
- CairoImageSurface::getHeight() - Retrieves the height of the CairoImageSurface
- CairoImageSurface::getWidth() - Retrieves the width of the CairoImageSurface
Вернуться к: CairoImageSurface