略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Imagick::getSize

2024-04-28

Imagick::getSize

(PECL imagick 2, PECL imagick 3)

Imagick::getSizeReturns the size associated with the Imagick object

说明

public Imagick::getSize(): array

Get the size in pixels associated with the Imagick object, previously set by Imagick::setSize().

注意:

This method just returns the size that was set using Imagick::setSize(). If you want to get the actual width / height of the image, use Imagick::getImageWidth() and Imagick::getImageHeight().

参数

此函数没有参数。

返回值

Returns the size associated with the Imagick object as an array with the keys "columns" and "rows".

范例

示例 #1 Getting the size of a raw RGB image set at 200x400, after scaling to 400x800 (compared to width / height)

<?php
//Set size first and then load the raw image
$img = new Imagick();
$img->setSize(200400);
$img->readImage("image.rgb");

$img->scaleImage(400800);

$size $img->getSize();
print_r($size);

echo 
$img->getImageWidth()."x".$img->getImageHeight();
?>

以上例程会输出:

Array
(
    [columns] => 200
    [rows] => 400
)
400x800
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/imagick.getsize.php

冷却塔厂家 广告
中文GPT4.0无需注册 广告
北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3