Thursday, January 22, 2026
HomeLanguagespgmagick| creating color backgrounds

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 ofneveropen 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 Image
 
img = Image((300, 300), 'green')
img.write('green.jpg')


Output : 
 

2. Transparent Background : 
Now lets create a Transparent background. 
Code : 
 

Python3




from pgmagick.api import Image
 
img = 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 Image
 
img = Image((300, 200), 'gradient:# 318749-# 0eed4c')
img.write('gradient.jpg')


Output :
 

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7220 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS