Make WordPress Core

Ticket #28916: 28916.patch

File 28916.patch, 684 bytes (added by shanebp, 10 years ago)
  • image.php

     
    269269                'iso' => 0,
    270270                'shutter_speed' => 0,
    271271                'title' => '',
     272                'orientation' => 0,
    272273        );
    273274
    274275        // read iptc first, since it might contain data not available in exif such
     
    379380                if ( ! empty( $exif['ExposureTime'] ) ) {
    380381                        $meta['shutter_speed'] = (string) wp_exif_frac2dec( $exif['ExposureTime'] );
    381382                }
     383                if ( ! empty( $exif['Orientation'] ) ) {
     384                        $meta['orientation'] = $exif['Orientation'];
     385                }       
    382386        }
    383387
    384388        foreach ( array( 'title', 'caption', 'credit', 'copyright', 'camera', 'iso' ) as $key ) {