mcm_8184 Published on December 31, 2008 in Mall of Emirates, Desert SafariFull resolution (2832 × 4256) ← Previous Next →
Funky shutter speed… we could do to normalize that better coming into WP. That mean 15 seconds? Reply
Weirder thing is, that wasn’t a long exposure. I was holding up the camera over the wall with one hand. It was a sub-second snap. Reply
Exif says 1/60. That number is correct… scientific notation… just a really strange way to represent it. Surely this can’t be the first 1/60 shot you’ve taken! Reply
You fixed it! Thank you. For future reference here is the code: function needs_more_precision( $decimal ) { if ( preg_match( '#([0-4]{4,}|5{3,}6|6{3,}7|7{3,}8|8{3,}9)$#', $decimal, $match ) ) { if ( $match ) { $repeat = $match[0]{0}; if ( $repeat < 5 ) $decimal = preg_replace( '#' . $repeat . '{4,}$#', str_repeat( $repeat, 100 ), $decimal ); else $decimal = preg_replace( '#' . $repeat . '{3,}' . ($repeat + 1) . '$#', str_repeat( $repeat, 100) . ($repeat + 1), $decimal ); } } return $decimal; }
Funky shutter speed… we could do to normalize that better coming into WP. That mean 15 seconds?
Yeah that’s mad weird.
Weirder thing is, that wasn’t a long exposure. I was holding up the camera over the wall with one hand. It was a sub-second snap.
Exif says 1/60. That number is correct… scientific notation… just a really strange way to represent it. Surely this can’t be the first 1/60 shot you’ve taken!
Must be a bug in the
convert()
function in your theme’simage.php
You fixed it! Thank you. For future reference here is the code: