当前位置: 首页>>代码示例>>PHP>>正文


PHP ImagickDraw::affine方法代码示例

本文整理汇总了PHP中ImagickDraw::affine方法的典型用法代码示例。如果您正苦于以下问题:PHP ImagickDraw::affine方法的具体用法?PHP ImagickDraw::affine怎么用?PHP ImagickDraw::affine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ImagickDraw的用法示例。


在下文中一共展示了ImagickDraw::affine方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: affine

function affine($strokeColor, $fillColor, $backgroundColor)
{
    $draw = new \ImagickDraw();
    $draw->setStrokeWidth(1);
    $draw->setStrokeOpacity(1);
    $draw->setStrokeColor($strokeColor);
    $draw->setFillColor($fillColor);
    $draw->setStrokeWidth(2);
    $PI = 3.141592653589794;
    $angle = 60 * $PI / 360;
    //Scale the drawing co-ordinates.
    $affineScale = array("sx" => 1.75, "sy" => 1.75, "rx" => 0, "ry" => 0, "tx" => 0, "ty" => 0);
    //Shear the drawing co-ordinates.
    $affineShear = array("sx" => 1, "sy" => 1, "rx" => sin($angle), "ry" => -sin($angle), "tx" => 0, "ty" => 0);
    //Rotate the drawing co-ordinates. The shear affine matrix
    //produces incorrectly scaled drawings.
    $affineRotate = array("sx" => cos($angle), "sy" => cos($angle), "rx" => sin($angle), "ry" => -sin($angle), "tx" => 0, "ty" => 0);
    //Translate (offset) the drawing
    $affineTranslate = array("sx" => 1, "sy" => 1, "rx" => 0, "ry" => 0, "tx" => 30, "ty" => 30);
    //The identiy affine matrix
    $affineIdentity = array("sx" => 1, "sy" => 1, "rx" => 0, "ry" => 0, "tx" => 0, "ty" => 0);
    $examples = [$affineScale, $affineShear, $affineRotate, $affineTranslate, $affineIdentity];
    $count = 0;
    foreach ($examples as $example) {
        $draw->push();
        $draw->translate($count % 2 * 250, intval($count / 2) * 250);
        $draw->translate(100, 100);
        $draw->affine($example);
        $draw->rectangle(-50, -50, 50, 50);
        $draw->pop();
        $count++;
    }
    //Create an image object which the draw commands can be rendered into
    $image = new \Imagick();
    $image->newImage(500, 750, $backgroundColor);
    $image->setImageFormat("png");
    //Render the draw commands in the ImagickDraw object
    //into the image.
    $image->drawImage($draw);
    //Send the image to the browser
    header("Content-Type: image/png");
    echo $image->getImageBlob();
}
开发者ID:sdmmember,项目名称:Imagick-demos,代码行数:43,代码来源:functions.php

示例2: affineTransformImage

function affineTransformImage($imagePath)
{
    $imagick = new \Imagick(realpath($imagePath));
    $draw = new \ImagickDraw();
    $angle = 40;
    $affineRotate = array("sx" => cos($angle), "sy" => cos($angle), "rx" => sin($angle), "ry" => -sin($angle), "tx" => 0, "ty" => 0);
    $draw->affine($affineRotate);
    $imagick->affineTransformImage($draw);
    header("Content-Type: image/jpg");
    echo $imagick->getImageBlob();
}
开发者ID:atawsports2,项目名称:Imagick-demos,代码行数:11,代码来源:functions.php

示例3: array

<?php

$affine_matrix = array('sx' => 1, 'rx' => 0, 'ry' => 0, 'sy' => 1, 'tx' => 0, 'ty' => 0);
$draw = new ImagickDraw();
$draw->affine($affine_matrix);
echo "PASS\n";
unset($affine_matrix['tx']);
try {
    $draw->affine($affine_matrix);
} catch (Exception $ex) {
    echo "PASS\n";
}
try {
    $draw->affine(array());
} catch (Exception $ex) {
    echo "PASS\n";
}
开发者ID:badlamer,项目名称:hhvm,代码行数:17,代码来源:draw_affine.php


注:本文中的ImagickDraw::affine方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。