function Image::createNew
Same name in other branches
- 9 core/lib/Drupal/Core/Image/Image.php \Drupal\Core\Image\Image::createNew()
- 8.9.x core/lib/Drupal/Core/Image/Image.php \Drupal\Core\Image\Image::createNew()
- 10 core/lib/Drupal/Core/Image/Image.php \Drupal\Core\Image\Image::createNew()
Overrides ImageInterface::createNew
File
-
core/
lib/ Drupal/ Core/ Image/ Image.php, line 148
Class
- Image
- Defines an image object to represent an image file.
Namespace
Drupal\Core\ImageCode
public function createNew($width, $height, $extension = 'png', $transparent_color = '#ffffff') {
return $this->apply('create_new', [
'width' => $width,
'height' => $height,
'extension' => $extension,
'transparent_color' => $transparent_color,
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.