It is currently Tue Apr 23, 2024 12:55 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 36 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 3:34 pm  (#1) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2246
Location: Poland
Old topic - sequentially for Gimp (mainly for GMIC - but not only).
Any aid (for code) please!


Attachments:
Test sequences plgins.png
Test sequences plgins.png [ 35.11 KiB | Viewed 10495 times ]
Multi GMIC.jpg
Multi GMIC.jpg [ 269.84 KiB | Viewed 10515 times ]
My_Gmic_Logo_En.zip [1.59 KiB]
Downloaded 363 times

_________________
Image

Slava
Ukraini!
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: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 4:09 pm  (#2) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Nicely done. :)
Image

Image

"Looks Good To Me!" :bigthup
It's like finger painting in GIMP.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 4:33 pm  (#3) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
The bg layer seems to be in the wrong position on image display after script finishes.It loads in the middle layer so the secondary color in my case "blue" isn't shown. I am not sure how to position layers in Python code. :)

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 4:44 pm  (#4) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2246
Location: Poland
My first problem was how to add a few commands in sequence in one call (and it worked) - In the next step I'm going to learn how to control (set) layer modes. I'm not ready for a quick new solutions - I have a lot to learn - so your code changes will be very helpful.

ps. Calling the subsequent commands for GMIC should already be simple...

_________________
Image

Slava
Ukraini!


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 5:51 pm  (#5) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
MareroQ are you experimenting with Gimpscripter rather than using scheme

You can set the layer modes in Gmic or in Gimp, in Gmic use Layers/Blend[standard]
Image

There are numerous Frames available for use in Gmic try adding them as a separate option to the Bkg layer

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 8:06 pm  (#6) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Marcello you could make the color for the filter hairlock a setting, below I set to Blue
Image

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 9:28 pm  (#7) 
Offline
GimpChat Member
User avatar

Joined: Mar 10, 2014
Posts: 845
Yes! I changed the color (green) in Gmic>Rendering>Hair locks and after I run the filter[s] Is not working
Image
Did you use Blend standard with a bottom blue layer?


Last edited by Marcello on Mon Dec 01, 2014 10:06 pm, edited 2 times in total.

Top
 Post subject: Re: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 9:43 pm  (#8) 
Offline
GimpChat Member
User avatar

Joined: May 27, 2011
Posts: 707
MareroQ

Where does the scrip go?


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Mon Dec 01, 2014 10:09 pm  (#9) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
pirate541 this is a python script so it goes in your plugins folder
Marcello are you able to select any color using the menu like you can in scheme
if you rewrote the script in scheme I could show you how, but doing it in python is above my pay scale :rofl

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Wed Dec 03, 2014 12:52 am  (#10) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Marcello Here is a look at the scheme version, the color and deform amt are adjustable
I've not used a Bkg-color widget because the bkg is only effective is it's Black
Image

Image

Image

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Wed Dec 03, 2014 1:49 pm  (#11) 
Offline
GimpChat Member
User avatar

Joined: Mar 10, 2014
Posts: 845
Good idea to have the deform param.! where I can find the scheme version?


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Wed Dec 03, 2014 5:14 pm  (#12) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Marcello I can send the scheme version in a PM to you so that you can see how it is written,
then it's up to you whether or not you want to finish, below is the code for 'Deform + Hair lock' the others I am still doing

; *******************************************"Deform + Hair lock"
   ((= gmic 3)

            (plug-in-gmic 1 image gmic-layer 1
               (string-append
                  "-v - " ; To have a silent output. Remove it to display errors from the G'MIC interpreter on stderr.
                  "-deform "
                  (number->string deform) ",")
            )

                (plug-in-gmic 1 image gmic-layer 1
               (string-append
                  "-v - " ; To have a silent output. Remove it to display errors from the G'MIC interpreter on stderr.
                  "-gtutor_hairlock 0.5,0.5,0.5,"
                  (number->string red) ","
                  (number->string green) ","
                  (number->string blue) ",255,0.5,45,0.5,0.5,0")
            )            
    )                 
; *******************************************

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Wed Dec 03, 2014 6:53 pm  (#13) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Just finished "Crayon + Hair lock" option
Image

Image

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Wed Dec 03, 2014 11:00 pm  (#14) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Finished "Deform" and the first frame "Fuzzy"
Image

Image

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Wed Dec 03, 2014 11:51 pm  (#15) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Finished "Cartoon + Rodilius" All Done now
Image

Image

Image

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Tue Jan 10, 2017 7:32 am  (#16) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2246
Location: Poland
It's an old story and a lot of changes in GMIC.
Some results have fun with the new version 1.8.0 pre G'MIC (http://gmic.eu/files/prerelease/) - My_Logo_in_Gmic_1.8.py.
Will not work with older versions G'MIC.

Edit: 11-01-2017 Updated plug-ins for G'MIC of the pre-release 2.0.0 series.


Attachments:
My_Logo_in_Gmic2 and Faves_location.zip [2.58 KiB]
Downloaded 190 times
PythonGLog.png
PythonGLog.png [ 32.5 KiB | Viewed 4217 times ]
MGL.png
MGL.png [ 2.29 MiB | Viewed 4217 times ]

_________________
Image

Slava
Ukraini!
Top
 Post subject: Re: My G'MIC Logo
PostPosted: Mon Aug 10, 2020 1:56 pm  (#17) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2246
Location: Poland
Updated plug-ins for G'MIC-QT, add vertical text.
Ideas for new combinations?


Attachments:
Gmic Logo.PNG
Gmic Logo.PNG [ 537.48 KiB | Viewed 3633 times ]
Gmic_Logo V-0.2.zip [2.64 KiB]
Downloaded 147 times

_________________
Image

Slava
Ukraini!
Top
 Post subject: Re: My G'MIC Logo
PostPosted: Tue Aug 11, 2020 3:56 am  (#18) 
Offline
GimpChat Member
User avatar

Joined: Mar 01, 2014
Posts: 12656
Location: Spain, Aragón
MareroQ, you are doing a very good job and getting the best effects to come to true again. :clap
This last one is very interesting but it says I must have Gmic plug-in. Please, could you post the missing item? Thank you so much.


Attachments:
GMIC Logos v2MareroQ.jpg
GMIC Logos v2MareroQ.jpg [ 86.34 KiB | Viewed 3597 times ]

_________________
Image

Gimp 2.10.30(samj) portable _ OS Windows 10 Home_ 64bits
Don’t be afraid to start over. It’s a new chance to rebuild what you want.
Top
 Post subject: Re: My G'MIC Logo
PostPosted: Tue Aug 11, 2020 6:10 am  (#19) 
Offline
GimpChat Member

Joined: Apr 09, 2018
Posts: 1792
Location: France
:wvy
I just did 1 try

Image

_________________
Les parfums, les couleurs et les sons se répondent.Baudelaire (Les fleurs du mal)
2.10.14 (Samj),2.10.21 (Samj) and 2.10.23(Samj) OS Windows 10 Home 64 bits


Top
 Post subject: Re: My G'MIC Logo
PostPosted: Tue Aug 11, 2020 6:56 am  (#20) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2246
Location: Poland
Hi Issabella.
Script-fu Gmic Logos is the Graechan version.
My version is python - Gmic_Logo V-0.2.py. (in menu: File/Create/Logos/G'mic Logo...)
You can download G'Mic from here:
https://gmic.eu/files/
https://www.fosshub.com/GMIC.html

@Level_0 - thanks for your interest and testing

_________________
Image

Slava
Ukraini!


Top
Post new topic Reply to topic  [ 36 posts ]  Go to page 1, 2  Next

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) Rusty Logo for Gimp 2.10 (Logo & Alpha to Logo)

2

No new posts Attachment(s) Alien Glow V.2 for Gimp-2.10 (Text Logo & Alpha to Logo)

6

No new posts [solved ] Alpha to logo/Bevel reflect Logo

8

No new posts Attachment(s) MH Gold for Gimp 2.10 (Text Logo & Alpha to Logo)

1

No new posts Attachment(s) Image Logo

3



* Login  



Powered by phpBB3 © phpBB Group