diff --git wp-admin/includes/image-edit.php wp-admin/includes/image-edit.php
index 0b06926..a1e429f 100644
--- wp-admin/includes/image-edit.php
+++ wp-admin/includes/image-edit.php
@@ -237,7 +237,6 @@ function wp_stream_image( $image, $mime_type, $post_id ) {
 
 /**
  * Saves Image to File
- * @TODO: Add mime_type support to WP_Image_Editor
  *
  * @param string $filename
  * @param WP_Image_Editor $image
diff --git wp-includes/class-wp-image-editor-gd.php wp-includes/class-wp-image-editor-gd.php
index 9248c7e..dcd1644 100644
--- wp-includes/class-wp-image-editor-gd.php
+++ wp-includes/class-wp-image-editor-gd.php
@@ -28,11 +28,11 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
 	 * Checks to see if current environment supports GD
 	 *
 	 * @since 3.5.0
-	 * @access protected
+	 * @access public
 	 *
 	 * @return boolean
 	 */
-	public function test() {
+	public static function test( $args = null ) {
 		if ( ! extension_loaded('gd') || ! function_exists('gd_info') )
 			return false;
 
@@ -51,7 +51,7 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
 		if ( $this->image )
 			return true;
 
-		if ( ! file_exists( $this->file ) )
+		if ( ! is_file( $this->file ) )
 			return new WP_Error( 'error_loading_image', __('File doesn&#8217;t exist?'), $this->file );
 
 		// Set artificially high because GD uses uncompressed images in memory
@@ -99,7 +99,7 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
 	 * @param string $mime_type
 	 * @return boolean
 	 */
-	public function supports_mime_type( $mime_type ) {
+	public static function supports_mime_type( $mime_type ) {
 		$allowed_mime_types = array( 'image/gif', 'image/png', 'image/jpeg' );
 
 		return in_array( $mime_type, $allowed_mime_types );
diff --git wp-includes/class-wp-image-editor-imagick.php wp-includes/class-wp-image-editor-imagick.php
index 9d2c822..c3372d3 100644
--- wp-includes/class-wp-image-editor-imagick.php
+++ wp-includes/class-wp-image-editor-imagick.php
@@ -29,11 +29,11 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
 	 * Checks to see if current environment supports Imagick
 	 *
 	 * @since 3.5.0
-	 * @access protected
+	 * @access public
 	 *
 	 * @return boolean
 	 */
-	public function test() {
+	public static function test( $args = null ) {
 		if ( ! extension_loaded( 'imagick' ) )
 			return false;
 
@@ -52,7 +52,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
 		if ( $this->image )
 			return true;
 
-		if ( ! file_exists( $this->file ) )
+		if ( ! is_file( $this->file ) )
 			return new WP_Error( 'error_loading_image', __('File doesn&#8217;t exist?'), $this->file );
 
 		try {
@@ -143,7 +143,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
 	 * @param string $mime_type
 	 * @return boolean
 	 */
-	public function supports_mime_type( $mime_type ) {
+	public static function supports_mime_type( $mime_type ) {
 		if ( ! $mime_type )
 			return false;
 
diff --git wp-includes/class-wp-image-editor.php wp-includes/class-wp-image-editor.php
index 6ee94a2..05665b6 100644
--- wp-includes/class-wp-image-editor.php
+++ wp-includes/class-wp-image-editor.php
@@ -17,7 +17,6 @@ abstract class WP_Image_Editor {
 	protected $mime_type  = null;
 	protected $default_mime_type = 'image/jpeg';
 	protected $quality = 90;
-	private static $implementation;
 
 	protected function __construct( $filename ) {
 		$this->file = $filename;
@@ -30,16 +29,17 @@ abstract class WP_Image_Editor {
 	 * @access public
 	 *
 	 * @param string $path Path to File to Load
+	 * @param array $required_methods Methods to require in implementation
 	 * @return WP_Image_Editor|WP_Error|boolean
 	 */
-	public final static function get_instance( $path = null ) {
-		$implementation = apply_filters( 'image_editor_class', self::choose_implementation(), $path );
+	public final static function get_instance( $path = null, $required_methods = null ) {
+		$implementation = apply_filters( 'wp_image_editor_class', self::choose_implementation( $required_methods ), $path );
 
 		if ( $implementation ) {
 			$editor = new $implementation( $path );
 			$loaded = $editor->load();
 
-			if ( is_wp_error ( $loaded ) )
+			if ( is_wp_error( $loaded ) )
 				return $loaded;
 
 			return $editor;
@@ -54,38 +54,76 @@ abstract class WP_Image_Editor {
 	 * @since 3.5.0
 	 * @access private
 	 *
+	 * @param $required_methods Array String array of all methods required for implementation returned.
+	 *
 	 * @return string|bool Class name for the first editor that claims to support the request. False if no editor claims to support the request.
 	 */
-	private final static function choose_implementation() {
+	private final static function choose_implementation( $required_methods = null ) {
+		$request_order = apply_filters( 'wp_image_editors',
+			array( 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD' ) );
 
-		if ( null === self::$implementation ) {
-			$request_order = apply_filters( 'wp_editors', array( 'imagick', 'gd' ) );
+		if ( ! $required_methods )
+			$required_methods = apply_filters( 'wp_image_editor_default_methods',
+				array( 'resize', 'multi_resize', 'crop', 'rotate', 'flip', 'stream' ) );
 
-			// Loop over each editor on each request looking for one which will serve this request's needs
-			foreach ( $request_order as $editor ) {
-				$class = 'WP_Image_Editor_' . $editor;
+		// Loop over each editor on each request looking for one which will serve this request's needs
+		foreach ( $request_order as $editor ) {
+			// Check to see if this editor is a possibility, calls the editor statically
+			if ( ! call_user_func( array( $editor, 'test' ) ) )
+				continue;
 
-				// Check to see if this editor is a possibility, calls the editor statically
-				if ( ! call_user_func( array( $class, 'test' ) ) )
-					continue;
+			// Make sure that all methods are supported by editor.
+			if ( array_diff( $required_methods, get_class_methods( $editor ) ) )
+				continue;
 
-				self::$implementation = $class;
-				break;
-			}
+			return $editor;
 		}
-		return self::$implementation;
+		return false;
 	}
 
-	abstract public function test(); // returns bool
 	abstract protected function load(); // returns bool|WP_Error
-	abstract public function supports_mime_type( $mime_type ); // returns bool
-	abstract public function resize( $max_w, $max_h, $crop = false );
-	abstract public function multi_resize( $sizes );
-	abstract public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false );
-	abstract public function rotate( $angle );
-	abstract public function flip( $horz, $vert );
 	abstract public function save( $destfilename = null, $mime_type = null );
-	abstract public function stream( $mime_type = null );
+
+	/**
+	 * Implement all of the below to support natively used functions:
+	 *
+	 * public function resize( $max_w, $max_h, $crop = false )
+	 * public function multi_resize( $sizes )
+	 * public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false )
+	 * public function rotate( $angle )
+	 * public function flip( $horz, $vert )
+	 * public function stream( $mime_type = null )
+	 */
+
+	/**
+	 * Checks to see if current environment supports the editor chosen.
+	 * Must be overridden in a sub-class.
+	 *
+	 * @since 3.5.0
+	 * @access public
+	 * @abstract
+	 *
+	 * @param $args array
+	 * @return boolean
+	 */
+	public static function test( $args = null ) {
+		return false;
+	}
+
+	/**
+	 * Checks to see if editor supports mime-type specified
+	 * Must be overridden in a sub-class.
+	 *
+	 * @since 3.5.0
+	 * @access public
+	 * @abstract
+	 *
+	 * @param string $mime_type
+	 * @return boolean
+	 */
+	public static function supports_mime_type( $mime_type ) {
+		return false;
+	}
 
 	/**
 	 * Gets dimensions of image
@@ -258,19 +296,19 @@ abstract class WP_Image_Editor {
 
 		$result = call_user_func_array( $function, $arguments );
 
-		if( $result && $stream ) {
+		if ( $result && $stream ) {
 			$contents = ob_get_contents();
 
 			$fp = fopen( $dst_file, 'w' );
 
-			if( ! $fp )
+			if ( ! $fp )
 				return false;
 
 			fwrite( $fp, $contents );
 			fclose( $fp );
 		}
 
-		if( $stream ) {
+		if ( $stream ) {
 			ob_end_clean();
 		}
 
@@ -295,8 +333,8 @@ abstract class WP_Image_Editor {
 		$extensions = array_keys( $mime_types );
 
 		foreach( $extensions as $_extension ) {
-			if( preg_match("/{$extension}/i", $_extension ) ) {
-				return $mime_types[ $_extension ];
+			if ( preg_match( "/{$extension}/i", $_extension ) ) {
+				return $mime_types[$_extension];
 			}
 		}
 
diff --git wp-includes/deprecated.php wp-includes/deprecated.php
index a9744e8..101bc10 100644
--- wp-includes/deprecated.php
+++ wp-includes/deprecated.php
@@ -3221,7 +3221,7 @@ function wp_load_image( $file ) {
 	if ( is_numeric( $file ) )
 		$file = get_attached_file( $file );
 
-	if ( ! file_exists( $file ) )
+	if ( ! is_file( $file ) )
 		return sprintf(__('File &#8220;%s&#8221; doesn&#8217;t exist?'), $file);
 
 	if ( ! function_exists('imagecreatefromstring') )
