It is currently Tue Jul 02, 2024 12:13 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 327 posts ]  Go to page Previous  1 ... 9, 10, 11, 12, 13, 14, 15 ... 17  Next
Author Message
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Wed Jun 11, 2014 2:50 pm  (#221) 
Offline
Script Coder
User avatar

Joined: Nov 06, 2012
Posts: 239
Location: Italy
Issabella wrote:
Gino D well done. I like it very much. :clap

Thank you, Issabella. :)
The examples of logos of yours posted along this thread are very nice as well.

_________________
Gino D's GIMP scripts: https://sites.google.com/site/ginodonig/gimp-scripts


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Wed Jun 11, 2014 2:50 pm  (#222) 
Offline
Script Coder
User avatar

Joined: Nov 06, 2012
Posts: 239
Location: Italy
MareroQ wrote:
so my question (request):
Can you add an option to save the settings used to comment (where the script settings will be listed side by side with the corresponding specified values) ?

ps. The only known me a script (writing values ​​to the comment) is
Crossword Grid created by Gino D
http://registry.gimp.org/node/25531

For information only, in the mentioned script I employ the "gimp-image-attach-parasite" procedure to accomplish the task of filling the image comment of the generated pattern with a summary of its characteristics, consisting in a list of the settings and values used to produce the peculiar crossword grid depicted.

If it can be helpful, I am attaching the actual code snippet of the script featuring the procedure in question:
;; write a summary of the crossword grid's features in the image comment
(gimp-image-attach-parasite
 image1
 (list* "gimp-comment"
        1
        (string-append "Number of columns:  "
                       (atom->string x1)
                       "\r\nNumber of rows:  "
                       (atom->string y1)
                       "\r\nCell width (in pixels):  "
                       (atom->string cell-width)
                       "\r\nCell height (in pixels):  "
                       (atom->string cell-height)
                       "\r\nColor of lights:  "
                       (color-notations light-color)
                       "\r\nColor of blocks:  "
                       (color-notations block-color)
                       "\r\nColor of borders:  "
                       (color-notations border-color)
                       "\r\nCell border thickness (in pixels):  "
                       (atom->string cell-border-tn)
                       "\r\nGrid border thickness (in pixels):  "
                       (atom->string grid-border-tn)
                       "\r\nBlock margins (in pixels):  "
                       (atom->string block-margins)
                       "\r\nMaximum answer length:  "
                       (atom->string max-ans-length)
                       "\r\nEnsure 180 degree rotational symmetry:  "
                       (if (= ensure-symmetry FALSE) "FALSE" "TRUE")
                       "\r\nAdd clue numbers:  "
                       (if (= add-clue-numbers FALSE)
                           "FALSE"
                           (string-append
                            "TRUE"
                            "\r\n    Size of digit "
                            "(in % of cell height):  "
                            (atom->string digit-size)
                            "\r\n    Text color:  "
                            (color-notations text-color)
                            "\r\n    Font:  "
                            (make-string 1 (integer->char 34))
                            text-font
                            (make-string 1 (integer->char 34))))
                       "\r\nRandom seed:  "
                       (atom->string *crossword-seed*)
                       "\r\nKeep layers separate:  "
                       (if (= separate-layers FALSE) "FALSE" "TRUE")
                       "\r\n")
        ()))


_________________
Gino D's GIMP scripts: https://sites.google.com/site/ginodonig/gimp-scripts


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Wed Jun 11, 2014 6:40 pm  (#223) 
Offline
GimpChat Founder
User avatar

Joined: May 22, 2008
Posts: 5242
Location: Gimpville
:tyspin Daria, MareroQ & dinasset.

Nice results, Sallyanne, Graechan, Issabella & Molly. :bigthup

I hope to have a small tutorial ready soon, with a better description of some of the settings.

Thank you for the code, Gino D. That looks to be a handy feature. :hehe

_________________
“If you reach for the stars, you just might land on a decently sized hill.” - Stuart Hill


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Wed Jun 11, 2014 7:01 pm  (#224) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Sallyanne the script is now at 2.1 if your using an earlier version go to the initial post and update

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


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Thu Jun 12, 2014 4:58 am  (#225) 
Offline
GimpChat Member
User avatar

Joined: Mar 01, 2014
Posts: 12705
Location: Spain, Aragón
GnuTux, a tutorial for it with settings for each result would be very appreciate. I wish you have enough time for it. ;) :tyspin

_________________
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: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Thu Jun 12, 2014 5:01 am  (#226) 
Offline
Global Moderator
User avatar

Joined: Apr 07, 2010
Posts: 14182
:ditto that would be great.

_________________
Image


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Thu Jun 12, 2014 8:32 pm  (#227) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
I think GnuTux has some more code features to add first

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


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Thu Jun 12, 2014 9:09 pm  (#228) 
Offline
GimpChat Member
User avatar

Joined: Apr 08, 2010
Posts: 5420
Location: Northwest Ohio
Uh Oh, I put in this new version and now I can't use it because the box is too long for my screen, and there is no scrolling script for macs yet. Boo.


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Thu Jun 12, 2014 9:19 pm  (#229) 
Offline
GimpChat Founder
User avatar

Joined: May 22, 2008
Posts: 5242
Location: Gimpville
2-ton wrote:
Uh Oh, I put in this new version and now I can't use it because the box is too long for my screen, and there is no scrolling script for macs yet. Boo.

You should be able to use the Alpha to Logo section of the new version on pretty much any screen resolution. The only difference between the two options is that the Create Logo option creates a new image and adds the text you put in the text box. You can just do that part manually and run the script from the Alpha to Logo Menu.

I have copies of all the old versions. If you want the previous version (or any earlier version), let me know and I'll attach.

Graechan wrote:
I think GnuTux has some more code features to add first

I do have some new features to add, but that won't affect the tutorial on the extrusion section, which I'll be posting soon. :bigthup

_________________
“If you reach for the stars, you just might land on a decently sized hill.” - Stuart Hill


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Thu Jun 12, 2014 9:23 pm  (#230) 
Offline
GimpChat Member
User avatar

Joined: Apr 08, 2010
Posts: 5420
Location: Northwest Ohio
I did save the old version just in case. I looked up how to compile for mac, hahahahaha. yeah, right, it's never gonna happen here! I had no idea what they were talking about, it was all like a foreign language.


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Thu Jun 12, 2014 9:31 pm  (#231) 
Offline
GimpChat Founder
User avatar

Joined: May 22, 2008
Posts: 5242
Location: Gimpville
There are several features in the new version that you will most likely want, including more precise gradient fills and the addition of a shrink extrusion feature. Although, you could use the stand alone 3D Extrusion script for even more extrusion options.

_________________
“If you reach for the stars, you just might land on a decently sized hill.” - Stuart Hill


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Thu Jun 12, 2014 10:18 pm  (#232) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
GnuTux wrote:
2-ton wrote:
Uh Oh, I put in this new version and now I can't use it because the box is too long for my screen, and there is no scrolling script for macs yet. Boo.

You should be able to use the Alpha to Logo section of the new version on pretty much any screen resolution. The only difference between the two options is that the Create Logo option creates a new image and adds the text you put in the text box. You can just do that part manually and run the script from the Alpha to Logo Menu.

I have copies of all the old versions. If you want the previous version (or any earlier version), let me know and I'll attach.

Graechan wrote:
I think GnuTux has some more code features to add first

I do have some new features to add, but that won't affect the tutorial on the extrusion section, which I'll be posting soon. :bigthup

GnuTux I just thought you would be busy enough with the updates

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


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Sun Jul 27, 2014 12:29 pm  (#233) 
Offline
GimpChat Member
User avatar

Joined: Jan 10, 2013
Posts: 863
I do not understand why this is, but using the same font (comic sans ms bold) in the "Logo-Toolbox" the result is different. (text tool :text )

I used the default settings, just changing the font and font size (148)
Image
This same problem was found with the Glass Effect Text.


But with the "Bling Text Logo" and the "Enviro Logo" are equal to the result obtained with the Text Tool.

Not tested other sources.

_________________
bbbbbbbbbbbImage
bbbbbbbbbbb Be patient, English is not my language.


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Sun Jul 27, 2014 2:15 pm  (#234) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
Akros
just launched Logo Toolbox, but my parameters window looks different from yours:

Attachment:
Ashampoo_Snap_2014.07.27_21h14m22s_002_.png
Ashampoo_Snap_2014.07.27_21h14m22s_002_.png [ 106.4 KiB | Viewed 1759 times ]

_________________
"Where am I ?"


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Sun Jul 27, 2014 2:52 pm  (#235) 
Offline
GimpChat Member
User avatar

Joined: Jan 10, 2013
Posts: 863
Dinasset is quite possible that my version of Logo Toolbox is not the most current.

But the question I raised is about the difference between the font obtained by the "Text tool", and obtained by "Logo Toolbox" and the "Glass Effect Text"

Somehow these two scrips seem to select another font, not the real font (comic sans ms bold).

This may be happening (or not) with other fonts.

In the picture posted in my previous post, although I have selected the same font, the result is different.

On top the selected font comic sans ms bold using the "text tool" :text
On bottom, using these scripts.

Do not know if you'll be able to reproduce the same result with a different version of the script.

Thx Dinasset !

_________________
bbbbbbbbbbbImage
bbbbbbbbbbb Be patient, English is not my language.


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Sun Jul 27, 2014 3:07 pm  (#236) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
just changing the text (Gimp) and the font size (148) with my version I get this

Attachment:
Ashampoo_Snap_2014.07.27_22h07m13s_003_.png
Ashampoo_Snap_2014.07.27_22h07m13s_003_.png [ 177.83 KiB | Viewed 1948 times ]


it seems the font used is correct


edit: my version is 2.1

_________________
"Where am I ?"


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Sun Jul 27, 2014 4:11 pm  (#237) 
Offline
GimpChat Member
User avatar

Joined: Jan 10, 2013
Posts: 863
dinasset wrote:
just changing the text (Gimp) and the font size (148) with my version I get this

Attachment:
Ashampoo_Snap_2014.07.27_22h07m13s_003_.png


it seems the font used is correct


edit: my version is 2.1

You may see the differences.
Are visible on the leg of the letter P
ImageImage
Image

_________________
bbbbbbbbbbbImage
bbbbbbbbbbb Be patient, English is not my language.


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Sun Jul 27, 2014 8:07 pm  (#238) 
Offline
GimpChat Founder
User avatar

Joined: May 22, 2008
Posts: 5242
Location: Gimpville
The difference you are seeing is due to the way stroking is done in these scripts.

The stroke is created by duplicating the text and placing the dupe layer above the original. On the original layer, the script performs Alpha to Select, shrinks by stroke width, inverts the selection and clears the outer area. The selection is then inverted and inner area of the stroke layer is also cleared.

When you combine both the text layer and the stroke layer, there is no size difference from the original text. You can also set the stroke with to zero to disable the stroke layer entirely.

IMO, this produces a much better stroke than stroking the selection or the path. There is less anti-aliasing on the stroke's outer edge because it uses the original text to create the stroke.

_________________
“If you reach for the stars, you just might land on a decently sized hill.” - Stuart Hill


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Mon Jul 28, 2014 5:18 am  (#239) 
Offline
GimpChat Member
User avatar

Joined: Jan 10, 2013
Posts: 863
After the solution appears, the question becomes pathetic ... :oops:
But now I can clearly understand what was going on. :shock:
Doubt clarified. :melt
Thx GnuTux. :tyspin

_________________
bbbbbbbbbbbImage
bbbbbbbbbbb Be patient, English is not my language.


Top
 Post subject: Re: Logo Toolbox V2.1 (Streamlined With Several New Updates)
PostPosted: Mon Jul 28, 2014 8:42 am  (#240) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
Glad to know Gnutux solved your doubts, Akros.
I should have very poor eyes, I didn't (and still I don't) see the difference in the font ...

_________________
"Where am I ?"


Top
Post new topic Reply to topic  [ 327 posts ]  Go to page Previous  1 ... 9, 10, 11, 12, 13, 14, 15 ... 17  Next

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) Logo Toolbox Scrolling interface for GIMP 2.10.18

10

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 Attachment(s) MH Gold for Gimp 2.10 (Text Logo & Alpha to Logo)

1

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

8



* Login  



Powered by phpBB3 © phpBB Group