文字

ImagickPixelIterator::__construct

(PECL imagick 2.0.0)

ImagickPixelIterator::__constructThe ImagickPixelIterator constructor

说明

ImagickPixelIterator::__construct ( Imagick $wand )
Warning

本函数还未编写文档,仅有参数列表。

The ImagickPixelIterator constructor

返回值

成功时返回 TRUE

范例

Example #1 ImagickPixelIterator::construct()

<?php
function  construct ( $imagePath ) {
    
$imagick  = new \ Imagick ( realpath ( $imagePath ));
    
$imageIterator  = new \ ImagickPixelIterator ( $imagick );

    

    
foreach ( $imageIterator  as  $pixels ) { 
        

        
foreach ( $pixels  as  $column  =>  $pixel ) { 
            

            
if ( $column  2 ) {
                

                
$pixel -> setColor ( "rgba(0, 0, 0, 0)" );
            }
        }
        

        
$imageIterator -> syncIterator ();
    }

    
header ( "Content-Type: image/jpg" );
    echo 
$imagick ;
}

?>
上一篇: 下一篇: