WP_Image_Editor_GD::make_image( string|stream $filename, callable $function, array $arguments )

Either calls editor’s save function or handles file as a stream.


Description Description


Parameters Parameters

$filename

(string|stream) (Required)

$function

(callable) (Required)

$arguments

(array) (Required)


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: wp-includes/class-wp-image-editor-gd.php

	protected function make_image( $filename, $function, $arguments ) {
		if ( wp_is_stream( $filename ) ) {
			$arguments[1] = null;
		}

		return parent::make_image( $filename, $function, $arguments );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.