|
PHP5中文手册
Imagick::adaptiveResizeImage(No version information available, might be only in CVS) Imagick::adaptiveResizeImage — Adaptively resize image with data dependent triangulation 说明
bool Imagick::adaptiveResizeImage
( int $columns
, int $rows
)
Warning
本函数是实验性的。本函数的行为,包括函数名称以及其它任何关于本函数的文档可能会在没有通知的情况下随 PHP 以后的发布而改变。使用本函数风险自担。 Adaptively resize image with data-dependent triangulation. Avoids blurring across sharp color changes. Most useful when used to shrink images slightly to a slightly smaller "web size"; may not look good when a full-sized image is adaptively resized to a thumbnail. 参数
返回值Returns TRUE on success. 错误/异常Throws ImagickException on error. 范例
Example#1 Using Imagick::adaptiveResizeImage() Resize an image to a standard size for the web. This method works best when resizing to a size only slightly smaller than the previous image size.
<?php |