downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Imagick::setImageRedPrimary> <Imagick::setImageProfile
[edit] Last updated: Fri, 25 May 2012

view this page in

Imagick::setImageProperty

(PECL imagick 2.0.0)

Imagick::setImageProperty画像のプロパティを設定する

説明

bool Imagick::setImageProperty ( string $name , string $value )

指定した名前のプロパティを画像に設定します。 このメソッドは、ImageMagick バージョン 6.3.2 以降で Imagick をコンパイルした場合に使用可能です。

パラメータ

name

value

例1 Imagick::setImageProperty() の使用法

画像のプロパティを設定し、そして取得します。

<?php
$image 
= new Imagick();
$image->newImage(300200"black");

$image->setImageProperty('Exif:Make''Imagick');
echo 
$image->getImageProperty('Exif:Make');
?>

参考

返り値

成功した場合に TRUE を返します。



add a note add a note User Contributed Notes Imagick::setImageProperty
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites