Switch to full style
Post all Gimp scripts and script writing questions here
Post a reply

Donut Text plugin yummy delicious! (Update for non-English users)

Sun Nov 06, 2022 9:47 pm

This effect was inspired by a Conbagui's tutorial found here: https://www.deviantart.com/conbagui/art ... -474255570

You have three kind of donut flavors to choose (I see you drooling already), Glazed Frosted with Frosted lines and Frosted with Sprinkles.

The plugin uses ofnuts "Density brush fill" plugin (included). I want to thank, ofnuts for this nice plugin. You can find this plugin and other free plugins online @ https://sourceforge.net/projects/gimp-t ... s/scripts/

Image

ImageImage
Image



****Please let me know if I forgot to pack any other stuff with the plugin. Enjoy your Donut!


Since English is my main language, I tend to write my plugins in an English version. I apology to the non-English users friends here, I will try to remember to internationalize my plugins.
***I uploaded a Non-English version, please downloaded.***

Updated version; Now you can change the Plaid color you preferred.

Re: Donut Text plugin yummy delicious! (Update for non-English users)

Mon Nov 07, 2022 5:31 pm

Thanks a lot, Pocholo. It works great. A nice job. :tyspin

Re: Donut Text plugin yummy delicious! (Update for non-English users)

Mon Nov 07, 2022 7:12 pm

Thank you Pocholo :tyspin

I downloaded both the English and non-English versions but couldn't spot the difference between them.

donuttext.jpg
donuttext.jpg (298.32 KiB) Viewed 671 times

Re: Donut Text plugin yummy delicious! (Update for non-English users)

Tue Nov 08, 2022 12:07 am

Hi teapot! The difference is in Line 97 and again in Line 115, It's the translation of the phrase
"Clipboard Image". It wont translate unless the code is written like this: _("Clipboard Image")

Code:
97     pdb.gimp_context_set_pattern(_("Clipboard Image"))


And on the layerfx "Pattern Overlay":
Code:
115     pattern =  _("Clipboard Image")

Re: Donut Text plugin yummy delicious! (Update for non-English users)

Tue Nov 08, 2022 1:24 am

Pocholo wrote:Hi teapot! The difference is in Line 97 and again in Line 115, It's the translation of the phrase
"Clipboard Image". It wont translate unless the code is written like this: _("Clipboard Image")

Code:
97     pdb.gimp_context_set_pattern(_("Clipboard Image"))


And on the layerfx "Pattern Overlay":
Code:
115     pattern =  _("Clipboard Image")

Thanks Pocholo. I was confused as I thought two downloads in post #1 meant there are two different versions but it's that the change you mention is in both .py files (which makes sense). I'd just diffed the files and seen the files in both downloads were the same apart from one has 'This is the Non-English version' in 'Read me please_simple.txt' and the other doesn't.

Anyway it's producing nice results :bigthup
Post a reply