Rectangle without color (without fill)
We can create a rectangle exactly the same width and height as the full image and wihout setting the fill
attribute it will be black:
<svg width="150" height="100" xmlns="http://www.w3.org/2000/svg">
<rect width="150" height="100" />
</svg>