mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
ext/gd: phpinfo() to be able to display libjpeg 10.0 support.
Fix #21431 Co-Authored-By: rainerjung close GH-21432
This commit is contained in:
4
NEWS
4
NEWS
@@ -5,6 +5,10 @@ PHP NEWS
|
|||||||
- Bz2:
|
- Bz2:
|
||||||
. Fix truncation of total output size causing erroneous errors. (ndossche)
|
. Fix truncation of total output size causing erroneous errors. (ndossche)
|
||||||
|
|
||||||
|
- GD:
|
||||||
|
. Fixed bug GH-21431 (phpinfo() to display libJPEG 10.0 support).
|
||||||
|
(David Carlier)
|
||||||
|
|
||||||
- Opcache:
|
- Opcache:
|
||||||
. Fixed bug GH-20838 (JIT compiler produces wrong arithmetic results).
|
. Fixed bug GH-20838 (JIT compiler produces wrong arithmetic results).
|
||||||
(Dmitry, iliaal)
|
(Dmitry, iliaal)
|
||||||
|
|||||||
@@ -125,6 +125,10 @@ const char * gdJpegGetVersionString()
|
|||||||
return "9 compatible";
|
return "9 compatible";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 100:
|
||||||
|
return "10 compatible";
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return "unknown";
|
return "unknown";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user