pgmagick| creating color backgrounds

In this article we will learn how we can create a background with a solid color. We can use these backgrounds in our output image backgrounds. Also we will how to create transparent and backgrounds with color gradients.
For eg:
Here in the above image green us the background color ofzambiatek logo so lets start with the code.
1. Solid Background :
Now lets create a background with solid green color.
Code :
Python3
from pgmagick.api import Imageimg = Image((300, 300), 'green')img.write('green.jpg') |
Output :
2. Transparent Background :
Now lets create a Transparent background.
Code :
Python3
from pgmagick.api import Imageimg = Image((300, 300), 'transparent')img.write('transparent.jpg') |
Output :
2. Gradient Background :
Now lets create a background with some color gradient.
Code :
Python3
from pgmagick.api import Imageimg = Image((300, 200), 'gradient:# 318749-# 0eed4c')img.write('gradient.jpg') |
Output :




