PageRenderTime 71ms CodeModel.GetById 35ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/includes/image-edit.php

https://github.com/younggive/WordPress
PHP | 622 lines | 510 code | 95 blank | 17 comment | 127 complexity | 10906c3ad3ff01d5a584ed3a5cebe224 MD5 | raw file
Possible License(s): GPL-2.0, AGPL-1.0, LGPL-2.1
  1. <?php
  2. /**
  3. * WordPress Image Editor
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. function wp_image_editor($post_id, $msg = false) {
  9. $nonce = wp_create_nonce("image_editor-$post_id");
  10. $meta = wp_get_attachment_metadata($post_id);
  11. $thumb = image_get_intermediate_size($post_id, 'thumbnail');
  12. $sub_sizes = isset($meta['sizes']) && is_array($meta['sizes']);
  13. $note = '';
  14. if ( is_array($meta) && isset($meta['width']) )
  15. $big = max( $meta['width'], $meta['height'] );
  16. else
  17. die( __('Image data does not exist. Please re-upload the image.') );
  18. $sizer = $big > 400 ? 400 / $big : 1;
  19. $backup_sizes = get_post_meta( $post_id, '_wp_attachment_backup_sizes', true );
  20. $can_restore = !empty($backup_sizes) && isset($backup_sizes['full-orig'])
  21. && $backup_sizes['full-orig']['file'] != basename($meta['file']);
  22. if ( $msg ) {
  23. if ( isset($msg->error) )
  24. $note = "<div class='error'><p>$msg->error</p></div>";
  25. elseif ( isset($msg->msg) )
  26. $note = "<div class='updated'><p>$msg->msg</p></div>";
  27. }
  28. ?>
  29. <div class="imgedit-wrap">
  30. <?php echo $note; ?>
  31. <table id="imgedit-panel-<?php echo $post_id; ?>"><tbody>
  32. <tr><td>
  33. <div class="imgedit-menu">
  34. <div onclick="imageEdit.crop(<?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-crop disabled" title="<?php esc_attr_e( 'Crop' ); ?>"></div><?php
  35. // On some setups GD library does not provide imagerotate() - Ticket #11536
  36. if ( function_exists('imagerotate') ) { ?>
  37. <div class="imgedit-rleft" onclick="imageEdit.rotate( 90, <?php echo "$post_id, '$nonce'"; ?>, this)" title="<?php esc_attr_e( 'Rotate counter-clockwise' ); ?>"></div>
  38. <div class="imgedit-rright" onclick="imageEdit.rotate(-90, <?php echo "$post_id, '$nonce'"; ?>, this)" title="<?php esc_attr_e( 'Rotate clockwise' ); ?>"></div>
  39. <?php } else {
  40. $note_gdlib = esc_attr__('Image rotation is not supported by your web host (function imagerotate() is missing)');
  41. ?>
  42. <div class="imgedit-rleft disabled" title="<?php echo $note_gdlib; ?>"></div>
  43. <div class="imgedit-rright disabled" title="<?php echo $note_gdlib; ?>"></div>
  44. <?php } ?>
  45. <div onclick="imageEdit.flip(1, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-flipv" title="<?php esc_attr_e( 'Flip vertically' ); ?>"></div>
  46. <div onclick="imageEdit.flip(2, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-fliph" title="<?php esc_attr_e( 'Flip horizontally' ); ?>"></div>
  47. <div id="image-undo-<?php echo $post_id; ?>" onclick="imageEdit.undo(<?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-undo disabled" title="<?php esc_attr_e( 'Undo' ); ?>"></div>
  48. <div id="image-redo-<?php echo $post_id; ?>" onclick="imageEdit.redo(<?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-redo disabled" title="<?php esc_attr_e( 'Redo' ); ?>"></div>
  49. <br class="clear" />
  50. </div>
  51. <input type="hidden" id="imgedit-sizer-<?php echo $post_id; ?>" value="<?php echo $sizer; ?>" />
  52. <input type="hidden" id="imgedit-minthumb-<?php echo $post_id; ?>" value="<?php echo ( get_option('thumbnail_size_w') . ':' . get_option('thumbnail_size_h') ); ?>" />
  53. <input type="hidden" id="imgedit-history-<?php echo $post_id; ?>" value="" />
  54. <input type="hidden" id="imgedit-undone-<?php echo $post_id; ?>" value="0" />
  55. <input type="hidden" id="imgedit-selection-<?php echo $post_id; ?>" value="" />
  56. <input type="hidden" id="imgedit-x-<?php echo $post_id; ?>" value="<?php echo $meta['width']; ?>" />
  57. <input type="hidden" id="imgedit-y-<?php echo $post_id; ?>" value="<?php echo $meta['height']; ?>" />
  58. <div id="imgedit-crop-<?php echo $post_id; ?>" class="imgedit-crop-wrap">
  59. <img id="image-preview-<?php echo $post_id; ?>" onload="imageEdit.imgLoaded('<?php echo $post_id; ?>')" src="<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>?action=imgedit-preview&amp;_ajax_nonce=<?php echo $nonce; ?>&amp;postid=<?php echo $post_id; ?>&amp;rand=<?php echo rand(1, 99999); ?>" />
  60. </div>
  61. <div class="imgedit-submit">
  62. <input type="button" onclick="imageEdit.close(<?php echo $post_id; ?>, 1)" class="button" value="<?php esc_attr_e( 'Cancel' ); ?>" />
  63. <input type="button" onclick="imageEdit.save(<?php echo "$post_id, '$nonce'"; ?>)" disabled="disabled" class="button-primary imgedit-submit-btn" value="<?php esc_attr_e( 'Save' ); ?>" />
  64. </div>
  65. </td>
  66. <td class="imgedit-settings">
  67. <div class="imgedit-group">
  68. <div class="imgedit-group-top">
  69. <a class="imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" href="#"><strong><?php _e('Scale Image'); ?></strong></a>
  70. <div class="imgedit-help">
  71. <p><?php _e('You can proportionally scale the original image. For best results the scaling should be done before performing any other operations on it like crop, rotate, etc. Note that if you make the image larger it may become fuzzy.'); ?></p>
  72. <p><?php printf( __('Original dimensions %s'), $meta['width'] . '&times;' . $meta['height'] ); ?></p>
  73. <div class="imgedit-submit">
  74. <span class="nowrap"><input type="text" id="imgedit-scale-width-<?php echo $post_id; ?>" onkeyup="imageEdit.scaleChanged(<?php echo $post_id; ?>, 1)" onblur="imageEdit.scaleChanged(<?php echo $post_id; ?>, 1)" style="width:4em;" value="<?php echo $meta['width']; ?>" />&times;<input type="text" id="imgedit-scale-height-<?php echo $post_id; ?>" onkeyup="imageEdit.scaleChanged(<?php echo $post_id; ?>, 0)" onblur="imageEdit.scaleChanged(<?php echo $post_id; ?>, 0)" style="width:4em;" value="<?php echo $meta['height']; ?>" />
  75. <span class="imgedit-scale-warn" id="imgedit-scale-warn-<?php echo $post_id; ?>">!</span></span>
  76. <input type="button" onclick="imageEdit.action(<?php echo "$post_id, '$nonce'"; ?>, 'scale')" class="button-primary" value="<?php esc_attr_e( 'Scale' ); ?>" />
  77. </div>
  78. </div>
  79. </div>
  80. <?php if ( $can_restore ) { ?>
  81. <div class="imgedit-group-top">
  82. <a class="imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" href="#"><strong><?php _e('Restore Original Image'); ?></strong></a>
  83. <div class="imgedit-help">
  84. <p><?php _e('Discard any changes and restore the original image.');
  85. if ( !defined('IMAGE_EDIT_OVERWRITE') || !IMAGE_EDIT_OVERWRITE )
  86. echo ' '.__('Previously edited copies of the image will not be deleted.');
  87. ?></p>
  88. <div class="imgedit-submit">
  89. <input type="button" onclick="imageEdit.action(<?php echo "$post_id, '$nonce'"; ?>, 'restore')" class="button-primary" value="<?php esc_attr_e( 'Restore image' ); ?>" <?php echo $can_restore; ?> />
  90. </div>
  91. </div>
  92. </div>
  93. <?php } ?>
  94. </div>
  95. <div class="imgedit-group">
  96. <div class="imgedit-group-top">
  97. <strong><?php _e('Image Crop'); ?></strong>
  98. <a class="imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" href="#"><?php _e('(help)'); ?></a>
  99. <div class="imgedit-help">
  100. <p><?php _e('The image can be cropped by clicking on it and dragging to select the desired part. While dragging the dimensions of the selection are displayed below.'); ?></p>
  101. <strong><?php _e('Keyboard Shortcuts'); ?></strong>
  102. <ul>
  103. <li><?php _e('Arrow: move by 10px'); ?></li>
  104. <li><?php _e('Shift + arrow: move by 1px'); ?></li>
  105. <li><?php _e('Ctrl + arrow: resize by 10px'); ?></li>
  106. <li><?php _e('Ctrl + Shift + arrow: resize by 1px'); ?></li>
  107. <li><?php _e('Shift + drag: lock aspect ratio'); ?></li>
  108. </ul>
  109. <p><strong><?php _e('Crop Aspect Ratio'); ?></strong><br />
  110. <?php _e('You can specify the crop selection aspect ratio then hold down the Shift key while dragging to lock it. The values can be 1:1 (square), 4:3, 16:9, etc. If there is a selection, specifying aspect ratio will set it immediately.'); ?></p>
  111. <p><strong><?php _e('Crop Selection'); ?></strong><br />
  112. <?php _e('Once started, the selection can be adjusted by entering new values (in pixels). Note that these values are scaled to approximately match the original image dimensions. The minimum selection size equals the thumbnail size as set in the Media settings.'); ?></p>
  113. </div>
  114. </div>
  115. <p>
  116. <?php _e('Aspect ratio:'); ?>
  117. <span class="nowrap">
  118. <input type="text" id="imgedit-crop-width-<?php echo $post_id; ?>" onkeyup="imageEdit.setRatioSelection(<?php echo $post_id; ?>, 0, this)" style="width:3em;" />
  119. :
  120. <input type="text" id="imgedit-crop-height-<?php echo $post_id; ?>" onkeyup="imageEdit.setRatioSelection(<?php echo $post_id; ?>, 1, this)" style="width:3em;" />
  121. </span>
  122. </p>
  123. <p id="imgedit-crop-sel-<?php echo $post_id; ?>">
  124. <?php _e('Selection:'); ?>
  125. <span class="nowrap">
  126. <input type="text" id="imgedit-sel-width-<?php echo $post_id; ?>" onkeyup="imageEdit.setNumSelection(<?php echo $post_id; ?>)" style="width:4em;" />
  127. :
  128. <input type="text" id="imgedit-sel-height-<?php echo $post_id; ?>" onkeyup="imageEdit.setNumSelection(<?php echo $post_id; ?>)" style="width:4em;" />
  129. </span>
  130. </p>
  131. </div>
  132. <?php if ( $thumb && $sub_sizes ) {
  133. $thumb_img = wp_constrain_dimensions( $thumb['width'], $thumb['height'], 160, 120 );
  134. ?>
  135. <div class="imgedit-group imgedit-applyto">
  136. <div class="imgedit-group-top">
  137. <strong><?php _e('Thumbnail Settings'); ?></strong>
  138. <a class="imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" href="#"><?php _e('(help)'); ?></a>
  139. <p class="imgedit-help"><?php _e('The thumbnail image can be cropped differently. For example it can be square or contain only a portion of the original image to showcase it better. Here you can select whether to apply changes to all image sizes or make the thumbnail different.'); ?></p>
  140. </div>
  141. <p>
  142. <img src="<?php echo $thumb['url']; ?>" width="<?php echo $thumb_img[0]; ?>" height="<?php echo $thumb_img[1]; ?>" class="imgedit-size-preview" alt="" /><br /><?php _e('Current thumbnail'); ?>
  143. </p>
  144. <p id="imgedit-save-target-<?php echo $post_id; ?>">
  145. <strong><?php _e('Apply changes to:'); ?></strong><br />
  146. <label class="imgedit-label">
  147. <input type="radio" name="imgedit-target-<?php echo $post_id; ?>" value="all" checked="checked" />
  148. <?php _e('All image sizes'); ?></label>
  149. <label class="imgedit-label">
  150. <input type="radio" name="imgedit-target-<?php echo $post_id; ?>" value="thumbnail" />
  151. <?php _e('Thumbnail'); ?></label>
  152. <label class="imgedit-label">
  153. <input type="radio" name="imgedit-target-<?php echo $post_id; ?>" value="nothumb" />
  154. <?php _e('All sizes except thumbnail'); ?></label>
  155. </p>
  156. </div>
  157. <?php } ?>
  158. </td></tr>
  159. </tbody></table>
  160. <div class="imgedit-wait" id="imgedit-wait-<?php echo $post_id; ?>"></div>
  161. <script type="text/javascript">imageEdit.init(<?php echo $post_id; ?>);</script>
  162. <div class="hidden" id="imgedit-leaving-<?php echo $post_id; ?>"><?php _e("There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor."); ?></div>
  163. </div>
  164. <?php
  165. }
  166. function wp_stream_image($image, $mime_type, $post_id) {
  167. $image = apply_filters('image_save_pre', $image, $post_id);
  168. switch ( $mime_type ) {
  169. case 'image/jpeg':
  170. header('Content-Type: image/jpeg');
  171. return imagejpeg($image, null, 90);
  172. case 'image/png':
  173. header('Content-Type: image/png');
  174. return imagepng($image);
  175. case 'image/gif':
  176. header('Content-Type: image/gif');
  177. return imagegif($image);
  178. default:
  179. return false;
  180. }
  181. }
  182. function wp_save_image_file($filename, $image, $mime_type, $post_id) {
  183. $image = apply_filters('image_save_pre', $image, $post_id);
  184. $saved = apply_filters('wp_save_image_file', null, $filename, $image, $mime_type, $post_id);
  185. if ( null !== $saved )
  186. return $saved;
  187. switch ( $mime_type ) {
  188. case 'image/jpeg':
  189. return imagejpeg( $image, $filename, apply_filters( 'jpeg_quality', 90, 'edit_image' ) );
  190. case 'image/png':
  191. return imagepng($image, $filename);
  192. case 'image/gif':
  193. return imagegif($image, $filename);
  194. default:
  195. return false;
  196. }
  197. }
  198. function _image_get_preview_ratio($w, $h) {
  199. $max = max($w, $h);
  200. return $max > 400 ? (400 / $max) : 1;
  201. }
  202. function _rotate_image_resource($img, $angle) {
  203. if ( function_exists('imagerotate') ) {
  204. $rotated = imagerotate($img, $angle, 0);
  205. if ( is_resource($rotated) ) {
  206. imagedestroy($img);
  207. $img = $rotated;
  208. }
  209. }
  210. return $img;
  211. }
  212. function _flip_image_resource($img, $horz, $vert) {
  213. $w = imagesx($img);
  214. $h = imagesy($img);
  215. $dst = wp_imagecreatetruecolor($w, $h);
  216. if ( is_resource($dst) ) {
  217. $sx = $vert ? ($w - 1) : 0;
  218. $sy = $horz ? ($h - 1) : 0;
  219. $sw = $vert ? -$w : $w;
  220. $sh = $horz ? -$h : $h;
  221. if ( imagecopyresampled($dst, $img, 0, 0, $sx, $sy, $w, $h, $sw, $sh) ) {
  222. imagedestroy($img);
  223. $img = $dst;
  224. }
  225. }
  226. return $img;
  227. }
  228. function _crop_image_resource($img, $x, $y, $w, $h) {
  229. $dst = wp_imagecreatetruecolor($w, $h);
  230. if ( is_resource($dst) ) {
  231. if ( imagecopy($dst, $img, 0, 0, $x, $y, $w, $h) ) {
  232. imagedestroy($img);
  233. $img = $dst;
  234. }
  235. }
  236. return $img;
  237. }
  238. function image_edit_apply_changes($img, $changes) {
  239. if ( !is_array($changes) )
  240. return $img;
  241. // expand change operations
  242. foreach ( $changes as $key => $obj ) {
  243. if ( isset($obj->r) ) {
  244. $obj->type = 'rotate';
  245. $obj->angle = $obj->r;
  246. unset($obj->r);
  247. } elseif ( isset($obj->f) ) {
  248. $obj->type = 'flip';
  249. $obj->axis = $obj->f;
  250. unset($obj->f);
  251. } elseif ( isset($obj->c) ) {
  252. $obj->type = 'crop';
  253. $obj->sel = $obj->c;
  254. unset($obj->c);
  255. }
  256. $changes[$key] = $obj;
  257. }
  258. // combine operations
  259. if ( count($changes) > 1 ) {
  260. $filtered = array($changes[0]);
  261. for ( $i = 0, $j = 1; $j < count($changes); $j++ ) {
  262. $combined = false;
  263. if ( $filtered[$i]->type == $changes[$j]->type ) {
  264. switch ( $filtered[$i]->type ) {
  265. case 'rotate':
  266. $filtered[$i]->angle += $changes[$j]->angle;
  267. $combined = true;
  268. break;
  269. case 'flip':
  270. $filtered[$i]->axis ^= $changes[$j]->axis;
  271. $combined = true;
  272. break;
  273. }
  274. }
  275. if ( !$combined )
  276. $filtered[++$i] = $changes[$j];
  277. }
  278. $changes = $filtered;
  279. unset($filtered);
  280. }
  281. // image resource before applying the changes
  282. $img = apply_filters('image_edit_before_change', $img, $changes);
  283. foreach ( $changes as $operation ) {
  284. switch ( $operation->type ) {
  285. case 'rotate':
  286. if ( $operation->angle != 0 )
  287. $img = _rotate_image_resource($img, $operation->angle);
  288. break;
  289. case 'flip':
  290. if ( $operation->axis != 0 )
  291. $img = _flip_image_resource($img, ($operation->axis & 1) != 0, ($operation->axis & 2) != 0);
  292. break;
  293. case 'crop':
  294. $sel = $operation->sel;
  295. $scale = 1 / _image_get_preview_ratio( imagesx($img), imagesy($img) ); // discard preview scaling
  296. $img = _crop_image_resource($img, $sel->x * $scale, $sel->y * $scale, $sel->w * $scale, $sel->h * $scale);
  297. break;
  298. }
  299. }
  300. return $img;
  301. }
  302. function stream_preview_image($post_id) {
  303. $post = get_post($post_id);
  304. @ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) );
  305. $img = load_image_to_edit( $post_id, $post->post_mime_type, array(400, 400) );
  306. if ( !is_resource($img) )
  307. return false;
  308. $changes = !empty($_REQUEST['history']) ? json_decode( stripslashes($_REQUEST['history']) ) : null;
  309. if ( $changes )
  310. $img = image_edit_apply_changes($img, $changes);
  311. // scale the image
  312. $w = imagesx($img);
  313. $h = imagesy($img);
  314. $ratio = _image_get_preview_ratio($w, $h);
  315. $w2 = $w * $ratio;
  316. $h2 = $h * $ratio;
  317. $preview = wp_imagecreatetruecolor($w2, $h2);
  318. imagecopyresampled( $preview, $img, 0, 0, 0, 0, $w2, $h2, $w, $h );
  319. wp_stream_image($preview, $post->post_mime_type, $post_id);
  320. imagedestroy($preview);
  321. imagedestroy($img);
  322. return true;
  323. }
  324. function wp_restore_image($post_id) {
  325. $meta = wp_get_attachment_metadata($post_id);
  326. $file = get_attached_file($post_id);
  327. $backup_sizes = get_post_meta( $post_id, '_wp_attachment_backup_sizes', true );
  328. $restored = false;
  329. $msg = new stdClass;
  330. if ( !is_array($backup_sizes) ) {
  331. $msg->error = __('Cannot load image metadata.');
  332. return $msg;
  333. }
  334. $parts = pathinfo($file);
  335. $suffix = time() . rand(100, 999);
  336. $default_sizes = get_intermediate_image_sizes();
  337. if ( isset($backup_sizes['full-orig']) && is_array($backup_sizes['full-orig']) ) {
  338. $data = $backup_sizes['full-orig'];
  339. if ( $parts['basename'] != $data['file'] ) {
  340. if ( defined('IMAGE_EDIT_OVERWRITE') && IMAGE_EDIT_OVERWRITE ) {
  341. // delete only if it's edited image
  342. if ( preg_match('/-e[0-9]{13}\./', $parts['basename']) ) {
  343. $delpath = apply_filters('wp_delete_file', $file);
  344. @unlink($delpath);
  345. }
  346. } else {
  347. $backup_sizes["full-$suffix"] = array('width' => $meta['width'], 'height' => $meta['height'], 'file' => $parts['basename']);
  348. }
  349. }
  350. $restored_file = path_join($parts['dirname'], $data['file']);
  351. $restored = update_attached_file($post_id, $restored_file);
  352. $meta['file'] = _wp_relative_upload_path( $restored_file );
  353. $meta['width'] = $data['width'];
  354. $meta['height'] = $data['height'];
  355. }
  356. foreach ( $default_sizes as $default_size ) {
  357. if ( isset($backup_sizes["$default_size-orig"]) ) {
  358. $data = $backup_sizes["$default_size-orig"];
  359. if ( isset($meta['sizes'][$default_size]) && $meta['sizes'][$default_size]['file'] != $data['file'] ) {
  360. if ( defined('IMAGE_EDIT_OVERWRITE') && IMAGE_EDIT_OVERWRITE ) {
  361. // delete only if it's edited image
  362. if ( preg_match('/-e[0-9]{13}-/', $meta['sizes'][$default_size]['file']) ) {
  363. $delpath = apply_filters( 'wp_delete_file', path_join($parts['dirname'], $meta['sizes'][$default_size]['file']) );
  364. @unlink($delpath);
  365. }
  366. } else {
  367. $backup_sizes["$default_size-{$suffix}"] = $meta['sizes'][$default_size];
  368. }
  369. }
  370. $meta['sizes'][$default_size] = $data;
  371. } else {
  372. unset($meta['sizes'][$default_size]);
  373. }
  374. }
  375. if ( !wp_update_attachment_metadata($post_id, $meta) || !update_post_meta( $post_id, '_wp_attachment_backup_sizes', $backup_sizes) ) {
  376. $msg->error = __('Cannot save image metadata.');
  377. return $msg;
  378. }
  379. if ( !$restored )
  380. $msg->error = __('Image metadata is inconsistent.');
  381. else
  382. $msg->msg = __('Image restored successfully.');
  383. return $msg;
  384. }
  385. function wp_save_image($post_id) {
  386. $return = new stdClass;
  387. $success = $delete = $scaled = $nocrop = false;
  388. $post = get_post($post_id);
  389. @ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) );
  390. $img = load_image_to_edit($post_id, $post->post_mime_type);
  391. if ( !is_resource($img) ) {
  392. $return->error = esc_js( __('Unable to create new image.') );
  393. return $return;
  394. }
  395. $fwidth = !empty($_REQUEST['fwidth']) ? intval($_REQUEST['fwidth']) : 0;
  396. $fheight = !empty($_REQUEST['fheight']) ? intval($_REQUEST['fheight']) : 0;
  397. $target = !empty($_REQUEST['target']) ? preg_replace('/[^a-z0-9_-]+/i', '', $_REQUEST['target']) : '';
  398. $scale = !empty($_REQUEST['do']) && 'scale' == $_REQUEST['do'];
  399. if ( $scale && $fwidth > 0 && $fheight > 0 ) {
  400. $sX = imagesx($img);
  401. $sY = imagesy($img);
  402. // check if it has roughly the same w / h ratio
  403. $diff = round($sX / $sY, 2) - round($fwidth / $fheight, 2);
  404. if ( -0.1 < $diff && $diff < 0.1 ) {
  405. // scale the full size image
  406. $dst = wp_imagecreatetruecolor($fwidth, $fheight);
  407. if ( imagecopyresampled( $dst, $img, 0, 0, 0, 0, $fwidth, $fheight, $sX, $sY ) ) {
  408. imagedestroy($img);
  409. $img = $dst;
  410. $scaled = true;
  411. }
  412. }
  413. if ( !$scaled ) {
  414. $return->error = esc_js( __('Error while saving the scaled image. Please reload the page and try again.') );
  415. return $return;
  416. }
  417. } elseif ( !empty($_REQUEST['history']) ) {
  418. $changes = json_decode( stripslashes($_REQUEST['history']) );
  419. if ( $changes )
  420. $img = image_edit_apply_changes($img, $changes);
  421. } else {
  422. $return->error = esc_js( __('Nothing to save, the image has not changed.') );
  423. return $return;
  424. }
  425. $meta = wp_get_attachment_metadata($post_id);
  426. $backup_sizes = get_post_meta( $post->ID, '_wp_attachment_backup_sizes', true );
  427. if ( !is_array($meta) ) {
  428. $return->error = esc_js( __('Image data does not exist. Please re-upload the image.') );
  429. return $return;
  430. }
  431. if ( !is_array($backup_sizes) )
  432. $backup_sizes = array();
  433. // generate new filename
  434. $path = get_attached_file($post_id);
  435. $path_parts = pathinfo( $path );
  436. $filename = $path_parts['filename'];
  437. $suffix = time() . rand(100, 999);
  438. if ( defined('IMAGE_EDIT_OVERWRITE') && IMAGE_EDIT_OVERWRITE &&
  439. isset($backup_sizes['full-orig']) && $backup_sizes['full-orig']['file'] != $path_parts['basename'] ) {
  440. if ( 'thumbnail' == $target )
  441. $new_path = "{$path_parts['dirname']}/{$filename}-temp.{$path_parts['extension']}";
  442. else
  443. $new_path = $path;
  444. } else {
  445. while( true ) {
  446. $filename = preg_replace( '/-e([0-9]+)$/', '', $filename );
  447. $filename .= "-e{$suffix}";
  448. $new_filename = "{$filename}.{$path_parts['extension']}";
  449. $new_path = "{$path_parts['dirname']}/$new_filename";
  450. if ( file_exists($new_path) )
  451. $suffix++;
  452. else
  453. break;
  454. }
  455. }
  456. // save the full-size file, also needed to create sub-sizes
  457. if ( !wp_save_image_file($new_path, $img, $post->post_mime_type, $post_id) ) {
  458. $return->error = esc_js( __('Unable to save the image.') );
  459. return $return;
  460. }
  461. if ( 'nothumb' == $target || 'all' == $target || 'full' == $target || $scaled ) {
  462. $tag = false;
  463. if ( isset($backup_sizes['full-orig']) ) {
  464. if ( ( !defined('IMAGE_EDIT_OVERWRITE') || !IMAGE_EDIT_OVERWRITE ) && $backup_sizes['full-orig']['file'] != $path_parts['basename'] )
  465. $tag = "full-$suffix";
  466. } else {
  467. $tag = 'full-orig';
  468. }
  469. if ( $tag )
  470. $backup_sizes[$tag] = array('width' => $meta['width'], 'height' => $meta['height'], 'file' => $path_parts['basename']);
  471. $success = update_attached_file($post_id, $new_path);
  472. $meta['file'] = _wp_relative_upload_path($new_path);
  473. $meta['width'] = imagesx($img);
  474. $meta['height'] = imagesy($img);
  475. if ( $success && ('nothumb' == $target || 'all' == $target) ) {
  476. $sizes = get_intermediate_image_sizes();
  477. if ( 'nothumb' == $target )
  478. $sizes = array_diff( $sizes, array('thumbnail') );
  479. }
  480. $return->fw = $meta['width'];
  481. $return->fh = $meta['height'];
  482. } elseif ( 'thumbnail' == $target ) {
  483. $sizes = array( 'thumbnail' );
  484. $success = $delete = $nocrop = true;
  485. }
  486. if ( isset($sizes) ) {
  487. foreach ( $sizes as $size ) {
  488. $tag = false;
  489. if ( isset($meta['sizes'][$size]) ) {
  490. if ( isset($backup_sizes["$size-orig"]) ) {
  491. if ( ( !defined('IMAGE_EDIT_OVERWRITE') || !IMAGE_EDIT_OVERWRITE ) && $backup_sizes["$size-orig"]['file'] != $meta['sizes'][$size]['file'] )
  492. $tag = "$size-$suffix";
  493. } else {
  494. $tag = "$size-orig";
  495. }
  496. if ( $tag )
  497. $backup_sizes[$tag] = $meta['sizes'][$size];
  498. }
  499. $crop = $nocrop ? false : get_option("{$size}_crop");
  500. $resized = image_make_intermediate_size($new_path, get_option("{$size}_size_w"), get_option("{$size}_size_h"), $crop );
  501. if ( $resized )
  502. $meta['sizes'][$size] = $resized;
  503. else
  504. unset($meta['sizes'][$size]);
  505. }
  506. }
  507. if ( $success ) {
  508. wp_update_attachment_metadata($post_id, $meta);
  509. update_post_meta( $post_id, '_wp_attachment_backup_sizes', $backup_sizes);
  510. if ( $target == 'thumbnail' || $target == 'all' || $target == 'full' ) {
  511. $file_url = wp_get_attachment_url($post_id);
  512. if ( $thumb = $meta['sizes']['thumbnail'] )
  513. $return->thumbnail = path_join( dirname($file_url), $thumb['file'] );
  514. else
  515. $return->thumbnail = "$file_url?w=128&h=128";
  516. }
  517. } else {
  518. $delete = true;
  519. }
  520. if ( $delete ) {
  521. $delpath = apply_filters('wp_delete_file', $new_path);
  522. @unlink($delpath);
  523. }
  524. imagedestroy($img);
  525. $return->msg = esc_js( __('Image saved') );
  526. return $return;
  527. }