wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_imagecreatetruecolor › WordPress Function

Seit2.9.0
Veraltetn/v
wp_imagecreatetruecolor ( $width, $height )
Parameter: (2)
  • (int) $width Image width in pixels.
    Erforderlich: Ja
  • (int) $height Image height in pixels.
    Erforderlich: Ja
Gibt zurück:
  • (resource|GdImage|false) The GD image resource or GdImage instance on success. False on failure.
Definiert in:
Codex:

Creates a new GD image resource with transparency support.



Quellcode

function wp_imagecreatetruecolor( $width, $height ) {
	$img = imagecreatetruecolor( $width, $height );

	if ( is_gd_image( $img )
		&& function_exists( 'imagealphablending' ) && function_exists( 'imagesavealpha' )
	) {
		imagealphablending( $img, false );
		imagesavealpha( $img, true );
	}

	return $img;
}