BevelReflectLogo in Python script? - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: Extending the GIMP (https://www.gimp-forum.net/Forum-Extending-the-GIMP) +--- Thread: BevelReflectLogo in Python script? (/Thread-BevelReflectLogo-in-Python-script) Pages:
1
2
|
RE: BevelReflectLogo in Python script? - Ofnuts - 04-01-2018 Btw, where can I get the BRL script? gimpscripts is somewhat dead these days. RE: BevelReflectLogo in Python script? - dinasset - 04-01-2018 Here it is: [attachment=1621] RE: BevelReflectLogo in Python script? - rich2005 - 04-01-2018 Quote:The one Racer-X uses. That is Carmelo's appimage RE: BevelReflectLogo in Python script? - racer-x - 04-01-2018 TinTran wrote a python script to apply BRL to all layers. It works on Gimp 2.8.16. Trying it in my Gimp 2.10 RC1 appimage gives this error: Code: Calling error for procedure 'gimp-procedural-db-proc-info': Here's the python script to apply BRL to all visible layers: BRL to visible layers RE: BevelReflectLogo in Python script? - rich2005 - 04-01-2018 (04-01-2018, 11:59 AM)racer-x Wrote: I'm wondering if that means MLBevelReflect doesn't work? Or maybe it's calling the .scm, which it can't load? Probably both of those. A quick test What a monster dialogue, and my laptop is 1920x1080 Tin's python script is a wrapper for bevel-reflect-logo.scm which of course also need the binary plugin MLBevelReflect. Hangs if the precision is more than 8 bit (at least it does here). before: https://i.imgur.com/jeGLch5.jpg after: https://i.imgur.com/bykWBcX.jpg Had enough of Gimp 2.9/2.10 for today. Going for a (Easter) Sunday afternoon beer RE: BevelReflectLogo in Python script? - Ofnuts - 04-01-2018 Tin's python script calls the BRL script-fu that itself calls the "ML Bevel Reflect" plugin. So better figure out that things are installed and working in the right order:
RE: BevelReflectLogo in Python script? - racer-x - 04-01-2018 1. I have ML Bevel Reflect 2.0 installed and it shows up in the Plug-in browser. I assume it works then? How do I test? 2. I have script-fu installed. Doesn't show up in plug-in browser. I assume it works because I can run all python scripts. How to test? 3. Tin's python-fu is installed and shows up in plug-in browser. It loads and works until error I posted. No .scm scripts show in plugin browser. RE: BevelReflectLogo in Python script? - Ofnuts - 04-01-2018 (04-01-2018, 02:01 PM)racer-x Wrote: 1. I have ML Bevel Reflect 2.0 installed and it shows up in the Plug-in browser. I assume it works then? How do I test?
RE: BevelReflectLogo in Python script? - racer-x - 04-01-2018 OK, now I see the problem. ML Bevel Reflect 2.0 is listed in [Filters/Map/ML Bevel Reflect]. When I try to launch it reports an error.. Code: ML Bevel Reflect 2.0 Warning Looks like it is blocked by the appimage. I give up on this now... |