WP_Image_Editor_GD::make_subsize()
Create an image sub-size and return the image meta data value for it.
Метод класса: WP_Image_Editor_GD{}
Хуков нет.
Возвращает
Массив|WP_Error
. The image data array for inclusion in the sizes array in the image meta, WP_Error object on error.
Использование
$WP_Image_Editor_GD = new WP_Image_Editor_GD(); $WP_Image_Editor_GD->make_subsize( $size_data );
- $size_data(массив) (обязательный)
Array of size data.
-
width(int)
The maximum width in pixels. -
height(int)
The maximum height in pixels. - crop(true|false|массив)
Whether to crop the image to exact dimensions.
-
Список изменений
С версии 5.3.0 | Введена. |
Код WP_Image_Editor_GD::make_subsize() WP Image Editor GD::make subsize WP 6.7.2
public function make_subsize( $size_data ) { if ( ! isset( $size_data['width'] ) && ! isset( $size_data['height'] ) ) { return new WP_Error( 'image_subsize_create_error', __( 'Cannot resize the image. Both width and height are not set.' ) ); } $orig_size = $this->size; if ( ! isset( $size_data['width'] ) ) { $size_data['width'] = null; } if ( ! isset( $size_data['height'] ) ) { $size_data['height'] = null; } if ( ! isset( $size_data['crop'] ) ) { $size_data['crop'] = false; } $resized = $this->_resize( $size_data['width'], $size_data['height'], $size_data['crop'] ); if ( is_wp_error( $resized ) ) { $saved = $resized; } else { $saved = $this->_save( $resized ); imagedestroy( $resized ); } $this->size = $orig_size; if ( ! is_wp_error( $saved ) ) { unset( $saved['path'] ); } return $saved; }