* Fix signedness formatting mistakes - Upgrade to version 3.8.0RC2 * Corrected PHP_IMAGICK_EXTNUM - Upgrade to 3.8.0RC1 * Imagick::clutImage(...) now respects the images interpolate method. * You can now pass null to ImagickDraw::setStrokeDashArray() to reset the dash array. * Fixed memory leak in ImageKernel * Fixed compiling against PHP 8.4. * Fixed various reflection issues related to incorrect arginfo * function Imagick::clutImageWithInterpolate(Imagick $lookup_table, int $pixel_interpolate_method): bool {} * Constants Imagick::COMPRESSION_BC5, Imagick::COMPRESSION_BC7, Imagick::COMPRESSION_LERC, Imagick::DIRECTION_TOP_TO_BOTTOM, Imagick::ALPHACHANNEL_OFF_IF_OPAQUE - Remove upstreamed patches - imagick-fix-test316.patch - imagick-php_strtolower-php84.patch OBS-URL: https://build.opensuse.org/package/show/server:php:extensions/php-imagick?expand=0&rev=18
27 lines
772 B
Diff
27 lines
772 B
Diff
Index: imagick-3.4.3/imagick.c
|
|
===================================================================
|
|
--- imagick-3.4.3.orig/imagick.c
|
|
+++ imagick-3.4.3/imagick.c
|
|
@@ -3897,10 +3897,11 @@ PHP_MINIT_FUNCTION(imagick)
|
|
#endif
|
|
|
|
REGISTER_INI_ENTRIES();
|
|
-
|
|
+#if 0
|
|
if (!IMAGICK_G(skip_version_check)) {
|
|
checkImagickVersion();
|
|
}
|
|
+#endif
|
|
|
|
return SUCCESS;
|
|
}
|
|
@@ -3933,7 +3934,7 @@ PHP_MINFO_FUNCTION(imagick)
|
|
#else
|
|
php_info_print_table_row(2, "imagick classes", "Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator");
|
|
#endif
|
|
-#ifdef MagickVersion
|
|
+#if 0
|
|
php_info_print_table_row(2, "Imagick compiled with ImageMagick version", MagickVersion);
|
|
#endif
|
|
php_info_print_table_row(2, "Imagick using ImageMagick library version", MagickGetVersion(&version_number));
|