2007-05-25 09:16:21 +02:00
|
|
|
<?php
|
2007-11-03 19:33:19 +01:00
|
|
|
/**
|
|
|
|
* File contains all the administration image manipulation functions.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-09-17 02:40:10 +02:00
|
|
|
* @subpackage Administration
|
2007-11-03 19:33:19 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2008-09-17 02:40:10 +02:00
|
|
|
* Crop an Image to a given size.
|
2007-11-03 19:33:19 +01:00
|
|
|
*
|
2008-10-10 20:21:16 +02:00
|
|
|
* @since 2.1.0
|
2007-11-03 19:33:19 +01:00
|
|
|
*
|
2012-04-12 23:02:24 +02:00
|
|
|
* @param string|int $src The source file or Attachment ID.
|
2008-09-17 02:40:10 +02:00
|
|
|
* @param int $src_x The start x position to crop from.
|
|
|
|
* @param int $src_y The start y position to crop from.
|
|
|
|
* @param int $src_w The width to crop.
|
|
|
|
* @param int $src_h The height to crop.
|
|
|
|
* @param int $dst_w The destination width.
|
|
|
|
* @param int $dst_h The destination height.
|
|
|
|
* @param int $src_abs Optional. If the source crop points are absolute.
|
|
|
|
* @param string $dst_file Optional. The destination file to write to.
|
2013-02-02 03:01:59 +01:00
|
|
|
* @return string|WP_Error New filepath on success, WP_Error on failure.
|
2007-11-03 19:33:19 +01:00
|
|
|
*/
|
2012-11-10 21:42:27 +01:00
|
|
|
function wp_crop_image( $src, $src_x, $src_y, $src_w, $src_h, $dst_w, $dst_h, $src_abs = false, $dst_file = false ) {
|
|
|
|
$src_file = $src;
|
2020-01-18 01:54:04 +01:00
|
|
|
if ( is_numeric( $src ) ) { // Handle int as attachment ID.
|
2012-11-10 21:42:27 +01:00
|
|
|
$src_file = get_attached_file( $src );
|
|
|
|
|
2012-04-06 22:47:24 +02:00
|
|
|
if ( ! file_exists( $src_file ) ) {
|
2016-03-12 13:39:27 +01:00
|
|
|
// If the file doesn't exist, attempt a URL fopen on the src link.
|
2012-04-06 22:47:24 +02:00
|
|
|
// This can occur with certain file replication plugins.
|
2012-11-13 01:03:55 +01:00
|
|
|
$src = _load_image_to_edit_path( $src, 'full' );
|
|
|
|
} else {
|
|
|
|
$src = $src_file;
|
2012-04-06 22:47:24 +02:00
|
|
|
}
|
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2012-11-22 10:52:16 +01:00
|
|
|
$editor = wp_get_image_editor( $src );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_wp_error( $editor ) ) {
|
2012-10-11 20:59:41 +02:00
|
|
|
return $editor;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2012-10-11 20:59:41 +02:00
|
|
|
$src = $editor->crop( $src_x, $src_y, $src_w, $src_h, $dst_w, $dst_h, $src_abs );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_wp_error( $src ) ) {
|
2012-10-01 22:59:06 +02:00
|
|
|
return $src;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $dst_file ) {
|
2019-03-01 21:58:52 +01:00
|
|
|
$dst_file = str_replace( wp_basename( $src_file ), 'cropped-' . wp_basename( $src_file ), $src_file );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
/*
|
|
|
|
* The directory containing the original file may no longer exist when
|
|
|
|
* using a replication plugin.
|
|
|
|
*/
|
2012-04-06 22:47:24 +02:00
|
|
|
wp_mkdir_p( dirname( $dst_file ) );
|
|
|
|
|
2019-03-01 21:58:52 +01:00
|
|
|
$dst_file = dirname( $dst_file ) . '/' . wp_unique_filename( dirname( $dst_file ), wp_basename( $dst_file ) );
|
2012-05-14 19:53:03 +02:00
|
|
|
|
2012-10-01 22:59:06 +02:00
|
|
|
$result = $editor->save( $dst_file );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_wp_error( $result ) ) {
|
2013-02-02 03:01:59 +01:00
|
|
|
return $result;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-02 03:01:59 +01:00
|
|
|
|
2012-10-01 22:59:06 +02:00
|
|
|
return $dst_file;
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2007-11-03 19:33:19 +01:00
|
|
|
/**
|
2019-06-15 03:02:52 +02:00
|
|
|
* Compare the existing image sub-sizes (as saved in the attachment meta)
|
|
|
|
* to the currently registered image sub-sizes, and return the difference.
|
2007-11-03 19:33:19 +01:00
|
|
|
*
|
2019-06-15 03:02:52 +02:00
|
|
|
* Registered sub-sizes that are larger than the image are skipped.
|
2008-09-17 02:40:10 +02:00
|
|
|
*
|
2019-06-15 03:02:52 +02:00
|
|
|
* @since 5.3.0
|
|
|
|
*
|
|
|
|
* @param int $attachment_id The image attachment post ID.
|
|
|
|
* @return array An array of the image sub-sizes that are currently defined but don't exist for this image.
|
2007-11-03 19:33:19 +01:00
|
|
|
*/
|
2019-06-15 03:02:52 +02:00
|
|
|
function wp_get_missing_image_subsizes( $attachment_id ) {
|
|
|
|
if ( ! wp_attachment_is_image( $attachment_id ) ) {
|
|
|
|
return array();
|
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
$registered_sizes = wp_get_registered_image_subsizes();
|
|
|
|
$image_meta = wp_get_attachment_metadata( $attachment_id );
|
Media: Add support for rendering PDF thumbnails.
When support for PDFs is available, on upload,
render 'Thumbnail', 'Medium', 'Large', and 'Full' sizes of
the first page, and save them in attachment meta.
Use these renders within Add Media, Media Gallery and List views,
Attachment Details, Post/Attachment Edit screens, and Attachment pages.
Support available by default via Imagick -> ImageMagick -> Ghostscript,
but can be provided by any `WP_Image_Editor` that supports PDFs.
Props adamsilverstein, azaozz, celloexpressions, desrosj, dglingren, ericlewis, ipstenu, joemcgill, joyously, markoheijnen, melchoyce, mikeschroder, tomauger.
Fixes #31050.
Built from https://develop.svn.wordpress.org/trunk@38949
git-svn-id: http://core.svn.wordpress.org/trunk@38892 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 09:28:32 +02:00
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
// Meta error?
|
|
|
|
if ( empty( $image_meta ) ) {
|
2019-06-15 03:32:53 +02:00
|
|
|
return $registered_sizes;
|
2019-06-15 03:02:52 +02:00
|
|
|
}
|
|
|
|
|
2019-11-07 19:51:02 +01:00
|
|
|
// Use the originally uploaded image dimensions as full_width and full_height.
|
|
|
|
if ( ! empty( $image_meta['original_image'] ) ) {
|
|
|
|
$image_file = wp_get_original_image_path( $attachment_id );
|
|
|
|
$imagesize = @getimagesize( $image_file );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! empty( $imagesize ) ) {
|
|
|
|
$full_width = $imagesize[0];
|
|
|
|
$full_height = $imagesize[1];
|
|
|
|
} else {
|
|
|
|
$full_width = (int) $image_meta['width'];
|
|
|
|
$full_height = (int) $image_meta['height'];
|
|
|
|
}
|
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
$possible_sizes = array();
|
|
|
|
|
|
|
|
// Skip registered sizes that are too large for the uploaded image.
|
|
|
|
foreach ( $registered_sizes as $size_name => $size_data ) {
|
|
|
|
if ( image_resize_dimensions( $full_width, $full_height, $size_data['width'], $size_data['height'], $size_data['crop'] ) ) {
|
|
|
|
$possible_sizes[ $size_name ] = $size_data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( empty( $image_meta['sizes'] ) ) {
|
|
|
|
$image_meta['sizes'] = array();
|
|
|
|
}
|
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
/*
|
|
|
|
* Remove sizes that already exist. Only checks for matching "size names".
|
|
|
|
* It is possible that the dimensions for a particular size name have changed.
|
|
|
|
* For example the user has changed the values on the Settings -> Media screen.
|
|
|
|
* However we keep the old sub-sizes with the previous dimensions
|
|
|
|
* as the image may have been used in an older post.
|
|
|
|
*/
|
2019-06-15 03:02:52 +02:00
|
|
|
$missing_sizes = array_diff_key( $possible_sizes, $image_meta['sizes'] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the array of missing image sub-sizes for an uploaded image.
|
|
|
|
*
|
|
|
|
* @since 5.3.0
|
|
|
|
*
|
|
|
|
* @param array $missing_sizes Array with the missing image sub-sizes.
|
|
|
|
* @param array $image_meta The image meta data.
|
|
|
|
* @param int $attachment_id The image attachment post ID.
|
|
|
|
*/
|
|
|
|
return apply_filters( 'wp_get_missing_image_subsizes', $missing_sizes, $image_meta, $attachment_id );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If any of the currently registered image sub-sizes are missing,
|
|
|
|
* create them and update the image meta data.
|
|
|
|
*
|
|
|
|
* @since 5.3.0
|
|
|
|
*
|
|
|
|
* @param int $attachment_id The image attachment post ID.
|
2019-09-04 03:11:54 +02:00
|
|
|
* @return array|WP_Error The updated image meta data array or WP_Error object
|
|
|
|
* if both the image meta and the attached file are missing.
|
2019-06-15 03:02:52 +02:00
|
|
|
*/
|
|
|
|
function wp_update_image_subsizes( $attachment_id ) {
|
2019-09-04 03:11:54 +02:00
|
|
|
$image_meta = wp_get_attachment_metadata( $attachment_id );
|
2019-09-07 03:07:55 +02:00
|
|
|
$image_file = wp_get_original_image_path( $attachment_id );
|
2019-09-04 03:11:54 +02:00
|
|
|
|
|
|
|
if ( empty( $image_meta ) || ! is_array( $image_meta ) ) {
|
|
|
|
// Previously failed upload?
|
|
|
|
// If there is an uploaded file, make all sub-sizes and generate all of the attachment meta.
|
|
|
|
if ( ! empty( $image_file ) ) {
|
2019-10-30 22:10:04 +01:00
|
|
|
$image_meta = wp_create_image_subsizes( $image_file, $attachment_id );
|
2019-09-04 03:11:54 +02:00
|
|
|
} else {
|
|
|
|
return new WP_Error( 'invalid_attachment', __( 'The attached file cannot be found.' ) );
|
|
|
|
}
|
2019-10-30 22:10:04 +01:00
|
|
|
} else {
|
|
|
|
$missing_sizes = wp_get_missing_image_subsizes( $attachment_id );
|
2019-09-04 03:11:54 +02:00
|
|
|
|
2019-10-30 22:10:04 +01:00
|
|
|
if ( empty( $missing_sizes ) ) {
|
|
|
|
return $image_meta;
|
|
|
|
}
|
2019-06-15 03:02:52 +02:00
|
|
|
|
2019-10-30 22:10:04 +01:00
|
|
|
// This also updates the image meta.
|
|
|
|
$image_meta = _wp_make_subsizes( $missing_sizes, $image_file, $image_meta, $attachment_id );
|
2019-06-15 03:02:52 +02:00
|
|
|
}
|
|
|
|
|
2019-10-30 22:10:04 +01:00
|
|
|
/** This filter is documented in wp-admin/includes/image.php */
|
|
|
|
$image_meta = apply_filters( 'wp_generate_attachment_metadata', $image_meta, $attachment_id, 'update' );
|
|
|
|
|
|
|
|
// Save the updated metadata.
|
|
|
|
wp_update_attachment_metadata( $attachment_id, $image_meta );
|
|
|
|
|
|
|
|
return $image_meta;
|
2019-06-15 03:02:52 +02:00
|
|
|
}
|
|
|
|
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
/**
|
|
|
|
* Updates the attached file and image meta data when the original image was edited.
|
|
|
|
*
|
|
|
|
* @since 5.3.0
|
|
|
|
* @access private
|
|
|
|
*
|
2019-10-01 03:19:57 +02:00
|
|
|
* @param array $saved_data The data returned from WP_Image_Editor after successfully saving an image.
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
* @param string $original_file Path to the original file.
|
|
|
|
* @param array $image_meta The image meta data.
|
|
|
|
* @param int $attachment_id The attachment post ID.
|
|
|
|
* @return array The updated image meta data.
|
|
|
|
*/
|
|
|
|
function _wp_image_meta_replace_original( $saved_data, $original_file, $image_meta, $attachment_id ) {
|
|
|
|
$new_file = $saved_data['path'];
|
|
|
|
|
|
|
|
// Update the attached file meta.
|
|
|
|
update_attached_file( $attachment_id, $new_file );
|
|
|
|
|
|
|
|
// Width and height of the new image.
|
|
|
|
$image_meta['width'] = $saved_data['width'];
|
|
|
|
$image_meta['height'] = $saved_data['height'];
|
|
|
|
|
|
|
|
// Make the file path relative to the upload dir.
|
|
|
|
$image_meta['file'] = _wp_relative_upload_path( $new_file );
|
|
|
|
|
|
|
|
// Store the original image file name in image_meta.
|
|
|
|
$image_meta['original_image'] = wp_basename( $original_file );
|
|
|
|
|
|
|
|
return $image_meta;
|
|
|
|
}
|
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
/**
|
|
|
|
* Creates image sub-sizes, adds the new data to the image meta `sizes` array, and updates the image metadata.
|
|
|
|
*
|
|
|
|
* Intended for use after an image is uploaded. Saves/updates the image metadata after each
|
|
|
|
* sub-size is created. If there was an error, it is added to the returned image metadata array.
|
|
|
|
*
|
|
|
|
* @since 5.3.0
|
|
|
|
*
|
|
|
|
* @param string $file Full path to the image file.
|
|
|
|
* @param int $attachment_id Attachment Id to process.
|
2019-09-07 03:07:55 +02:00
|
|
|
* @return array The image attachment meta data.
|
2019-06-15 03:02:52 +02:00
|
|
|
*/
|
2019-09-07 03:07:55 +02:00
|
|
|
function wp_create_image_subsizes( $file, $attachment_id ) {
|
|
|
|
$imagesize = @getimagesize( $file );
|
|
|
|
|
|
|
|
if ( empty( $imagesize ) ) {
|
|
|
|
// File is not an image.
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
// Default image meta.
|
2019-09-07 03:07:55 +02:00
|
|
|
$image_meta = array(
|
|
|
|
'width' => $imagesize[0],
|
|
|
|
'height' => $imagesize[1],
|
|
|
|
'file' => _wp_relative_upload_path( $file ),
|
|
|
|
'sizes' => array(),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Fetch additional metadata from EXIF/IPTC.
|
|
|
|
$exif_meta = wp_read_image_metadata( $file );
|
|
|
|
|
|
|
|
if ( $exif_meta ) {
|
|
|
|
$image_meta['image_meta'] = $exif_meta;
|
|
|
|
}
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
// Do not scale (large) PNG images. May result in sub-sizes that have greater file size than the original. See #48736.
|
2020-02-09 17:55:09 +01:00
|
|
|
if ( 'image/png' !== $imagesize['mime'] ) {
|
2019-12-01 19:26:05 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the "BIG image" threshold value.
|
|
|
|
*
|
|
|
|
* If the original image width or height is above the threshold, it will be scaled down. The threshold is
|
|
|
|
* used as max width and max height. The scaled down image will be used as the largest available size, including
|
|
|
|
* the `_wp_attached_file` post meta value.
|
|
|
|
*
|
|
|
|
* Returning `false` from the filter callback will disable the scaling.
|
|
|
|
*
|
|
|
|
* @since 5.3.0
|
|
|
|
*
|
|
|
|
* @param int $threshold The threshold value in pixels. Default 2560.
|
|
|
|
* @param array $imagesize {
|
|
|
|
* Indexed array of the image width and height in pixels.
|
|
|
|
*
|
|
|
|
* @type int $0 The image width.
|
|
|
|
* @type int $1 The image height.
|
|
|
|
* }
|
|
|
|
* @param string $file Full path to the uploaded image file.
|
|
|
|
* @param int $attachment_id Attachment post ID.
|
|
|
|
*/
|
|
|
|
$threshold = (int) apply_filters( 'big_image_size_threshold', 2560, $imagesize, $file, $attachment_id );
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// If the original image's dimensions are over the threshold,
|
|
|
|
// scale the image and use it as the "full" size.
|
2019-12-01 19:26:05 +01:00
|
|
|
if ( $threshold && ( $image_meta['width'] > $threshold || $image_meta['height'] > $threshold ) ) {
|
|
|
|
$editor = wp_get_image_editor( $file );
|
|
|
|
|
|
|
|
if ( is_wp_error( $editor ) ) {
|
|
|
|
// This image cannot be edited.
|
|
|
|
return $image_meta;
|
|
|
|
}
|
2019-09-07 03:07:55 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Resize the image.
|
2019-12-01 19:26:05 +01:00
|
|
|
$resized = $editor->resize( $threshold, $threshold );
|
|
|
|
$rotated = null;
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
// If there is EXIF data, rotate according to EXIF Orientation.
|
|
|
|
if ( ! is_wp_error( $resized ) && is_array( $exif_meta ) ) {
|
|
|
|
$resized = $editor->maybe_exif_rotate();
|
|
|
|
$rotated = $resized;
|
|
|
|
}
|
2019-09-07 03:07:55 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
if ( ! is_wp_error( $resized ) ) {
|
|
|
|
// Append "-scaled" to the image file name. It will look like "my_image-scaled.jpg".
|
|
|
|
// This doesn't affect the sub-sizes names as they are generated from the original image (for best quality).
|
|
|
|
$saved = $editor->save( $editor->generate_filename( 'scaled' ) );
|
2019-09-07 03:07:55 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
if ( ! is_wp_error( $saved ) ) {
|
|
|
|
$image_meta = _wp_image_meta_replace_original( $saved, $file, $image_meta, $attachment_id );
|
2019-09-07 03:07:55 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
// If the image was rotated update the stored EXIF data.
|
|
|
|
if ( true === $rotated && ! empty( $image_meta['image_meta']['orientation'] ) ) {
|
|
|
|
$image_meta['image_meta']['orientation'] = 1;
|
|
|
|
}
|
|
|
|
} else {
|
2020-01-29 01:45:18 +01:00
|
|
|
// TODO: Log errors.
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
}
|
|
|
|
} else {
|
2020-01-29 01:45:18 +01:00
|
|
|
// TODO: Log errors.
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
}
|
2020-02-09 17:55:09 +01:00
|
|
|
} elseif ( ! empty( $exif_meta['orientation'] ) && 1 !== (int) $exif_meta['orientation'] ) {
|
2019-12-01 19:26:05 +01:00
|
|
|
// Rotate the whole original image if there is EXIF data and "orientation" is not 1.
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
$editor = wp_get_image_editor( $file );
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
if ( is_wp_error( $editor ) ) {
|
|
|
|
// This image cannot be edited.
|
|
|
|
return $image_meta;
|
|
|
|
}
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
// Rotate the image.
|
2019-12-01 19:26:05 +01:00
|
|
|
$rotated = $editor->maybe_exif_rotate();
|
2019-09-07 03:07:55 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
if ( true === $rotated ) {
|
|
|
|
// Append `-rotated` to the image file name.
|
|
|
|
$saved = $editor->save( $editor->generate_filename( 'rotated' ) );
|
2019-09-07 03:07:55 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
if ( ! is_wp_error( $saved ) ) {
|
|
|
|
$image_meta = _wp_image_meta_replace_original( $saved, $file, $image_meta, $attachment_id );
|
2019-09-07 03:07:55 +02:00
|
|
|
|
2019-12-01 19:26:05 +01:00
|
|
|
// Update the stored EXIF data.
|
|
|
|
if ( ! empty( $image_meta['image_meta']['orientation'] ) ) {
|
|
|
|
$image_meta['image_meta']['orientation'] = 1;
|
|
|
|
}
|
|
|
|
} else {
|
2020-01-29 01:45:18 +01:00
|
|
|
// TODO: Log errors.
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
}
|
2019-09-07 03:07:55 +02:00
|
|
|
}
|
2019-06-15 03:02:52 +02:00
|
|
|
}
|
|
|
|
}
|
2016-08-22 06:37:28 +02:00
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
/*
|
|
|
|
* Initial save of the new metadata.
|
|
|
|
* At this point the file was uploaded and moved to the uploads directory
|
|
|
|
* but the image sub-sizes haven't been created yet and the `sizes` array is empty.
|
|
|
|
*/
|
2019-11-04 18:07:03 +01:00
|
|
|
wp_update_attachment_metadata( $attachment_id, $image_meta );
|
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
$new_sizes = wp_get_registered_image_subsizes();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the image sizes automatically generated when uploading an image.
|
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
* @since 4.4.0 Added the `$image_meta` argument.
|
|
|
|
* @since 5.3.0 Added the `$attachment_id` argument.
|
|
|
|
*
|
|
|
|
* @param array $new_sizes Associative array of image sizes to be created.
|
|
|
|
* @param array $image_meta The image meta data: width, height, file, sizes, etc.
|
|
|
|
* @param int $attachment_id The attachment post ID for the image.
|
|
|
|
*/
|
|
|
|
$new_sizes = apply_filters( 'intermediate_image_sizes_advanced', $new_sizes, $image_meta, $attachment_id );
|
|
|
|
|
|
|
|
return _wp_make_subsizes( $new_sizes, $file, $image_meta, $attachment_id );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Low-level function to create image sub-sizes.
|
|
|
|
*
|
|
|
|
* Updates the image meta after each sub-size is created.
|
|
|
|
* Errors are stored in the returned image metadata array.
|
|
|
|
*
|
|
|
|
* @since 5.3.0
|
|
|
|
* @access private
|
|
|
|
*
|
2019-08-21 18:23:56 +02:00
|
|
|
* @param array $new_sizes Array defining what sizes to create.
|
2019-06-15 03:02:52 +02:00
|
|
|
* @param string $file Full path to the image file.
|
|
|
|
* @param array $image_meta The attachment meta data array.
|
|
|
|
* @param int $attachment_id Attachment Id to process.
|
|
|
|
* @return array The attachment meta data with updated `sizes` array. Includes an array of errors encountered while resizing.
|
|
|
|
*/
|
|
|
|
function _wp_make_subsizes( $new_sizes, $file, $image_meta, $attachment_id ) {
|
2019-09-07 03:07:55 +02:00
|
|
|
if ( empty( $image_meta ) || ! is_array( $image_meta ) ) {
|
|
|
|
// Not an image attachment.
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
// Check if any of the new sizes already exist.
|
|
|
|
if ( isset( $image_meta['sizes'] ) && is_array( $image_meta['sizes'] ) ) {
|
|
|
|
foreach ( $image_meta['sizes'] as $size_name => $size_meta ) {
|
2020-01-18 01:54:04 +01:00
|
|
|
/*
|
|
|
|
* Only checks "size name" so we don't override existing images even if the dimensions
|
|
|
|
* don't match the currently defined size with the same name.
|
|
|
|
* To change the behavior, unset changed/mismatched sizes in the `sizes` array in image meta.
|
|
|
|
*/
|
2019-06-15 03:02:52 +02:00
|
|
|
if ( array_key_exists( $size_name, $new_sizes ) ) {
|
|
|
|
unset( $new_sizes[ $size_name ] );
|
2016-08-22 06:37:28 +02:00
|
|
|
}
|
2009-12-08 22:08:19 +01:00
|
|
|
}
|
2019-06-15 03:02:52 +02:00
|
|
|
} else {
|
|
|
|
$image_meta['sizes'] = array();
|
|
|
|
}
|
2009-12-08 22:08:19 +01:00
|
|
|
|
2019-09-07 03:07:55 +02:00
|
|
|
if ( empty( $new_sizes ) ) {
|
|
|
|
// Nothing to do...
|
|
|
|
return $image_meta;
|
|
|
|
}
|
2019-07-16 23:48:56 +02:00
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
/*
|
|
|
|
* Sort the image sub-sizes in order of priority when creating them.
|
|
|
|
* This ensures there is an appropriate sub-size the user can access immediately
|
|
|
|
* even when there was an error and not all sub-sizes were created.
|
|
|
|
*/
|
2019-09-07 03:07:55 +02:00
|
|
|
$priority = array(
|
|
|
|
'medium' => null,
|
|
|
|
'large' => null,
|
|
|
|
'thumbnail' => null,
|
|
|
|
'medium_large' => null,
|
|
|
|
);
|
2019-07-16 23:48:56 +02:00
|
|
|
|
2019-09-07 03:07:55 +02:00
|
|
|
$new_sizes = array_filter( array_merge( $priority, $new_sizes ) );
|
2019-06-15 03:02:52 +02:00
|
|
|
|
2019-09-07 03:07:55 +02:00
|
|
|
$editor = wp_get_image_editor( $file );
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2019-09-07 03:07:55 +02:00
|
|
|
if ( is_wp_error( $editor ) ) {
|
|
|
|
// The image cannot be edited.
|
|
|
|
return $image_meta;
|
|
|
|
}
|
|
|
|
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
// If stored EXIF data exists, rotate the source image before creating sub-sizes.
|
|
|
|
if ( ! empty( $image_meta['image_meta'] ) ) {
|
|
|
|
$rotated = $editor->maybe_exif_rotate();
|
|
|
|
|
|
|
|
if ( is_wp_error( $rotated ) ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// TODO: Log errors.
|
Media/Upload: rotate images on upload according to EXIF Orientation.
Props msaggiorato, wpdavis, markoheijnen, dhuyvetter, msaggiorato, n7studios, triplejumper12, pbiron, mikeschroder, joemcgill, azaozz.
Fixes #14459.
Built from https://develop.svn.wordpress.org/trunk@46202
git-svn-id: http://core.svn.wordpress.org/trunk@46014 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-20 20:21:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 03:07:55 +02:00
|
|
|
if ( method_exists( $editor, 'make_subsize' ) ) {
|
|
|
|
foreach ( $new_sizes as $new_size_name => $new_size_data ) {
|
|
|
|
$new_size_meta = $editor->make_subsize( $new_size_data );
|
|
|
|
|
|
|
|
if ( is_wp_error( $new_size_meta ) ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// TODO: Log errors.
|
2019-06-15 03:02:52 +02:00
|
|
|
} else {
|
2019-09-07 03:07:55 +02:00
|
|
|
// Save the size meta value.
|
|
|
|
$image_meta['sizes'][ $new_size_name ] = $new_size_meta;
|
2019-10-14 22:05:01 +02:00
|
|
|
wp_update_attachment_metadata( $attachment_id, $image_meta );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2019-09-07 03:07:55 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Fall back to `$editor->multi_resize()`.
|
|
|
|
$created_sizes = $editor->multi_resize( $new_sizes );
|
|
|
|
|
|
|
|
if ( ! empty( $created_sizes ) ) {
|
|
|
|
$image_meta['sizes'] = array_merge( $image_meta['sizes'], $created_sizes );
|
|
|
|
wp_update_attachment_metadata( $attachment_id, $image_meta );
|
2012-11-14 15:26:52 +01:00
|
|
|
}
|
2019-06-15 03:02:52 +02:00
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
return $image_meta;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate attachment meta data and create image sub-sizes for images.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param int $attachment_id Attachment Id to process.
|
|
|
|
* @param string $file Filepath of the Attached image.
|
|
|
|
* @return mixed Metadata for attachment.
|
|
|
|
*/
|
|
|
|
function wp_generate_attachment_metadata( $attachment_id, $file ) {
|
|
|
|
$attachment = get_post( $attachment_id );
|
|
|
|
|
|
|
|
$metadata = array();
|
|
|
|
$support = false;
|
|
|
|
$mime_type = get_post_mime_type( $attachment );
|
|
|
|
|
|
|
|
if ( preg_match( '!^image/!', $mime_type ) && file_is_displayable_image( $file ) ) {
|
|
|
|
// Make thumbnails and other intermediate sizes.
|
2019-09-07 03:07:55 +02:00
|
|
|
$metadata = wp_create_image_subsizes( $file, $attachment_id );
|
2015-03-06 21:26:26 +01:00
|
|
|
} elseif ( wp_attachment_is( 'video', $attachment ) ) {
|
2013-03-21 05:55:42 +01:00
|
|
|
$metadata = wp_read_video_metadata( $file );
|
2017-12-01 00:11:00 +01:00
|
|
|
$support = current_theme_supports( 'post-thumbnails', 'attachment:video' ) || post_type_supports( 'attachment:video', 'thumbnail' );
|
2015-03-06 21:26:26 +01:00
|
|
|
} elseif ( wp_attachment_is( 'audio', $attachment ) ) {
|
2013-03-21 05:55:42 +01:00
|
|
|
$metadata = wp_read_audio_metadata( $file );
|
2017-12-01 00:11:00 +01:00
|
|
|
$support = current_theme_supports( 'post-thumbnails', 'attachment:audio' ) || post_type_supports( 'attachment:audio', 'thumbnail' );
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
2008-09-17 02:40:10 +02:00
|
|
|
|
2013-03-21 05:55:42 +01:00
|
|
|
if ( $support && ! empty( $metadata['image']['data'] ) ) {
|
2014-07-17 11:14:16 +02:00
|
|
|
// Check for existing cover.
|
2017-12-01 00:11:00 +01:00
|
|
|
$hash = md5( $metadata['image']['data'] );
|
|
|
|
$posts = get_posts(
|
|
|
|
array(
|
|
|
|
'fields' => 'ids',
|
|
|
|
'post_type' => 'attachment',
|
|
|
|
'post_mime_type' => $metadata['image']['mime'],
|
|
|
|
'post_status' => 'inherit',
|
|
|
|
'posts_per_page' => 1,
|
|
|
|
'meta_key' => '_cover_hash',
|
|
|
|
'meta_value' => $hash,
|
|
|
|
)
|
|
|
|
);
|
2014-03-30 22:54:15 +02:00
|
|
|
$exists = reset( $posts );
|
|
|
|
|
|
|
|
if ( ! empty( $exists ) ) {
|
|
|
|
update_post_meta( $attachment_id, '_thumbnail_id', $exists );
|
|
|
|
} else {
|
|
|
|
$ext = '.jpg';
|
|
|
|
switch ( $metadata['image']['mime'] ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
case 'image/gif':
|
|
|
|
$ext = '.gif';
|
|
|
|
break;
|
|
|
|
case 'image/png':
|
|
|
|
$ext = '.png';
|
|
|
|
break;
|
2014-03-30 22:54:15 +02:00
|
|
|
}
|
2019-03-01 21:58:52 +01:00
|
|
|
$basename = str_replace( '.', '-', wp_basename( $file ) ) . '-image' . $ext;
|
2014-03-30 22:54:15 +02:00
|
|
|
$uploaded = wp_upload_bits( $basename, '', $metadata['image']['data'] );
|
|
|
|
if ( false === $uploaded['error'] ) {
|
|
|
|
$image_attachment = array(
|
|
|
|
'post_mime_type' => $metadata['image']['mime'],
|
2017-12-01 00:11:00 +01:00
|
|
|
'post_type' => 'attachment',
|
|
|
|
'post_content' => '',
|
2014-03-30 22:54:15 +02:00
|
|
|
);
|
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the parameters for the attachment thumbnail creation.
|
2014-03-30 22:54:15 +02:00
|
|
|
*
|
|
|
|
* @since 3.9.0
|
|
|
|
*
|
|
|
|
* @param array $image_attachment An array of parameters to create the thumbnail.
|
2014-04-07 22:10:16 +02:00
|
|
|
* @param array $metadata Current attachment metadata.
|
2020-03-16 19:40:07 +01:00
|
|
|
* @param array $uploaded {
|
|
|
|
* Information about the newly-uploaded file.
|
|
|
|
*
|
|
|
|
* @type string $file Filename of the newly-uploaded file.
|
|
|
|
* @type string $url URL of the uploaded file.
|
|
|
|
* @type string $type File type.
|
|
|
|
* }
|
2014-03-30 22:54:15 +02:00
|
|
|
*/
|
|
|
|
$image_attachment = apply_filters( 'attachment_thumbnail_args', $image_attachment, $metadata, $uploaded );
|
|
|
|
|
|
|
|
$sub_attachment_id = wp_insert_attachment( $image_attachment, $uploaded['file'] );
|
|
|
|
add_post_meta( $sub_attachment_id, '_cover_hash', $hash );
|
|
|
|
$attach_data = wp_generate_attachment_metadata( $sub_attachment_id, $uploaded['file'] );
|
|
|
|
wp_update_attachment_metadata( $sub_attachment_id, $attach_data );
|
|
|
|
update_post_meta( $attachment_id, '_thumbnail_id', $sub_attachment_id );
|
|
|
|
}
|
2013-03-21 05:55:42 +01:00
|
|
|
}
|
2019-01-11 07:40:50 +01:00
|
|
|
} elseif ( 'application/pdf' === $mime_type ) {
|
|
|
|
// Try to create image thumbnails for PDFs.
|
|
|
|
|
Media: Add support for rendering PDF thumbnails.
When support for PDFs is available, on upload,
render 'Thumbnail', 'Medium', 'Large', and 'Full' sizes of
the first page, and save them in attachment meta.
Use these renders within Add Media, Media Gallery and List views,
Attachment Details, Post/Attachment Edit screens, and Attachment pages.
Support available by default via Imagick -> ImageMagick -> Ghostscript,
but can be provided by any `WP_Image_Editor` that supports PDFs.
Props adamsilverstein, azaozz, celloexpressions, desrosj, dglingren, ericlewis, ipstenu, joemcgill, joyously, markoheijnen, melchoyce, mikeschroder, tomauger.
Fixes #31050.
Built from https://develop.svn.wordpress.org/trunk@38949
git-svn-id: http://core.svn.wordpress.org/trunk@38892 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 09:28:32 +02:00
|
|
|
$fallback_sizes = array(
|
|
|
|
'thumbnail',
|
|
|
|
'medium',
|
|
|
|
'large',
|
|
|
|
);
|
|
|
|
|
2016-11-15 14:26:30 +01:00
|
|
|
/**
|
|
|
|
* Filters the image sizes generated for non-image mime types.
|
|
|
|
*
|
|
|
|
* @since 4.7.0
|
|
|
|
*
|
2019-11-03 23:23:01 +01:00
|
|
|
* @param string[] $fallback_sizes An array of image size names.
|
|
|
|
* @param array $metadata Current attachment metadata.
|
2016-11-15 14:26:30 +01:00
|
|
|
*/
|
|
|
|
$fallback_sizes = apply_filters( 'fallback_intermediate_image_sizes', $fallback_sizes, $metadata );
|
|
|
|
|
2019-06-15 03:32:53 +02:00
|
|
|
$registered_sizes = wp_get_registered_image_subsizes();
|
|
|
|
$merged_sizes = array_intersect_key( $registered_sizes, array_flip( $fallback_sizes ) );
|
2016-12-16 21:30:42 +01:00
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
// Force thumbnails to be soft crops.
|
|
|
|
if ( isset( $merged_sizes['thumbnail'] ) && is_array( $merged_sizes['thumbnail'] ) ) {
|
|
|
|
$merged_sizes['thumbnail']['crop'] = false;
|
Media: Add support for rendering PDF thumbnails.
When support for PDFs is available, on upload,
render 'Thumbnail', 'Medium', 'Large', and 'Full' sizes of
the first page, and save them in attachment meta.
Use these renders within Add Media, Media Gallery and List views,
Attachment Details, Post/Attachment Edit screens, and Attachment pages.
Support available by default via Imagick -> ImageMagick -> Ghostscript,
but can be provided by any `WP_Image_Editor` that supports PDFs.
Props adamsilverstein, azaozz, celloexpressions, desrosj, dglingren, ericlewis, ipstenu, joemcgill, joyously, markoheijnen, melchoyce, mikeschroder, tomauger.
Fixes #31050.
Built from https://develop.svn.wordpress.org/trunk@38949
git-svn-id: http://core.svn.wordpress.org/trunk@38892 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 09:28:32 +02:00
|
|
|
}
|
|
|
|
|
2016-11-15 14:26:30 +01:00
|
|
|
// Only load PDFs in an image editor if we're processing sizes.
|
2019-06-15 03:02:52 +02:00
|
|
|
if ( ! empty( $merged_sizes ) ) {
|
2016-11-15 14:26:30 +01:00
|
|
|
$editor = wp_get_image_editor( $file );
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
if ( ! is_wp_error( $editor ) ) { // No support for this type of file.
|
2017-02-27 16:39:47 +01:00
|
|
|
/*
|
|
|
|
* PDFs may have the same file filename as JPEGs.
|
|
|
|
* Ensure the PDF preview image does not overwrite any JPEG images that already exist.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
$dirname = dirname( $file ) . '/';
|
|
|
|
$ext = '.' . pathinfo( $file, PATHINFO_EXTENSION );
|
2017-02-27 16:39:47 +01:00
|
|
|
$preview_file = $dirname . wp_unique_filename( $dirname, wp_basename( $file, $ext ) . '-pdf.jpg' );
|
|
|
|
|
|
|
|
$uploaded = $editor->save( $preview_file, 'image/jpeg' );
|
2016-11-15 14:26:30 +01:00
|
|
|
unset( $editor );
|
Media: Add support for rendering PDF thumbnails.
When support for PDFs is available, on upload,
render 'Thumbnail', 'Medium', 'Large', and 'Full' sizes of
the first page, and save them in attachment meta.
Use these renders within Add Media, Media Gallery and List views,
Attachment Details, Post/Attachment Edit screens, and Attachment pages.
Support available by default via Imagick -> ImageMagick -> Ghostscript,
but can be provided by any `WP_Image_Editor` that supports PDFs.
Props adamsilverstein, azaozz, celloexpressions, desrosj, dglingren, ericlewis, ipstenu, joemcgill, joyously, markoheijnen, melchoyce, mikeschroder, tomauger.
Fixes #31050.
Built from https://develop.svn.wordpress.org/trunk@38949
git-svn-id: http://core.svn.wordpress.org/trunk@38892 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 09:28:32 +02:00
|
|
|
|
2016-11-15 14:26:30 +01:00
|
|
|
// Resize based on the full size image, rather than the source.
|
|
|
|
if ( ! is_wp_error( $uploaded ) ) {
|
2019-10-11 09:54:03 +02:00
|
|
|
$image_file = $uploaded['path'];
|
2016-11-15 14:26:30 +01:00
|
|
|
unset( $uploaded['path'] );
|
Media: Add support for rendering PDF thumbnails.
When support for PDFs is available, on upload,
render 'Thumbnail', 'Medium', 'Large', and 'Full' sizes of
the first page, and save them in attachment meta.
Use these renders within Add Media, Media Gallery and List views,
Attachment Details, Post/Attachment Edit screens, and Attachment pages.
Support available by default via Imagick -> ImageMagick -> Ghostscript,
but can be provided by any `WP_Image_Editor` that supports PDFs.
Props adamsilverstein, azaozz, celloexpressions, desrosj, dglingren, ericlewis, ipstenu, joemcgill, joyously, markoheijnen, melchoyce, mikeschroder, tomauger.
Fixes #31050.
Built from https://develop.svn.wordpress.org/trunk@38949
git-svn-id: http://core.svn.wordpress.org/trunk@38892 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 09:28:32 +02:00
|
|
|
|
2019-10-11 09:54:03 +02:00
|
|
|
$metadata['sizes'] = array(
|
|
|
|
'full' => $uploaded,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Save the meta data before any image post-processing errors could happen.
|
|
|
|
wp_update_attachment_metadata( $attachment_id, $metadata );
|
|
|
|
|
|
|
|
// Create sub-sizes saving the image meta after each.
|
|
|
|
$metadata = _wp_make_subsizes( $merged_sizes, $image_file, $metadata, $attachment_id );
|
Media: Add support for rendering PDF thumbnails.
When support for PDFs is available, on upload,
render 'Thumbnail', 'Medium', 'Large', and 'Full' sizes of
the first page, and save them in attachment meta.
Use these renders within Add Media, Media Gallery and List views,
Attachment Details, Post/Attachment Edit screens, and Attachment pages.
Support available by default via Imagick -> ImageMagick -> Ghostscript,
but can be provided by any `WP_Image_Editor` that supports PDFs.
Props adamsilverstein, azaozz, celloexpressions, desrosj, dglingren, ericlewis, ipstenu, joemcgill, joyously, markoheijnen, melchoyce, mikeschroder, tomauger.
Fixes #31050.
Built from https://develop.svn.wordpress.org/trunk@38949
git-svn-id: http://core.svn.wordpress.org/trunk@38892 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 09:28:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-30 15:39:10 +01:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
// Remove the blob of binary data from the array.
|
2015-11-06 10:25:26 +01:00
|
|
|
if ( $metadata ) {
|
|
|
|
unset( $metadata['image']['data'] );
|
|
|
|
}
|
2013-03-21 05:55:42 +01:00
|
|
|
|
2014-02-20 07:27:13 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the generated attachment meta data.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
2019-10-31 01:13:01 +01:00
|
|
|
* @since 5.3.0 The `$context` parameter was added.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
2019-10-30 22:10:04 +01:00
|
|
|
* @param array $metadata An array of attachment meta data.
|
|
|
|
* @param int $attachment_id Current attachment ID.
|
|
|
|
* @param string $context Additional context. Can be 'create' when metadata was initially created for new attachment
|
|
|
|
* or 'update' when the metadata was updated.
|
2014-02-20 07:27:13 +01:00
|
|
|
*/
|
2019-10-30 22:10:04 +01:00
|
|
|
return apply_filters( 'wp_generate_attachment_metadata', $metadata, $attachment_id, 'create' );
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-17 02:40:10 +02:00
|
|
|
/**
|
|
|
|
* Convert a fraction string to a decimal.
|
|
|
|
*
|
2008-10-10 20:21:16 +02:00
|
|
|
* @since 2.5.0
|
2008-09-17 02:40:10 +02:00
|
|
|
*
|
|
|
|
* @param string $str
|
|
|
|
* @return int|float
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function wp_exif_frac2dec( $str ) {
|
2019-07-09 07:45:58 +02:00
|
|
|
if ( false === strpos( $str, '/' ) ) {
|
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
|
2020-02-14 01:07:07 +01:00
|
|
|
list( $numerator, $denominator ) = explode( '/', $str );
|
|
|
|
if ( ! empty( $denominator ) ) {
|
|
|
|
return $numerator / $denominator;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-11-05 01:01:26 +01:00
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
|
2008-09-17 02:40:10 +02:00
|
|
|
/**
|
|
|
|
* Convert the exif date format to a unix timestamp.
|
|
|
|
*
|
2008-10-10 20:21:16 +02:00
|
|
|
* @since 2.5.0
|
2008-09-17 02:40:10 +02:00
|
|
|
*
|
|
|
|
* @param string $str
|
|
|
|
* @return int
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function wp_exif_date2ts( $str ) {
|
2019-07-09 07:45:58 +02:00
|
|
|
list( $date, $time ) = explode( ' ', trim( $str ) );
|
|
|
|
list( $y, $m, $d ) = explode( ':', $date );
|
2007-11-05 01:01:26 +01:00
|
|
|
|
|
|
|
return strtotime( "{$y}-{$m}-{$d} {$time}" );
|
|
|
|
}
|
|
|
|
|
2008-09-17 02:40:10 +02:00
|
|
|
/**
|
2008-10-02 03:03:26 +02:00
|
|
|
* Get extended image metadata, exif or iptc as available.
|
2008-09-17 02:40:10 +02:00
|
|
|
*
|
2008-10-10 20:21:16 +02:00
|
|
|
* Retrieves the EXIF metadata aperture, credit, camera, caption, copyright, iso
|
|
|
|
* created_timestamp, focal_length, shutter_speed, and title.
|
|
|
|
*
|
|
|
|
* The IPTC metadata that is retrieved is APP13, credit, byline, created date
|
|
|
|
* and time, caption, copyright, and title. Also includes FNumber, Model,
|
|
|
|
* DateTimeDigitized, FocalLength, ISOSpeedRatings, and ExposureTime.
|
|
|
|
*
|
|
|
|
* @todo Try other exif libraries if available.
|
|
|
|
* @since 2.5.0
|
2008-09-17 02:40:10 +02:00
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @return bool|array False on failure. Image metadata array on success.
|
|
|
|
*/
|
2007-11-05 01:01:26 +01:00
|
|
|
function wp_read_image_metadata( $file ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! file_exists( $file ) ) {
|
2007-11-05 01:01:26 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-11-05 01:01:26 +01:00
|
|
|
|
2018-03-25 22:41:29 +02:00
|
|
|
list( , , $image_type ) = @getimagesize( $file );
|
2007-12-20 23:18:28 +01:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
/*
|
|
|
|
* EXIF contains a bunch of data we'll probably never need formatted in ways
|
|
|
|
* that are difficult to use. We'll normalize it and just extract the fields
|
|
|
|
* that are likely to be useful. Fractions and numbers are converted to
|
|
|
|
* floats, dates to unix timestamps, and everything else to strings.
|
|
|
|
*/
|
2007-11-05 01:01:26 +01:00
|
|
|
$meta = array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'aperture' => 0,
|
|
|
|
'credit' => '',
|
|
|
|
'camera' => '',
|
|
|
|
'caption' => '',
|
2007-11-05 01:01:26 +01:00
|
|
|
'created_timestamp' => 0,
|
2017-12-01 00:11:00 +01:00
|
|
|
'copyright' => '',
|
|
|
|
'focal_length' => 0,
|
|
|
|
'iso' => 0,
|
|
|
|
'shutter_speed' => 0,
|
|
|
|
'title' => '',
|
|
|
|
'orientation' => 0,
|
|
|
|
'keywords' => array(),
|
2007-11-05 01:01:26 +01:00
|
|
|
);
|
|
|
|
|
2015-09-22 06:49:24 +02:00
|
|
|
$iptc = array();
|
2014-07-17 11:14:16 +02:00
|
|
|
/*
|
|
|
|
* Read IPTC first, since it might contain data not available in exif such
|
|
|
|
* as caption, description etc.
|
|
|
|
*/
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( is_callable( 'iptcparse' ) ) {
|
2018-01-15 20:44:47 +01:00
|
|
|
@getimagesize( $file, $info );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! empty( $info['APP13'] ) ) {
|
2018-01-15 20:44:47 +01:00
|
|
|
$iptc = @iptcparse( $info['APP13'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Headline, "A brief synopsis of the caption".
|
2014-07-17 11:14:16 +02:00
|
|
|
if ( ! empty( $iptc['2#105'][0] ) ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['title'] = trim( $iptc['2#105'][0] );
|
2017-12-01 00:11:00 +01:00
|
|
|
/*
|
|
|
|
* Title, "Many use the Title field to store the filename of the image,
|
2020-01-29 01:45:18 +01:00
|
|
|
* though the field may be used in many ways".
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
2014-07-17 11:14:16 +02:00
|
|
|
} elseif ( ! empty( $iptc['2#005'][0] ) ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['title'] = trim( $iptc['2#005'][0] );
|
2014-07-17 11:14:16 +02:00
|
|
|
}
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
if ( ! empty( $iptc['2#120'][0] ) ) { // Description / legacy caption.
|
2012-09-19 01:38:25 +02:00
|
|
|
$caption = trim( $iptc['2#120'][0] );
|
2014-06-24 00:21:15 +02:00
|
|
|
|
2015-03-10 06:07:28 +01:00
|
|
|
mbstring_binary_safe_encoding();
|
|
|
|
$caption_length = strlen( $caption );
|
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
|
|
|
if ( empty( $meta['title'] ) && $caption_length < 80 ) {
|
2010-02-20 10:17:34 +01:00
|
|
|
// Assume the title is stored in 2:120 if it's short.
|
2015-03-10 06:07:28 +01:00
|
|
|
$meta['title'] = $caption;
|
2010-02-20 10:17:34 +01:00
|
|
|
}
|
2015-03-10 06:07:28 +01:00
|
|
|
|
|
|
|
$meta['caption'] = $caption;
|
2010-02-20 10:17:34 +01:00
|
|
|
}
|
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
if ( ! empty( $iptc['2#110'][0] ) ) { // Credit.
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['credit'] = trim( $iptc['2#110'][0] );
|
2020-01-18 01:54:04 +01:00
|
|
|
} elseif ( ! empty( $iptc['2#080'][0] ) ) { // Creator / legacy byline.
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['credit'] = trim( $iptc['2#080'][0] );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
if ( ! empty( $iptc['2#055'][0] ) && ! empty( $iptc['2#060'][0] ) ) { // Created date and time.
|
2010-02-20 13:09:30 +01:00
|
|
|
$meta['created_timestamp'] = strtotime( $iptc['2#055'][0] . ' ' . $iptc['2#060'][0] );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
if ( ! empty( $iptc['2#116'][0] ) ) { // Copyright.
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['copyright'] = trim( $iptc['2#116'][0] );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-09-22 06:19:24 +02:00
|
|
|
|
2020-01-18 01:54:04 +01:00
|
|
|
if ( ! empty( $iptc['2#025'][0] ) ) { // Keywords array.
|
2015-09-22 06:19:24 +02:00
|
|
|
$meta['keywords'] = array_values( $iptc['2#025'] );
|
|
|
|
}
|
2017-11-27 00:57:55 +01:00
|
|
|
}
|
2007-11-05 01:01:26 +01:00
|
|
|
}
|
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
$exif = array();
|
2018-03-25 22:45:29 +02:00
|
|
|
|
2014-02-20 07:27:13 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the image types to check for exif data.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param array $image_types Image types to check for exif data.
|
|
|
|
*/
|
2018-03-25 22:41:29 +02:00
|
|
|
$exif_image_types = apply_filters( 'wp_read_image_metadata_types', array( IMAGETYPE_JPEG, IMAGETYPE_TIFF_II, IMAGETYPE_TIFF_MM ) );
|
|
|
|
|
2019-06-15 03:02:52 +02:00
|
|
|
if ( is_callable( 'exif_read_data' ) && in_array( $image_type, $exif_image_types, true ) ) {
|
2008-04-14 22:19:15 +02:00
|
|
|
$exif = @exif_read_data( $file );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
|
|
|
if ( ! empty( $exif['ImageDescription'] ) ) {
|
2014-06-24 00:21:15 +02:00
|
|
|
mbstring_binary_safe_encoding();
|
|
|
|
$description_length = strlen( $exif['ImageDescription'] );
|
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
|
|
|
if ( empty( $meta['title'] ) && $description_length < 80 ) {
|
2020-01-18 01:54:04 +01:00
|
|
|
// Assume the title is stored in ImageDescription.
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['title'] = trim( $exif['ImageDescription'] );
|
2015-03-10 06:07:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( empty( $meta['caption'] ) && ! empty( $exif['COMPUTED']['UserComment'] ) ) {
|
|
|
|
$meta['caption'] = trim( $exif['COMPUTED']['UserComment'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( empty( $meta['caption'] ) ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['caption'] = trim( $exif['ImageDescription'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
}
|
2015-03-10 06:07:28 +01:00
|
|
|
} elseif ( empty( $meta['caption'] ) && ! empty( $exif['Comments'] ) ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['caption'] = trim( $exif['Comments'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
}
|
|
|
|
|
2014-05-11 07:54:15 +02:00
|
|
|
if ( empty( $meta['credit'] ) ) {
|
|
|
|
if ( ! empty( $exif['Artist'] ) ) {
|
|
|
|
$meta['credit'] = trim( $exif['Artist'] );
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( ! empty( $exif['Author'] ) ) {
|
2014-05-11 07:54:15 +02:00
|
|
|
$meta['credit'] = trim( $exif['Author'] );
|
|
|
|
}
|
|
|
|
}
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2014-05-11 07:54:15 +02:00
|
|
|
if ( empty( $meta['copyright'] ) && ! empty( $exif['Copyright'] ) ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['copyright'] = trim( $exif['Copyright'] );
|
2014-05-11 07:54:15 +02:00
|
|
|
}
|
|
|
|
if ( ! empty( $exif['FNumber'] ) ) {
|
2007-11-05 01:01:26 +01:00
|
|
|
$meta['aperture'] = round( wp_exif_frac2dec( $exif['FNumber'] ), 2 );
|
2014-05-11 07:54:15 +02:00
|
|
|
}
|
|
|
|
if ( ! empty( $exif['Model'] ) ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['camera'] = trim( $exif['Model'] );
|
2014-05-11 07:54:15 +02:00
|
|
|
}
|
|
|
|
if ( empty( $meta['created_timestamp'] ) && ! empty( $exif['DateTimeDigitized'] ) ) {
|
|
|
|
$meta['created_timestamp'] = wp_exif_date2ts( $exif['DateTimeDigitized'] );
|
|
|
|
}
|
|
|
|
if ( ! empty( $exif['FocalLength'] ) ) {
|
2012-10-28 17:17:56 +01:00
|
|
|
$meta['focal_length'] = (string) wp_exif_frac2dec( $exif['FocalLength'] );
|
2014-05-11 07:54:15 +02:00
|
|
|
}
|
|
|
|
if ( ! empty( $exif['ISOSpeedRatings'] ) ) {
|
2012-06-02 03:39:00 +02:00
|
|
|
$meta['iso'] = is_array( $exif['ISOSpeedRatings'] ) ? reset( $exif['ISOSpeedRatings'] ) : $exif['ISOSpeedRatings'];
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['iso'] = trim( $meta['iso'] );
|
2012-06-02 03:39:00 +02:00
|
|
|
}
|
2014-05-11 07:54:15 +02:00
|
|
|
if ( ! empty( $exif['ExposureTime'] ) ) {
|
2012-10-28 17:17:56 +01:00
|
|
|
$meta['shutter_speed'] = (string) wp_exif_frac2dec( $exif['ExposureTime'] );
|
2014-05-11 07:54:15 +02:00
|
|
|
}
|
2014-07-25 00:14:16 +02:00
|
|
|
if ( ! empty( $exif['Orientation'] ) ) {
|
|
|
|
$meta['orientation'] = $exif['Orientation'];
|
|
|
|
}
|
2007-11-05 01:01:26 +01:00
|
|
|
}
|
|
|
|
|
2012-09-19 01:38:25 +02:00
|
|
|
foreach ( array( 'title', 'caption', 'credit', 'copyright', 'camera', 'iso' ) as $key ) {
|
2014-05-11 07:54:15 +02:00
|
|
|
if ( $meta[ $key ] && ! seems_utf8( $meta[ $key ] ) ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta[ $key ] = utf8_encode( $meta[ $key ] );
|
2014-05-11 07:54:15 +02:00
|
|
|
}
|
2012-09-19 01:38:25 +02:00
|
|
|
}
|
|
|
|
|
2016-02-01 15:53:27 +01:00
|
|
|
foreach ( $meta['keywords'] as $key => $keyword ) {
|
|
|
|
if ( ! seems_utf8( $keyword ) ) {
|
|
|
|
$meta['keywords'][ $key ] = utf8_encode( $keyword );
|
2014-11-20 16:25:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-01 15:53:27 +01:00
|
|
|
$meta = wp_kses_post_deep( $meta );
|
|
|
|
|
2014-02-20 07:27:13 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the array of meta data read from an image's exif data.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2015-09-22 06:19:24 +02:00
|
|
|
* @since 4.4.0 The `$iptc` parameter was added.
|
2018-03-25 22:45:29 +02:00
|
|
|
* @since 5.0.0 The `$exif` parameter was added.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
2018-03-25 22:41:29 +02:00
|
|
|
* @param array $meta Image meta data.
|
|
|
|
* @param string $file Path to image file.
|
|
|
|
* @param int $image_type Type of image, one of the `IMAGETYPE_XXX` constants.
|
|
|
|
* @param array $iptc IPTC data.
|
2018-03-25 22:45:29 +02:00
|
|
|
* @param array $exif EXIF data.
|
2014-02-20 07:27:13 +01:00
|
|
|
*/
|
2018-03-25 22:45:29 +02:00
|
|
|
return apply_filters( 'wp_read_image_metadata', $meta, $file, $image_type, $iptc, $exif );
|
2007-11-05 01:01:26 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-09-17 02:40:10 +02:00
|
|
|
/**
|
|
|
|
* Validate that file is an image.
|
|
|
|
*
|
2008-10-10 20:21:16 +02:00
|
|
|
* @since 2.5.0
|
2008-09-17 02:40:10 +02:00
|
|
|
*
|
|
|
|
* @param string $path File path to test if valid image.
|
|
|
|
* @return bool True if valid image, false if not valid image.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function file_is_valid_image( $path ) {
|
|
|
|
$size = @getimagesize( $path );
|
|
|
|
return ! empty( $size );
|
2008-03-03 05:17:37 +01:00
|
|
|
}
|
|
|
|
|
2008-09-17 02:40:10 +02:00
|
|
|
/**
|
|
|
|
* Validate that file is suitable for displaying within a web page.
|
|
|
|
*
|
2008-10-10 20:21:16 +02:00
|
|
|
* @since 2.5.0
|
2008-09-17 02:40:10 +02:00
|
|
|
*
|
|
|
|
* @param string $path File path to test.
|
|
|
|
* @return bool True if suitable, false if not suitable.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function file_is_displayable_image( $path ) {
|
2019-09-21 00:18:59 +02:00
|
|
|
$displayable_image_types = array( IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP, IMAGETYPE_ICO );
|
2018-03-05 02:03:31 +01:00
|
|
|
|
2014-05-27 15:25:14 +02:00
|
|
|
$info = @getimagesize( $path );
|
|
|
|
if ( empty( $info ) ) {
|
2008-03-03 05:17:37 +01:00
|
|
|
$result = false;
|
2019-06-15 03:02:52 +02:00
|
|
|
} elseif ( ! in_array( $info[2], $displayable_image_types, true ) ) {
|
2008-03-03 05:17:37 +01:00
|
|
|
$result = false;
|
2014-05-27 15:25:14 +02:00
|
|
|
} else {
|
2008-03-03 05:17:37 +01:00
|
|
|
$result = true;
|
2014-05-27 15:25:14 +02:00
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2014-02-20 07:27:13 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters whether the current image is displayable in the browser.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param bool $result Whether the image can be displayed. Default true.
|
|
|
|
* @param string $path Path to the image.
|
|
|
|
*/
|
|
|
|
return apply_filters( 'file_is_displayable_image', $result, $path );
|
2008-03-03 05:17:37 +01:00
|
|
|
}
|
2012-04-06 22:47:24 +02:00
|
|
|
|
2012-05-16 19:47:55 +02:00
|
|
|
/**
|
|
|
|
* Load an image resource for editing.
|
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
*
|
|
|
|
* @param string $attachment_id Attachment ID.
|
|
|
|
* @param string $mime_type Image mime type.
|
|
|
|
* @param string $size Optional. Image size, defaults to 'full'.
|
|
|
|
* @return resource|false The resulting image resource on success, false on failure.
|
|
|
|
*/
|
|
|
|
function load_image_to_edit( $attachment_id, $mime_type, $size = 'full' ) {
|
|
|
|
$filepath = _load_image_to_edit_path( $attachment_id, $size );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $filepath ) ) {
|
2012-04-06 22:47:24 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-04-06 22:47:24 +02:00
|
|
|
|
|
|
|
switch ( $mime_type ) {
|
|
|
|
case 'image/jpeg':
|
2017-12-01 00:11:00 +01:00
|
|
|
$image = imagecreatefromjpeg( $filepath );
|
2012-04-06 22:47:24 +02:00
|
|
|
break;
|
|
|
|
case 'image/png':
|
2017-12-01 00:11:00 +01:00
|
|
|
$image = imagecreatefrompng( $filepath );
|
2012-04-06 22:47:24 +02:00
|
|
|
break;
|
|
|
|
case 'image/gif':
|
2017-12-01 00:11:00 +01:00
|
|
|
$image = imagecreatefromgif( $filepath );
|
2012-04-06 22:47:24 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$image = false;
|
|
|
|
break;
|
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_resource( $image ) ) {
|
2014-02-20 07:27:13 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the current image being loaded for editing.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
*
|
|
|
|
* @param resource $image Current image.
|
|
|
|
* @param string $attachment_id Attachment ID.
|
|
|
|
* @param string $size Image size.
|
|
|
|
*/
|
|
|
|
$image = apply_filters( 'load_image_to_edit', $image, $attachment_id, $size );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( function_exists( 'imagealphablending' ) && function_exists( 'imagesavealpha' ) ) {
|
|
|
|
imagealphablending( $image, false );
|
|
|
|
imagesavealpha( $image, true );
|
2012-04-06 22:47:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $image;
|
|
|
|
}
|
2012-05-16 19:47:55 +02:00
|
|
|
|
|
|
|
/**
|
2012-05-16 20:11:19 +02:00
|
|
|
* Retrieve the path or url of an attachment's attached file.
|
2012-05-16 19:47:55 +02:00
|
|
|
*
|
|
|
|
* If the attached file is not present on the local filesystem (usually due to replication plugins),
|
|
|
|
* then the url of the file is returned if url fopen is supported.
|
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @param string $attachment_id Attachment ID.
|
|
|
|
* @param string $size Optional. Image size, defaults to 'full'.
|
|
|
|
* @return string|false File path or url on success, false on failure.
|
|
|
|
*/
|
|
|
|
function _load_image_to_edit_path( $attachment_id, $size = 'full' ) {
|
|
|
|
$filepath = get_attached_file( $attachment_id );
|
|
|
|
|
|
|
|
if ( $filepath && file_exists( $filepath ) ) {
|
2019-06-15 18:24:52 +02:00
|
|
|
if ( 'full' !== $size ) {
|
|
|
|
$data = image_get_intermediate_size( $attachment_id, $size );
|
|
|
|
|
|
|
|
if ( $data ) {
|
|
|
|
$filepath = path_join( dirname( $filepath ), $data['file'] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the path to the current image.
|
|
|
|
*
|
|
|
|
* The filter is evaluated for all image sizes except 'full'.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @param string $path Path to the current image.
|
|
|
|
* @param string $attachment_id Attachment ID.
|
|
|
|
* @param string $size Size of the image.
|
|
|
|
*/
|
|
|
|
$filepath = apply_filters( 'load_image_to_edit_filesystempath', $filepath, $attachment_id, $size );
|
|
|
|
}
|
2012-05-16 19:47:55 +02:00
|
|
|
}
|
2019-06-15 18:24:52 +02:00
|
|
|
} elseif ( function_exists( 'fopen' ) && ini_get( 'allow_url_fopen' ) ) {
|
2014-02-20 07:27:13 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the image URL if not in the local filesystem.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
|
|
|
* The filter is only evaluated if fopen is enabled on the server.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @param string $image_url Current image URL.
|
|
|
|
* @param string $attachment_id Attachment ID.
|
|
|
|
* @param string $size Size of the image.
|
|
|
|
*/
|
2012-05-16 19:47:55 +02:00
|
|
|
$filepath = apply_filters( 'load_image_to_edit_attachmenturl', wp_get_attachment_url( $attachment_id ), $attachment_id, $size );
|
|
|
|
}
|
|
|
|
|
2014-02-20 07:27:13 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the returned path or URL of the current image.
|
2014-02-20 07:27:13 +01:00
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
*
|
|
|
|
* @param string|bool $filepath File path or URL to current image, or false.
|
|
|
|
* @param string $attachment_id Attachment ID.
|
|
|
|
* @param string $size Size of the image.
|
|
|
|
*/
|
2012-05-16 19:47:55 +02:00
|
|
|
return apply_filters( 'load_image_to_edit_path', $filepath, $attachment_id, $size );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy an existing image file.
|
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @param string $attachment_id Attachment ID.
|
|
|
|
* @return string|false New file path on success, false on failure.
|
|
|
|
*/
|
|
|
|
function _copy_image_file( $attachment_id ) {
|
2019-06-15 03:02:52 +02:00
|
|
|
$dst_file = get_attached_file( $attachment_id );
|
|
|
|
$src_file = $dst_file;
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! file_exists( $src_file ) ) {
|
2012-05-16 19:47:55 +02:00
|
|
|
$src_file = _load_image_to_edit_path( $attachment_id );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-05-16 19:47:55 +02:00
|
|
|
|
|
|
|
if ( $src_file ) {
|
2019-03-01 21:58:52 +01:00
|
|
|
$dst_file = str_replace( wp_basename( $dst_file ), 'copy-' . wp_basename( $dst_file ), $dst_file );
|
|
|
|
$dst_file = dirname( $dst_file ) . '/' . wp_unique_filename( dirname( $dst_file ), wp_basename( $dst_file ) );
|
2012-06-10 03:26:12 +02:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
/*
|
|
|
|
* The directory containing the original file may no longer
|
|
|
|
* exist when using a replication plugin.
|
|
|
|
*/
|
2012-06-10 03:26:12 +02:00
|
|
|
wp_mkdir_p( dirname( $dst_file ) );
|
|
|
|
|
2019-07-09 07:45:58 +02:00
|
|
|
if ( ! copy( $src_file, $dst_file ) ) {
|
2012-05-16 19:47:55 +02:00
|
|
|
$dst_file = false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-05-16 19:47:55 +02:00
|
|
|
} else {
|
|
|
|
$dst_file = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $dst_file;
|
|
|
|
}
|