Changeset 55843 for trunk/src/wp-includes/media.php
- Timestamp:
- 05/20/2023 10:17:57 AM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r55827 r55843 3805 3805 * 3806 3806 * @param resource|GdImage|false $image A value to check the type for. 3807 * @return bool True if $image is either a GD image resource orGdImage instance,3807 * @return bool True if `$image` is either a GD image resource or a GdImage instance, 3808 3808 * false otherwise. 3809 3809 */ … … 3812 3812 || is_resource( $image ) && 'gd' === get_resource_type( $image ) 3813 3813 ) { 3814 3815 3814 return true; 3816 3815 } … … 3820 3819 3821 3820 /** 3822 * Creates new GD image resource with transparency support.3821 * Creates a new GD image resource with transparency support. 3823 3822 * 3824 3823 * @todo Deprecate if possible.
Note: See TracChangeset
for help on using the changeset viewer.