Imagick::setImageAlphaChannel

(Информация о версии неизвестна, возможно, только в SVN)

Imagick::setImageAlphaChannelSets image alpha channel

Описание

bool Imagick::setImageAlphaChannel ( int $mode )

Activate or deactivate image alpha channel. The mode is one of the Imagick::ALPHACHANNEL_* constants. Этот метод доступен, если Imagick был скомпилирован с версией ImageMagick 6.3.8 или старше.

Список параметров

mode

One of the Imagick::ALPHACHANNEL_* constants

Возвращаемые значения

В случае успешной работы возвращает TRUE.

Ошибки

Вызывает ImagickException при ошибке.

Смотрите также

Коментарии

If you're having trouble with white backgrounds turning black when converting PDFs to other formats, you need to use this function with Imagick::ALPHACHANNEL_REMOVE as the parameter (this is not currently on the constants page, but it exists in PHP 7.2) to remove the alpha channel.

<?php
$im
->setImageAlphaChannel(Imagick::ALPHACHANNEL_REMOVE );
?>
2020-03-25 17:09:23
http://php5.kiev.ua/manual/ru/imagick.setimagealphachannel.html

    Поддержать сайт на родительском проекте КГБ