/** @var \Drupal\Core\Render\RendererInterface $renderer */
$renderer =
$this->container->
get('renderer'
);
$png = File::
create([ 'uri' => 'public://test-image.png',
]);
$png->
save();
// We need to create an actual empty PNG, or the GD toolkit will not
// consider the image valid.
$png_resource =
imagecreate(300, 300
);
imagefill($png_resource, 0, 0,
imagecolorallocate($png_resource, 0, 0, 0
));
imagepng($png_resource,
$png->
getFileUri());
$svg = File::
create([ 'uri' => 'public://test-image.svg',
]);
$svg->
save();
// We don't have to put any real SVG data in here, because the GD toolkit
// won't be able to load it anyway.
touch($svg->
getFileUri());