首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Imagick::transformImage

(PECL imagick 2.0.0)

Imagick::transformImage — Convenience method for setting crop size and the image geometry

Description

代码语言:javascript
复制
Imagick Imagick::transformImage ( string $crop , string $geometry )

A convenience method for setting crop size and the image geometry from strings. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer.

Parameters

crop

A crop geometry string. This geometry defines a subregion of the image to crop.

geometry

An image geometry string. This geometry defines the final size of the image.

Return Values

Returns an Imagick object containing the transformed image.

Examples

Example #1 Using Imagick::transformImage():

The example creates a 100x100 black image.

代码语言:javascript
复制
<?php
$image?=?new?Imagick();
$image->newImage(300,?200,?"black");
$new_image?=?$image->transformImage("100x100",?"100x100");
$new_image->writeImage('test_out.jpg');
?>

See Also

  • Imagick::cropImage() - Extracts a region of the image
  • Imagick::resizeImage() - Scales an image
  • Imagick::thumbnailImage() - Changes the size of an image

← Imagick::__toString

Imagick::transformImageColorspace →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com