Deprecated: Optional parameter $keys declared before required parameter $cms_id is implicitly treated as a required parameter in /home/www/dev/work/class/blog/CmsKey.php on line 75

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$title is deprecated in /home/www/dev/work/website/lvesu/class/controller/blog/php.php on line 28

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$outlink is deprecated in /home/www/dev/work/website/lvesu/template/blog/cms/php.manual.tpl on line 2

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$status is deprecated in /home/www/dev/work/website/lvesu/template/blog/index.head.php on line 2
PHP - Manual: Imagick::getCompression - 互联网笔记

略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Imagick::getCompression

2025-04-26

Imagick::getCompression

(PECL imagick 2, PECL imagick 3)

Imagick::getCompressionGets the object compression type

说明

public Imagick::getCompression(): int

Gets the object compression type.

参数

此函数没有参数。

返回值

Returns the compression constant

添加备注

用户贡献的备注 1 note

up
2
holdoffhunger at gmail dot com
12 years ago
The ImageMagick PHP function for getCompression returns an integer representing the value associated with the ImageMagick Compression constant. You'll get numbers from 0 to 13, each representing a different particular type of compression. If printed out, the ImageMagick constants for compression come out as...

imagick::COMPRESSION_UNDEFINED 0
imagick::COMPRESSION_NO 1
imagick::COMPRESSION_BZIP 2
imagick::COMPRESSION_DXT1 3
imagick::COMPRESSION_DXT3 4
imagick::COMPRESSION_DXT5 5
imagick::COMPRESSION_FAX 6
imagick::COMPRESSION_GROUP4 7
imagick::COMPRESSION_JPEG 8
imagick::COMPRESSION_JPEG2000 9
imagick::COMPRESSION_LOSSLESSJPEG 10
imagick::COMPRESSION_LZW 11
imagick::COMPRESSION_RLE 12
imagick::COMPRESSION_ZIP 13

Every time I have used this, whether on a jpeg image, a png image, a gif image, or a bmp image, it has always returned '0' as a value. There's a good chance that this is simply a value that is set by means of get/set, as opposed to actually producing values for a given image.

Some sample code :

<?php

// Author: holdoffhunger@gmail.com

// Imagick Type
// ---------------------------------------------

$imagick_type = new Imagick();

// Open File
// ---------------------------------------------

$file_to_grab = "image_workshop_directory/test.bmp";

$file_handle_for_viewing_image_file = fopen($file_to_grab, 'a+');

// Grab File
// ---------------------------------------------

$imagick_type->readImageFile($file_handle_for_viewing_image_file);

// Get Quantum Range
// ---------------------------------------------

$imagick_type_compression = $imagick_type->getCompression();

// Print Results
// ---------------------------------------------

print("<pre>");
print(
$imagick_type_compression);
print(
"</pre>");

?>

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

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3