2007-05-25 03:16:21 -04:00
|
|
|
<?php
|
2007-11-03 14:33:19 -04:00
|
|
|
/**
|
|
|
|
* File contains all the administration image manipulation functions.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-09-16 20:40:10 -04:00
|
|
|
* @subpackage Administration
|
2007-11-03 14:33:19 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2008-09-16 20:40:10 -04:00
|
|
|
* Create a thumbnail from an Image given a maximum side size.
|
2007-11-03 14:33:19 -04:00
|
|
|
*
|
2008-09-16 20:40:10 -04:00
|
|
|
* This function can handle most image file formats which PHP supports. If PHP
|
|
|
|
* does not have the functionality to save in a file of the same format, the
|
|
|
|
* thumbnail will be created as a jpeg.
|
|
|
|
*
|
2008-10-10 14:21:16 -04:00
|
|
|
* @since 1.2.0
|
2007-11-03 14:33:19 -04:00
|
|
|
*
|
2008-09-16 20:40:10 -04:00
|
|
|
* @param mixed $file Filename of the original image, Or attachment id.
|
|
|
|
* @param int $max_side Maximum length of a single side for the thumbnail.
|
2010-01-09 05:03:55 -05:00
|
|
|
* @param mixed $deprecated Never used.
|
2008-09-16 20:40:10 -04:00
|
|
|
* @return string Thumbnail path on success, Error string on failure.
|
2007-11-03 14:33:19 -04:00
|
|
|
*/
|
2007-12-06 01:37:30 -05:00
|
|
|
function wp_create_thumbnail( $file, $max_side, $deprecated = '' ) {
|
2009-12-30 11:23:39 -05:00
|
|
|
if ( !empty( $deprecated ) )
|
2010-01-09 05:03:55 -05:00
|
|
|
_deprecated_argument( __FUNCTION__, '1.2' );
|
2008-03-02 23:17:37 -05:00
|
|
|
$thumbpath = image_resize( $file, $max_side, $max_side );
|
2007-11-03 14:33:19 -04:00
|
|
|
return apply_filters( 'wp_create_thumbnail', $thumbpath );
|
2007-05-25 03:16:21 -04:00
|
|
|
}
|
|
|
|
|
2007-11-03 14:33:19 -04:00
|
|
|
/**
|
2008-09-16 20:40:10 -04:00
|
|
|
* Crop an Image to a given size.
|
2007-11-03 14:33:19 -04:00
|
|
|
*
|
2008-10-10 14:21:16 -04:00
|
|
|
* @since 2.1.0
|
2007-11-03 14:33:19 -04:00
|
|
|
*
|
2012-04-12 17:02:24 -04:00
|
|
|
* @param string|int $src The source file or Attachment ID.
|
2008-09-16 20:40:10 -04: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.
|
2009-12-23 13:39:31 -05:00
|
|
|
* @return string|WP_Error|false New filepath on success, WP_Error or false on failure.
|
2007-11-03 14:33:19 -04:00
|
|
|
*/
|
2012-04-06 16:47:24 -04:00
|
|
|
function wp_crop_image( $src, $src_x, $src_y, $src_w, $src_h, $dst_w, $dst_h, $src_abs = false, $dst_file = false ) {
|
|
|
|
if ( is_numeric( $src ) ) { // Handle int as attachment ID
|
|
|
|
$src_file = get_attached_file( $src );
|
|
|
|
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.
|
|
|
|
$post = get_post( $src );
|
|
|
|
$src = load_image_to_edit( $src, $post->post_mime_type, 'full' );
|
|
|
|
} else {
|
|
|
|
$src = wp_load_image( $src_file );
|
|
|
|
}
|
|
|
|
} else {
|
2012-04-12 17:02:24 -04:00
|
|
|
$src = wp_load_image( $src );
|
2012-04-06 16:47:24 -04:00
|
|
|
}
|
2007-05-25 03:16:21 -04:00
|
|
|
|
2012-04-06 16:47:24 -04:00
|
|
|
if ( ! is_resource( $src ) )
|
2009-12-23 13:39:31 -05:00
|
|
|
return new WP_Error( 'error_loading_image', $src, $src_file );
|
2007-05-25 03:16:21 -04:00
|
|
|
|
2009-09-10 18:07:33 -04:00
|
|
|
$dst = wp_imagecreatetruecolor( $dst_w, $dst_h );
|
2007-05-25 03:16:21 -04:00
|
|
|
|
|
|
|
if ( $src_abs ) {
|
|
|
|
$src_w -= $src_x;
|
|
|
|
$src_h -= $src_y;
|
|
|
|
}
|
|
|
|
|
2012-04-06 16:47:24 -04:00
|
|
|
if ( function_exists( 'imageantialias' ) )
|
2007-05-25 03:16:21 -04:00
|
|
|
imageantialias( $dst, true );
|
2007-06-13 22:25:30 -04:00
|
|
|
|
2007-05-25 03:16:21 -04:00
|
|
|
imagecopyresampled( $dst, $src, 0, 0, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h );
|
2008-02-05 01:47:27 -05:00
|
|
|
|
|
|
|
imagedestroy( $src ); // Free up memory
|
2007-05-25 03:16:21 -04:00
|
|
|
|
2007-11-03 14:33:19 -04:00
|
|
|
if ( ! $dst_file )
|
|
|
|
$dst_file = str_replace( basename( $src_file ), 'cropped-' . basename( $src_file ), $src_file );
|
2007-05-25 03:16:21 -04:00
|
|
|
|
|
|
|
$dst_file = preg_replace( '/\\.[^\\.]+$/', '.jpg', $dst_file );
|
|
|
|
|
2012-04-06 16:47:24 -04:00
|
|
|
// The directory containing the original file may no longer exist when
|
|
|
|
// using a replication plugin.
|
|
|
|
wp_mkdir_p( dirname( $dst_file ) );
|
|
|
|
|
2009-03-02 16:55:40 -05:00
|
|
|
if ( imagejpeg( $dst, $dst_file, apply_filters( 'jpeg_quality', 90, 'wp_crop_image' ) ) )
|
2007-05-25 03:16:21 -04:00
|
|
|
return $dst_file;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-11-03 14:33:19 -04:00
|
|
|
/**
|
2009-12-10 01:14:36 -05:00
|
|
|
* Generate post thumbnail attachment meta data.
|
2007-11-03 14:33:19 -04:00
|
|
|
*
|
2008-10-10 14:21:16 -04:00
|
|
|
* @since 2.1.0
|
2008-09-16 20:40:10 -04:00
|
|
|
*
|
2008-10-10 14:21:16 -04: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 14:33:19 -04:00
|
|
|
*/
|
2007-05-25 03:16:21 -04:00
|
|
|
function wp_generate_attachment_metadata( $attachment_id, $file ) {
|
|
|
|
$attachment = get_post( $attachment_id );
|
|
|
|
|
|
|
|
$metadata = array();
|
2008-03-02 23:17:37 -05:00
|
|
|
if ( preg_match('!^image/!', get_post_mime_type( $attachment )) && file_is_displayable_image($file) ) {
|
2009-11-11 06:24:01 -05:00
|
|
|
$imagesize = getimagesize( $file );
|
2007-11-03 14:33:19 -04:00
|
|
|
$metadata['width'] = $imagesize[0];
|
|
|
|
$metadata['height'] = $imagesize[1];
|
2010-01-25 13:50:01 -05:00
|
|
|
list($uwidth, $uheight) = wp_constrain_dimensions($metadata['width'], $metadata['height'], 128, 96);
|
2007-05-25 03:16:21 -04:00
|
|
|
$metadata['hwstring_small'] = "height='$uheight' width='$uwidth'";
|
2008-12-09 13:03:31 -05:00
|
|
|
|
2008-09-02 18:55:39 -04:00
|
|
|
// Make the file path relative to the upload dir
|
2009-11-11 06:24:01 -05:00
|
|
|
$metadata['file'] = _wp_relative_upload_path($file);
|
2007-05-25 03:16:21 -04:00
|
|
|
|
2008-03-02 23:17:37 -05:00
|
|
|
// make thumbnails and other intermediate sizes
|
2009-12-08 16:08:19 -05:00
|
|
|
global $_wp_additional_image_sizes;
|
|
|
|
|
2010-01-08 03:51:12 -05:00
|
|
|
foreach ( get_intermediate_image_sizes() as $s ) {
|
2012-01-05 15:50:54 -05:00
|
|
|
$sizes[$s] = array( 'width' => '', 'height' => '', 'crop' => false );
|
2009-12-08 16:08:19 -05: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 04:44:53 -05:00
|
|
|
$sizes[$s]['width'] = get_option( "{$s}_size_w" ); // For default sizes set in options
|
2009-12-08 16:08:19 -05: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 04:44:53 -05:00
|
|
|
$sizes[$s]['height'] = get_option( "{$s}_size_h" ); // For default sizes set in options
|
2009-12-08 16:08:19 -05: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 04:44:53 -05:00
|
|
|
$sizes[$s]['crop'] = get_option( "{$s}_crop" ); // For default sizes set in options
|
2009-12-08 16:08:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$sizes = apply_filters( 'intermediate_image_sizes_advanced', $sizes );
|
2008-08-09 01:36:14 -04:00
|
|
|
|
2009-12-08 16:08:19 -05:00
|
|
|
foreach ($sizes as $size => $size_data ) {
|
|
|
|
$resized = image_make_intermediate_size( $file, $size_data['width'], $size_data['height'], $size_data['crop'] );
|
2008-03-02 23:17:37 -05:00
|
|
|
if ( $resized )
|
|
|
|
$metadata['sizes'][$size] = $resized;
|
2007-05-25 03:16:21 -04:00
|
|
|
}
|
2008-08-09 01:36:14 -04:00
|
|
|
|
2007-11-04 19:01:26 -05:00
|
|
|
// fetch additional metadata from exif/iptc
|
2009-11-11 06:24:01 -05:00
|
|
|
$image_meta = wp_read_image_metadata( $file );
|
|
|
|
if ( $image_meta )
|
2007-11-04 19:01:26 -05:00
|
|
|
$metadata['image_meta'] = $image_meta;
|
|
|
|
|
2007-05-25 03:16:21 -04:00
|
|
|
}
|
2008-09-16 20:40:10 -04:00
|
|
|
|
2009-07-27 19:08:21 -04:00
|
|
|
return apply_filters( 'wp_generate_attachment_metadata', $metadata, $attachment_id );
|
2007-05-25 03:16:21 -04:00
|
|
|
}
|
|
|
|
|
2007-11-03 14:33:19 -04:00
|
|
|
/**
|
2011-09-03 10:18:10 -04:00
|
|
|
* Calculated the new dimensions for a downsampled image.
|
2007-11-03 14:33:19 -04:00
|
|
|
*
|
2008-10-10 14:21:16 -04:00
|
|
|
* @since 2.0.0
|
2008-09-16 20:40:10 -04:00
|
|
|
* @see wp_constrain_dimensions()
|
|
|
|
*
|
|
|
|
* @param int $width Current width of the image
|
|
|
|
* @param int $height Current height of the image
|
|
|
|
* @return mixed Array(height,width) of shrunk dimensions.
|
2007-11-03 14:33:19 -04:00
|
|
|
*/
|
2010-01-25 13:50:01 -05:00
|
|
|
function get_udims( $width, $height) {
|
|
|
|
return wp_constrain_dimensions( $width, $height, 128, 96 );
|
2008-02-21 01:00:15 -05:00
|
|
|
}
|
|
|
|
|
2008-09-16 20:40:10 -04:00
|
|
|
/**
|
|
|
|
* Convert a fraction string to a decimal.
|
|
|
|
*
|
2008-10-10 14:21:16 -04:00
|
|
|
* @since 2.5.0
|
2008-09-16 20:40:10 -04:00
|
|
|
*
|
|
|
|
* @param string $str
|
|
|
|
* @return int|float
|
|
|
|
*/
|
2007-11-04 19:01:26 -05:00
|
|
|
function wp_exif_frac2dec($str) {
|
|
|
|
@list( $n, $d ) = explode( '/', $str );
|
|
|
|
if ( !empty($d) )
|
|
|
|
return $n / $d;
|
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
|
2008-09-16 20:40:10 -04:00
|
|
|
/**
|
|
|
|
* Convert the exif date format to a unix timestamp.
|
|
|
|
*
|
2008-10-10 14:21:16 -04:00
|
|
|
* @since 2.5.0
|
2008-09-16 20:40:10 -04:00
|
|
|
*
|
|
|
|
* @param string $str
|
|
|
|
* @return int
|
|
|
|
*/
|
2007-11-04 19:01:26 -05: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-16 20:40:10 -04:00
|
|
|
/**
|
2008-10-01 21:03:26 -04:00
|
|
|
* Get extended image metadata, exif or iptc as available.
|
2008-09-16 20:40:10 -04:00
|
|
|
*
|
2008-10-10 14:21:16 -04: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-16 20:40:10 -04:00
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @return bool|array False on failure. Image metadata array on success.
|
|
|
|
*/
|
2007-11-04 19:01:26 -05:00
|
|
|
function wp_read_image_metadata( $file ) {
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( ! file_exists( $file ) )
|
2007-11-04 19:01:26 -05:00
|
|
|
return false;
|
|
|
|
|
2010-02-20 07:09:30 -05:00
|
|
|
list( , , $sourceImageType ) = getimagesize( $file );
|
2007-12-20 17:18:28 -05:00
|
|
|
|
2008-09-16 20:40:10 -04: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-13 18:45:31 -05:00
|
|
|
// that are likely to be useful. Fractions and numbers are converted to
|
2008-09-16 20:40:10 -04:00
|
|
|
// floats, dates to unix timestamps, and everything else to strings.
|
2007-11-04 19:01:26 -05:00
|
|
|
$meta = array(
|
|
|
|
'aperture' => 0,
|
|
|
|
'credit' => '',
|
|
|
|
'camera' => '',
|
|
|
|
'caption' => '',
|
|
|
|
'created_timestamp' => 0,
|
|
|
|
'copyright' => '',
|
|
|
|
'focal_length' => 0,
|
|
|
|
'iso' => 0,
|
|
|
|
'shutter_speed' => 0,
|
|
|
|
'title' => '',
|
|
|
|
);
|
|
|
|
|
2008-09-16 20:40:10 -04:00
|
|
|
// read iptc first, since it might contain data not available in exif such
|
|
|
|
// as caption, description etc
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( is_callable( 'iptcparse' ) ) {
|
|
|
|
getimagesize( $file, $info );
|
2010-02-20 04:17:34 -05:00
|
|
|
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( ! empty( $info['APP13'] ) ) {
|
|
|
|
$iptc = iptcparse( $info['APP13'] );
|
2010-02-20 04:17:34 -05:00
|
|
|
|
2010-02-20 07:09:30 -05:00
|
|
|
// headline, "A brief synopsis of the caption."
|
|
|
|
if ( ! empty( $iptc['2#105'][0] ) )
|
2010-02-20 04:17:34 -05:00
|
|
|
$meta['title'] = utf8_encode( trim( $iptc['2#105'][0] ) );
|
2010-02-20 07:09:30 -05: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] ) )
|
2010-02-20 04:17:34 -05:00
|
|
|
$meta['title'] = utf8_encode( trim( $iptc['2#005'][0] ) );
|
|
|
|
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( ! empty( $iptc['2#120'][0] ) ) { // description / legacy caption
|
2010-02-20 04:17:34 -05:00
|
|
|
$caption = utf8_encode( trim( $iptc['2#120'][0] ) );
|
|
|
|
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 07:09:30 -05:00
|
|
|
if ( ! empty( $iptc['2#110'][0] ) ) // credit
|
2008-08-27 02:54:48 -04:00
|
|
|
$meta['credit'] = utf8_encode(trim($iptc['2#110'][0]));
|
2010-02-20 07:09:30 -05:00
|
|
|
elseif ( ! empty( $iptc['2#080'][0] ) ) // creator / legacy byline
|
2008-08-27 02:54:48 -04:00
|
|
|
$meta['credit'] = utf8_encode(trim($iptc['2#080'][0]));
|
2010-02-20 04:17:34 -05:00
|
|
|
|
2010-02-20 07:09:30 -05: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 04:17:34 -05:00
|
|
|
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( ! empty( $iptc['2#116'][0] ) ) // copyright
|
|
|
|
$meta['copyright'] = utf8_encode( trim( $iptc['2#116'][0] ) );
|
2007-11-04 19:01:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fetch additional info from exif if available
|
2010-02-20 07:09:30 -05: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 16:19:15 -04:00
|
|
|
$exif = @exif_read_data( $file );
|
2010-02-20 04:17:34 -05:00
|
|
|
|
|
|
|
if ( !empty( $exif['Title'] ) )
|
|
|
|
$meta['title'] = utf8_encode( trim( $exif['Title'] ) );
|
|
|
|
|
|
|
|
if ( ! empty( $exif['ImageDescription'] ) ) {
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( empty( $meta['title'] ) && strlen( $exif['ImageDescription'] ) < 80 ) {
|
2010-02-20 04:17:34 -05:00
|
|
|
// Assume the title is stored in ImageDescription
|
|
|
|
$meta['title'] = utf8_encode( trim( $exif['ImageDescription'] ) );
|
|
|
|
if ( ! empty( $exif['COMPUTED']['UserComment'] ) && trim( $exif['COMPUTED']['UserComment'] ) != $meta['title'] )
|
|
|
|
$meta['caption'] = utf8_encode( trim( $exif['COMPUTED']['UserComment'] ) );
|
|
|
|
} elseif ( trim( $exif['ImageDescription'] ) != $meta['title'] ) {
|
|
|
|
$meta['caption'] = utf8_encode( trim( $exif['ImageDescription'] ) );
|
|
|
|
}
|
|
|
|
} elseif ( ! empty( $exif['Comments'] ) && trim( $exif['Comments'] ) != $meta['title'] ) {
|
|
|
|
$meta['caption'] = utf8_encode( trim( $exif['Comments'] ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! empty( $exif['Artist'] ) )
|
|
|
|
$meta['credit'] = utf8_encode( trim( $exif['Artist'] ) );
|
|
|
|
elseif ( ! empty($exif['Author'] ) )
|
|
|
|
$meta['credit'] = utf8_encode( trim( $exif['Author'] ) );
|
|
|
|
|
|
|
|
if ( ! empty( $exif['Copyright'] ) )
|
|
|
|
$meta['copyright'] = utf8_encode( trim( $exif['Copyright'] ) );
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( ! empty($exif['FNumber'] ) )
|
2007-11-04 19:01:26 -05:00
|
|
|
$meta['aperture'] = round( wp_exif_frac2dec( $exif['FNumber'] ), 2 );
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( ! empty($exif['Model'] ) )
|
|
|
|
$meta['camera'] = utf8_encode( trim( $exif['Model'] ) );
|
|
|
|
if ( ! empty($exif['DateTimeDigitized'] ) )
|
|
|
|
$meta['created_timestamp'] = wp_exif_date2ts($exif['DateTimeDigitized'] );
|
|
|
|
if ( ! empty($exif['FocalLength'] ) )
|
2007-11-04 19:01:26 -05:00
|
|
|
$meta['focal_length'] = wp_exif_frac2dec( $exif['FocalLength'] );
|
2010-02-20 07:09:30 -05:00
|
|
|
if ( ! empty($exif['ISOSpeedRatings'] ) )
|
|
|
|
$meta['iso'] = utf8_encode( trim( $exif['ISOSpeedRatings'] ) );
|
|
|
|
if ( ! empty($exif['ExposureTime'] ) )
|
2007-11-04 19:01:26 -05:00
|
|
|
$meta['shutter_speed'] = wp_exif_frac2dec( $exif['ExposureTime'] );
|
|
|
|
}
|
|
|
|
|
2007-12-20 17:18:28 -05:00
|
|
|
return apply_filters( 'wp_read_image_metadata', $meta, $file, $sourceImageType );
|
2007-11-04 19:01:26 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-09-16 20:40:10 -04:00
|
|
|
/**
|
|
|
|
* Validate that file is an image.
|
|
|
|
*
|
2008-10-10 14:21:16 -04:00
|
|
|
* @since 2.5.0
|
2008-09-16 20:40:10 -04:00
|
|
|
*
|
|
|
|
* @param string $path File path to test if valid image.
|
|
|
|
* @return bool True if valid image, false if not valid image.
|
|
|
|
*/
|
2008-03-02 23:17:37 -05:00
|
|
|
function file_is_valid_image($path) {
|
|
|
|
$size = @getimagesize($path);
|
|
|
|
return !empty($size);
|
|
|
|
}
|
|
|
|
|
2008-09-16 20:40:10 -04:00
|
|
|
/**
|
|
|
|
* Validate that file is suitable for displaying within a web page.
|
|
|
|
*
|
2008-10-10 14:21:16 -04:00
|
|
|
* @since 2.5.0
|
2008-09-16 20:40:10 -04: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-02 23:17:37 -05:00
|
|
|
function file_is_displayable_image($path) {
|
|
|
|
$info = @getimagesize($path);
|
|
|
|
if ( empty($info) )
|
|
|
|
$result = false;
|
2008-11-15 18:16:36 -05: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-02 23:17:37 -05:00
|
|
|
$result = false;
|
|
|
|
else
|
|
|
|
$result = true;
|
2008-08-09 01:36:14 -04:00
|
|
|
|
2008-03-02 23:17:37 -05:00
|
|
|
return apply_filters('file_is_displayable_image', $result, $path);
|
|
|
|
}
|
2012-04-06 16:47:24 -04:00
|
|
|
|
|
|
|
function load_image_to_edit($post_id, $mime_type, $size = 'full') {
|
|
|
|
$filepath = get_attached_file($post_id);
|
|
|
|
|
|
|
|
if ( $filepath && file_exists($filepath) ) {
|
|
|
|
if ( 'full' != $size && ( $data = image_get_intermediate_size($post_id, $size) ) ) {
|
|
|
|
$filepath = apply_filters('load_image_to_edit_filesystempath', path_join( dirname($filepath), $data['file'] ), $post_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($post_id) , $post_id, $size);
|
|
|
|
}
|
|
|
|
|
|
|
|
$filepath = apply_filters('load_image_to_edit_path', $filepath, $post_id, $size);
|
|
|
|
if ( empty($filepath) )
|
|
|
|
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) ) {
|
|
|
|
$image = apply_filters('load_image_to_edit', $image, $post_id, $size);
|
|
|
|
if ( function_exists('imagealphablending') && function_exists('imagesavealpha') ) {
|
|
|
|
imagealphablending($image, false);
|
|
|
|
imagesavealpha($image, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $image;
|
|
|
|
}
|