Perfect your images using WordPress - WordCamp Europe 2013

34
WordCamp Europe 2013 The Netherlands P rf Y r I U W rPr Mike Schroder & Marko Heijnen

description

Perfect your images using WordPress - WordCamp Europe 2013

Transcript of Perfect your images using WordPress - WordCamp Europe 2013

Page 1: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

P!rf!"# Y$%r I&'(!) U)*+( W$r,Pr!))

Mike Schroder & Marko Heijnen

Page 2: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

M*-! M'r-$

DH-Shredder@GetSource

Recent rockstar 3.5WP-CLI contributorWordPress Core rep

Happy DreamHost Employee

@MarkoHeijnen

Recent rockstar 3.4GlotPress lead developer

Founder of CodeKitchen

Page 3: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

W.'# w') wrong?

Page 4: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

GD w') %)!, directly

Page 5: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

I&'(! &'+*/%0'#*$+ abstracted

Page 6: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

WP_I&'(!_E,*#$r

• Centralized way to read an image file

• manipulate it

• save IT

• STREAM IT

Page 7: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

H$w w') *# MADE?

Page 8: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

I+#!r+'#*$+'0 COOPERATION.

Page 9: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

G*v!) 1$% #.! /$w!r $f core

Page 10: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

GD '+, Imagick S%//$r#

Page 11: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

Imagick .') color profiles

Page 12: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

2! Difference

GD Imagick

Page 13: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

W.'#’) #.! catch?

Page 14: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

N$ &$r! direct *&'(! &'+*/%0'#*$+

Page 15: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

D!/r!"'#!, 30#!r)

• Image_save_pre is now image_editor_save_pre

• wp_save_image_file is now wp_save_image_editor_file

• image_edit_before_change is now wp_image_editor_before_change

Page 16: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

W.'#’) )#*00 &*))*+(?

Centralized way to read an image attachment from

the database and manage its sizes and properties

Page 17: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

M'1b! WP_I&'(!...https://github.com/markoheijnen/WP_Image

Page 18: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

T$ 0$', '+ '##'".&!+#

No current alternative to load_image_to_edit(), so:

wp_get_image_editor( _load_image_to_edit_path( $post_id ) );

Page 19: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

O-'1, w.'# can w! ,$ w*#. *#?

Page 20: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

• resize( $max_w, $max_h, $crop );

• multi_resize( {['size'] => {'width', 'height',['crop']}, ... } );

• crop( $src_x, $src_y, $src_w, $src_h, $dst_w, $dst_h, $src_abs );

• rotate( $angle );

• flip( $horz, $vert );

• save( $destfilename, $mime_type );

• stream( $mime_type );

2! '"#*$+)

Page 21: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

Page 22: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

A )*&/0! r!)4!

// Get instance of WP_Image_Editor selected by WordPress

$editor = wp_get_image_editor( '/path/to/image.png' );

// Returns WP_Error on failure, so check. if ( ! is_wp_error( $editor ) ) {

// Resize the image with a center crop $editor->resize( 300, 300, true );

// Uses extension for type, unless optional mime parameter is used. $editor->save( 'new_image.gif' );

}

Page 23: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

A )*&/0! r!)4!

©Massimo Catarinella (CC-SA)

Page 24: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

A )*&/0! r!)4!

Page 25: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

Extend #$ "r!'#! 1$%r $w+*&'(!-&'+*/ engines $r

functions.

Page 26: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

Tiff: I&'(! $r +$#?

Page 27: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

Y$% "'+ !v!+ 5#!+, Imagick f$r !v!r1$+!’) f'v$r*#! 30#!r:

Page 28: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

Sepia!

Page 29: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

Page 30: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

Page 31: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

2'+-) f$r 0*)#!+*+(!A+1 q%!)#*$+)?

@getSource & @markoHeijnen

Page 32: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

• GD: wp-includes/class-wp-image-editor-gd.php

• Imagick: wp-includes/class-wp-image-editor-imagick.php

• Gmagick: http://wordpress.org/extend/plugins/gmagick/

• Improved GD Editor:http://wordpress.org/plugins/improved-gd-image-editor/

E,*#$r 5'&/0!)

Page 33: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

• http://make.wordpress.org/core/2012/12/06/wp_image_editor-is-incoming/

• http://markoheijnen.com/wordpress-new-image-manipulation/

• http://xref.wordpress.org/trunk/WordPress/Image_Editor/WP_Image_Editor.html

M$r! R!)$%r"!)!

Page 34: Perfect your images using WordPress - WordCamp Europe 2013

WordCamp Europe 2013 The Netherlands

• https://github.com/getsource/imagick-sepia/

• https://github.com/humanmade/WPThumb/

• https://github.com/markoheijnen/gmagick-editor

• https://github.com/markoheijnen/Improved-image-editor

• https://github.com/interconnectit/my-eyes-are-up-here

M$r! R!)$%r"!)!