It is currently Thu Jul 04, 2024 3:25 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: Python rounded rectangle bucket fill problem
PostPosted: Tue Jun 25, 2019 2:45 pm  (#1) 
Offline
GimpChat Member

Joined: Jun 22, 2019
Posts: 5
In Python, I am trying to add to my background image a rounded rectangle and then fill it with green color. My latest attempt is below, which fails on the following line:

pdb.gimp_image_select_round_rectangle(imageobj, 0, Sign1Xoff, Sign1Yoff, Layer1Width, Layer1Height, cornerradius)

Any help / suggestions / recommendations would be appreciated. Thanks in advance!



buffer = 10
cornerradius = 15
Layer1Width = 1500
Layer1Height = 500
Sign1Xoff = 100
Sign1Yoff = 100
SignLayer1 = pdb.gimp_layer_new(imageobj, Layer1Width, Layer1Height, 0, 'SignLayer', 100, 0)
imageobj.add_layer(SignLayer1, 1)
pdb.gimp_layer_set_offsets(SignLayer1, Sign1Xoff, Sign1Yoff)
pdb.gimp_context_set_foreground(GreenColor)
# THE CODE FAILS ON THE NEXT LINE
pdb.gimp_image_select_round_rectangle(imageobj, 0, Sign1Xoff, Sign1Yoff, Layer1Width, Layer1Height, cornerradius)
pdb.gimp_edit_bucket_fill(SignLayer1, 0, 0)


Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Python rounded rectangle bucket fill problem
PostPosted: Tue Jun 25, 2019 3:59 pm  (#2) 
Offline
GimpChat Member
User avatar

Joined: Dec 26, 2014
Posts: 199
I think you have missed out the last parameter, try

pdb.gimp_image_select_round_rectangle(imageobj, 0, Sign1Xoff, Sign1Yoff, Layer1Width, Layer1Height, cornerradius, cornerradius)


Top
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Bucket fill white comes out as grey

4

No new posts Line art detection bucket fill

0

No new posts Let a Neural Net help you create the best black rectangle on white

7

No new posts Convert GIMP plugin from Python 2 to Python 3

4

No new posts Attachment(s) Fill with pattern seamless

13



* Login  



Powered by phpBB3 © phpBB Group