Imagick::setImageVirtualPixelMethod

(PECL imagick 2.0.0)

Imagick::setImageVirtualPixelMethodSets the image virtual pixel method

Описание

bool Imagick::setImageVirtualPixelMethod ( int $method )

Sets the image virtual pixel method.

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

method

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

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

Коментарии

<?php

  $im 
= new \Imagick();

       
/* read image (914x784)*/
   
     
$im->readImage($_SERVER['DOCUMENT_ROOT']."/pathtoimage/".$inputfront);
       
       
$im->setImageBackgroundColor(new \ImagickPixel('transparent'));  /* sets backgound to none (transparent) */

       
$im->setImageVirtualPixelMethod(1); /* this is equal to -virtual-pixel background (in imagemagick) */
     

   /* Control points for the distortion */

       
$controlPoints = array( 0,0,
           
280,0,

           
994,0,
           
914,50,

           
994,862,
           
784,842,

           
0,862,
           
110,762);

       
/* Perform the distortion */
       
$im->distortImage(\Imagick::DISTORTION_PERSPECTIVE$controlPointstrue);

       
/* Ouput the image */
       
$output_front_distort="Projects/".$userid."/".$projectid."/distorted_book.png";
   
       
header("Content-Type: image/png");
       
$im->writeImage($_SERVER['DOCUMENT_ROOT']."/designerr/public/".$output_front_distort);

?>
2017-07-28 09:10:29
http://php5.kiev.ua/manual/ru/imagick.setimagevirtualpixelmethod.html

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