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;
|
|
|
|
if ( is_numeric( $src ) ) { // Handle int as attachment ID
|
|
|
|
$src_file = get_attached_file( $src );
|
|
|
|
|
2012-04-06 22:47:24 +02:00
|
|
|
if ( ! file_exists( $src_file ) ) {
|
|
|
|
// If the file doesn't exist, attempt a url fopen on the src link.
|
|
|
|
// 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 );
|
2012-10-11 20:59:41 +02:00
|
|
|
if ( is_wp_error( $editor ) )
|
|
|
|
return $editor;
|
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 );
|
2012-10-01 22:59:06 +02:00
|
|
|
if ( is_wp_error( $src ) )
|
|
|
|
return $src;
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2007-11-03 19:33:19 +01:00
|
|
|
if ( ! $dst_file )
|
|
|
|
$dst_file = str_replace( basename( $src_file ), 'cropped-' . basename( $src_file ), $src_file );
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2012-04-06 22:47:24 +02:00
|
|
|
// The directory containing the original file may no longer exist when
|
|
|
|
// using a replication plugin.
|
|
|
|
wp_mkdir_p( dirname( $dst_file ) );
|
|
|
|
|
2012-05-14 19:53:03 +02:00
|
|
|
$dst_file = dirname( $dst_file ) . '/' . wp_unique_filename( dirname( $dst_file ), basename( $dst_file ) );
|
|
|
|
|
2012-10-01 22:59:06 +02:00
|
|
|
$result = $editor->save( $dst_file );
|
2013-02-02 03:01:59 +01:00
|
|
|
if ( is_wp_error( $result ) )
|
|
|
|
return $result;
|
|
|
|
|
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
|
|
|
/**
|
2009-12-10 07:14:36 +01:00
|
|
|
* Generate post thumbnail attachment meta data.
|
2007-11-03 19:33:19 +01:00
|
|
|
*
|
2008-10-10 20:21:16 +02:00
|
|
|
* @since 2.1.0
|
2008-09-17 02:40:10 +02:00
|
|
|
*
|
2008-10-10 20:21:16 +02:00
|
|
|
* @param int $attachment_id Attachment Id to process.
|
|
|
|
* @param string $file Filepath of the Attached image.
|
|
|
|
* @return mixed Metadata for attachment.
|
2007-11-03 19:33:19 +01:00
|
|
|
*/
|
2007-05-25 09:16:21 +02:00
|
|
|
function wp_generate_attachment_metadata( $attachment_id, $file ) {
|
|
|
|
$attachment = get_post( $attachment_id );
|
|
|
|
|
|
|
|
$metadata = array();
|
2013-03-21 05:55:42 +01:00
|
|
|
$support = false;
|
2008-03-03 05:17:37 +01:00
|
|
|
if ( preg_match('!^image/!', get_post_mime_type( $attachment )) && file_is_displayable_image($file) ) {
|
2009-11-11 12:24:01 +01:00
|
|
|
$imagesize = getimagesize( $file );
|
2007-11-03 19:33:19 +01:00
|
|
|
$metadata['width'] = $imagesize[0];
|
|
|
|
$metadata['height'] = $imagesize[1];
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2008-09-03 00:55:39 +02:00
|
|
|
// Make the file path relative to the upload dir
|
2009-11-11 12:24:01 +01:00
|
|
|
$metadata['file'] = _wp_relative_upload_path($file);
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2008-03-03 05:17:37 +01:00
|
|
|
// make thumbnails and other intermediate sizes
|
2009-12-08 22:08:19 +01:00
|
|
|
global $_wp_additional_image_sizes;
|
|
|
|
|
2013-03-07 05:46:19 +01:00
|
|
|
$sizes = array();
|
2010-01-08 09:51:12 +01:00
|
|
|
foreach ( get_intermediate_image_sizes() as $s ) {
|
2012-01-05 21:50:54 +01:00
|
|
|
$sizes[$s] = array( 'width' => '', 'height' => '', 'crop' => false );
|
2009-12-08 22:08:19 +01:00
|
|
|
if ( isset( $_wp_additional_image_sizes[$s]['width'] ) )
|
|
|
|
$sizes[$s]['width'] = intval( $_wp_additional_image_sizes[$s]['width'] ); // For theme-added sizes
|
|
|
|
else
|
2009-12-09 10:44:53 +01:00
|
|
|
$sizes[$s]['width'] = get_option( "{$s}_size_w" ); // For default sizes set in options
|
2009-12-08 22:08:19 +01:00
|
|
|
if ( isset( $_wp_additional_image_sizes[$s]['height'] ) )
|
|
|
|
$sizes[$s]['height'] = intval( $_wp_additional_image_sizes[$s]['height'] ); // For theme-added sizes
|
|
|
|
else
|
2009-12-09 10:44:53 +01:00
|
|
|
$sizes[$s]['height'] = get_option( "{$s}_size_h" ); // For default sizes set in options
|
2009-12-08 22:08:19 +01:00
|
|
|
if ( isset( $_wp_additional_image_sizes[$s]['crop'] ) )
|
|
|
|
$sizes[$s]['crop'] = intval( $_wp_additional_image_sizes[$s]['crop'] ); // For theme-added sizes
|
|
|
|
else
|
2009-12-09 10:44:53 +01:00
|
|
|
$sizes[$s]['crop'] = get_option( "{$s}_crop" ); // For default sizes set in options
|
2009-12-08 22:08:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$sizes = apply_filters( 'intermediate_image_sizes_advanced', $sizes );
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2012-11-14 15:26:52 +01:00
|
|
|
if ( $sizes ) {
|
2012-11-22 10:52:16 +01:00
|
|
|
$editor = wp_get_image_editor( $file );
|
2012-10-11 20:59:41 +02:00
|
|
|
|
2012-11-14 15:26:52 +01:00
|
|
|
if ( ! is_wp_error( $editor ) )
|
|
|
|
$metadata['sizes'] = $editor->multi_resize( $sizes );
|
|
|
|
} else {
|
|
|
|
$metadata['sizes'] = array();
|
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2007-11-05 01:01:26 +01:00
|
|
|
// fetch additional metadata from exif/iptc
|
2009-11-11 12:24:01 +01:00
|
|
|
$image_meta = wp_read_image_metadata( $file );
|
|
|
|
if ( $image_meta )
|
2007-11-05 01:01:26 +01:00
|
|
|
$metadata['image_meta'] = $image_meta;
|
|
|
|
|
2013-03-21 05:55:42 +01:00
|
|
|
} elseif ( preg_match( '#^video/#', get_post_mime_type( $attachment ) ) ) {
|
|
|
|
$metadata = wp_read_video_metadata( $file );
|
|
|
|
$support = current_theme_supports( 'post-thumbnails', 'attachment:video' ) && post_type_supports( 'attachment:video', 'thumbnail' );
|
|
|
|
} elseif ( preg_match( '#^audio/#', get_post_mime_type( $attachment ) ) ) {
|
|
|
|
$metadata = wp_read_audio_metadata( $file );
|
|
|
|
$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'] ) ) {
|
|
|
|
$ext = '.jpg';
|
|
|
|
switch ( $metadata['image']['mime'] ) {
|
|
|
|
case 'image/gif':
|
|
|
|
$ext = '.gif';
|
|
|
|
break;
|
|
|
|
case 'image/png':
|
|
|
|
$ext = '.png';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$basename = str_replace( '.', '-', basename( $file ) ) . '-image' . $ext;
|
|
|
|
$uploaded = wp_upload_bits( $basename, '', $metadata['image']['data'] );
|
|
|
|
if ( false === $uploaded['error'] ) {
|
|
|
|
$attachment = array(
|
|
|
|
'post_mime_type' => $metadata['image']['mime'],
|
|
|
|
'post_type' => 'attachment',
|
|
|
|
'post_content' => '',
|
|
|
|
);
|
|
|
|
$sub_attachment_id = wp_insert_attachment( $attachment, $uploaded['file'] );
|
|
|
|
$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 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// remove the blob of binary data from the array
|
|
|
|
unset( $metadata['image']['data'] );
|
|
|
|
|
2009-07-28 01:08:21 +02:00
|
|
|
return apply_filters( 'wp_generate_attachment_metadata', $metadata, $attachment_id );
|
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
|
|
|
|
*/
|
2007-11-05 01:01:26 +01:00
|
|
|
function wp_exif_frac2dec($str) {
|
|
|
|
@list( $n, $d ) = explode( '/', $str );
|
|
|
|
if ( !empty($d) )
|
|
|
|
return $n / $d;
|
|
|
|
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
|
|
|
|
*/
|
2007-11-05 01:01:26 +01:00
|
|
|
function wp_exif_date2ts($str) {
|
|
|
|
@list( $date, $time ) = explode( ' ', trim($str) );
|
|
|
|
@list( $y, $m, $d ) = explode( ':', $date );
|
|
|
|
|
|
|
|
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 ) {
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! file_exists( $file ) )
|
2007-11-05 01:01:26 +01:00
|
|
|
return false;
|
|
|
|
|
2010-02-20 13:09:30 +01:00
|
|
|
list( , , $sourceImageType ) = getimagesize( $file );
|
2007-12-20 23:18:28 +01:00
|
|
|
|
2008-09-17 02:40:10 +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
|
2011-12-14 00:45:31 +01:00
|
|
|
// that are likely to be useful. Fractions and numbers are converted to
|
2008-09-17 02:40:10 +02:00
|
|
|
// floats, dates to unix timestamps, and everything else to strings.
|
2007-11-05 01:01:26 +01:00
|
|
|
$meta = array(
|
|
|
|
'aperture' => 0,
|
|
|
|
'credit' => '',
|
|
|
|
'camera' => '',
|
|
|
|
'caption' => '',
|
|
|
|
'created_timestamp' => 0,
|
|
|
|
'copyright' => '',
|
|
|
|
'focal_length' => 0,
|
|
|
|
'iso' => 0,
|
|
|
|
'shutter_speed' => 0,
|
|
|
|
'title' => '',
|
|
|
|
);
|
|
|
|
|
2008-09-17 02:40:10 +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' ) ) {
|
|
|
|
getimagesize( $file, $info );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! empty( $info['APP13'] ) ) {
|
|
|
|
$iptc = iptcparse( $info['APP13'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2010-02-20 13:09:30 +01:00
|
|
|
// headline, "A brief synopsis of the caption."
|
|
|
|
if ( ! empty( $iptc['2#105'][0] ) )
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['title'] = trim( $iptc['2#105'][0] );
|
2010-02-20 13:09:30 +01:00
|
|
|
// title, "Many use the Title field to store the filename of the image, though the field may be used in many ways."
|
|
|
|
elseif ( ! empty( $iptc['2#005'][0] ) )
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['title'] = trim( $iptc['2#005'][0] );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2010-02-20 13:09:30 +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] );
|
2010-02-20 10:17:34 +01:00
|
|
|
if ( empty( $meta['title'] ) ) {
|
|
|
|
// Assume the title is stored in 2:120 if it's short.
|
|
|
|
if ( strlen( $caption ) < 80 )
|
|
|
|
$meta['title'] = $caption;
|
|
|
|
else
|
|
|
|
$meta['caption'] = $caption;
|
|
|
|
} elseif ( $caption != $meta['title'] ) {
|
|
|
|
$meta['caption'] = $caption;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! empty( $iptc['2#110'][0] ) ) // credit
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['credit'] = trim( $iptc['2#110'][0] );
|
2010-02-20 13:09:30 +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] );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! empty( $iptc['2#055'][0] ) and ! empty( $iptc['2#060'][0] ) ) // created date and time
|
|
|
|
$meta['created_timestamp'] = strtotime( $iptc['2#055'][0] . ' ' . $iptc['2#060'][0] );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! empty( $iptc['2#116'][0] ) ) // copyright
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['copyright'] = trim( $iptc['2#116'][0] );
|
2007-11-05 01:01:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fetch additional info from exif if available
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( is_callable( 'exif_read_data' ) && in_array( $sourceImageType, apply_filters( 'wp_read_image_metadata_types', array( IMAGETYPE_JPEG, IMAGETYPE_TIFF_II, IMAGETYPE_TIFF_MM ) ) ) ) {
|
2008-04-14 22:19:15 +02:00
|
|
|
$exif = @exif_read_data( $file );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
|
|
|
if ( !empty( $exif['Title'] ) )
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['title'] = trim( $exif['Title'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
|
|
|
if ( ! empty( $exif['ImageDescription'] ) ) {
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( empty( $meta['title'] ) && strlen( $exif['ImageDescription'] ) < 80 ) {
|
2010-02-20 10:17:34 +01:00
|
|
|
// Assume the title is stored in ImageDescription
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['title'] = trim( $exif['ImageDescription'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
if ( ! empty( $exif['COMPUTED']['UserComment'] ) && trim( $exif['COMPUTED']['UserComment'] ) != $meta['title'] )
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['caption'] = trim( $exif['COMPUTED']['UserComment'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
} elseif ( trim( $exif['ImageDescription'] ) != $meta['title'] ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['caption'] = trim( $exif['ImageDescription'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
}
|
|
|
|
} elseif ( ! empty( $exif['Comments'] ) && trim( $exif['Comments'] ) != $meta['title'] ) {
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['caption'] = trim( $exif['Comments'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! empty( $exif['Artist'] ) )
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['credit'] = trim( $exif['Artist'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
elseif ( ! empty($exif['Author'] ) )
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['credit'] = trim( $exif['Author'] );
|
2010-02-20 10:17:34 +01:00
|
|
|
|
|
|
|
if ( ! empty( $exif['Copyright'] ) )
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['copyright'] = trim( $exif['Copyright'] );
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! empty($exif['FNumber'] ) )
|
2007-11-05 01:01:26 +01:00
|
|
|
$meta['aperture'] = round( wp_exif_frac2dec( $exif['FNumber'] ), 2 );
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! empty($exif['Model'] ) )
|
2012-09-19 01:38:25 +02:00
|
|
|
$meta['camera'] = trim( $exif['Model'] );
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! 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'] );
|
2012-06-02 03:39:00 +02:00
|
|
|
if ( ! empty($exif['ISOSpeedRatings'] ) ) {
|
|
|
|
$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
|
|
|
}
|
2010-02-20 13:09:30 +01:00
|
|
|
if ( ! empty($exif['ExposureTime'] ) )
|
2012-10-28 17:17:56 +01:00
|
|
|
$meta['shutter_speed'] = (string) wp_exif_frac2dec( $exif['ExposureTime'] );
|
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 ) {
|
|
|
|
if ( $meta[ $key ] && ! seems_utf8( $meta[ $key ] ) )
|
|
|
|
$meta[ $key ] = utf8_encode( $meta[ $key ] );
|
|
|
|
}
|
|
|
|
|
2007-12-20 23:18:28 +01:00
|
|
|
return apply_filters( 'wp_read_image_metadata', $meta, $file, $sourceImageType );
|
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.
|
|
|
|
*/
|
2008-03-03 05:17:37 +01:00
|
|
|
function file_is_valid_image($path) {
|
|
|
|
$size = @getimagesize($path);
|
|
|
|
return !empty($size);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
* @uses apply_filters() Calls 'file_is_displayable_image' on $result and $path.
|
|
|
|
*
|
|
|
|
* @param string $path File path to test.
|
|
|
|
* @return bool True if suitable, false if not suitable.
|
|
|
|
*/
|
2008-03-03 05:17:37 +01:00
|
|
|
function file_is_displayable_image($path) {
|
|
|
|
$info = @getimagesize($path);
|
|
|
|
if ( empty($info) )
|
|
|
|
$result = false;
|
2008-11-16 00:16:36 +01:00
|
|
|
elseif ( !in_array($info[2], array(IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG)) ) // only gif, jpeg and png images can reliably be displayed
|
2008-03-03 05:17:37 +01:00
|
|
|
$result = false;
|
|
|
|
else
|
|
|
|
$result = true;
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-03-03 05:17:37 +01:00
|
|
|
return apply_filters('file_is_displayable_image', $result, $path);
|
|
|
|
}
|
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 );
|
|
|
|
if ( empty( $filepath ) )
|
2012-04-06 22:47:24 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
switch ( $mime_type ) {
|
|
|
|
case 'image/jpeg':
|
|
|
|
$image = imagecreatefromjpeg($filepath);
|
|
|
|
break;
|
|
|
|
case 'image/png':
|
|
|
|
$image = imagecreatefrompng($filepath);
|
|
|
|
break;
|
|
|
|
case 'image/gif':
|
|
|
|
$image = imagecreatefromgif($filepath);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$image = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( is_resource($image) ) {
|
2012-05-16 19:47:55 +02:00
|
|
|
$image = apply_filters('load_image_to_edit', $image, $attachment_id, $size);
|
2012-04-06 22:47:24 +02:00
|
|
|
if ( function_exists('imagealphablending') && function_exists('imagesavealpha') ) {
|
|
|
|
imagealphablending($image, false);
|
|
|
|
imagesavealpha($image, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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 ) ) {
|
|
|
|
if ( 'full' != $size && ( $data = image_get_intermediate_size( $attachment_id, $size ) ) ) {
|
|
|
|
$filepath = apply_filters( 'load_image_to_edit_filesystempath', path_join( dirname( $filepath ), $data['file'] ), $attachment_id, $size );
|
|
|
|
}
|
|
|
|
} elseif ( function_exists( 'fopen' ) && function_exists( 'ini_get' ) && true == ini_get( 'allow_url_fopen' ) ) {
|
|
|
|
$filepath = apply_filters( 'load_image_to_edit_attachmenturl', wp_get_attachment_url( $attachment_id ), $attachment_id, $size );
|
|
|
|
}
|
|
|
|
|
|
|
|
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 ) {
|
|
|
|
$dst_file = $src_file = get_attached_file( $attachment_id );
|
2012-05-27 18:25:43 +02:00
|
|
|
if ( ! file_exists( $src_file ) )
|
2012-05-16 19:47:55 +02:00
|
|
|
$src_file = _load_image_to_edit_path( $attachment_id );
|
|
|
|
|
|
|
|
if ( $src_file ) {
|
|
|
|
$dst_file = str_replace( basename( $dst_file ), 'copy-' . basename( $dst_file ), $dst_file );
|
2012-05-27 18:25:43 +02:00
|
|
|
$dst_file = dirname( $dst_file ) . '/' . wp_unique_filename( dirname( $dst_file ), basename( $dst_file ) );
|
2012-06-10 03:26:12 +02:00
|
|
|
|
|
|
|
// The directory containing the original file may no longer exist when
|
|
|
|
// using a replication plugin.
|
|
|
|
wp_mkdir_p( dirname( $dst_file ) );
|
|
|
|
|
2012-05-16 19:47:55 +02:00
|
|
|
if ( ! @copy( $src_file, $dst_file ) )
|
|
|
|
$dst_file = false;
|
|
|
|
} else {
|
|
|
|
$dst_file = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $dst_file;
|
|
|
|
}
|