It is currently Tue Jul 23, 2024 6:28 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 35 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: More text art
PostPosted: Sat Nov 05, 2011 6:10 pm  (#1) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
Image

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


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: More text art
PostPosted: Sat Nov 05, 2011 6:41 pm  (#2) 
Offline
GimpChat Member
User avatar

Joined: Jul 08, 2011
Posts: 285
Nice work Rod.Like it :).

_________________
Image

My Flickr
http://anaplus.deviantart.com/


Top
 Post subject: Re: More text art
PostPosted: Sat Nov 05, 2011 7:19 pm  (#3) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
Pretty big!
Thanks Ana. :)

_________________
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: More text art
PostPosted: Sun Nov 06, 2011 8:20 am  (#4) 
Offline
GimpChat Member
User avatar

Joined: Aug 24, 2011
Posts: 1785
Location: Dallas, TX
Looks pretty cool Rod. When you started this post it piqued my interest in finding a script for creating topography like the ones below but it turned out to be something entirely different. Does anyone know how to do this type of array with say 10 to 20 words? It's the randomness I'm looking for, with both size and positioning options.


Attachments:
typography_1.jpg
typography_1.jpg [ 187.29 KiB | Viewed 2225 times ]
shutterstock_50837560.jpg
shutterstock_50837560.jpg [ 585.44 KiB | Viewed 2231 times ]

_________________
Image
Top
 Post subject: Re: More text art
PostPosted: Sun Nov 06, 2011 8:53 am  (#5) 
Offline
GimpChat Member
User avatar

Joined: Apr 08, 2010
Posts: 5420
Location: Northwest Ohio
What I would love to have it a script to generate that kind of topography AND use that output in Rod's script.


Top
 Post subject: Re: More text art
PostPosted: Sun Nov 06, 2011 10:16 am  (#6) 
Offline
GimpChat Member
User avatar

Joined: Sep 24, 2010
Posts: 12535
Lot's of ways to do this. Look at this thread (read all the entries; several online sites were mentioned) at RetouchPRO Drac (may not see all the pictures, but the link to the various programs are workable. Also, Rod, I believe, mentioned Textaizer recently; well these guys also create a program called Wordaizer that does these word clouds. :)

_________________
Lyle

Psalm 109:8

Image


Top
 Post subject: Re: More text art
PostPosted: Sun Nov 06, 2011 11:17 am  (#7) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
There is also a python script by bytes and pixels that does word art in random size and patterns, but you would have to move them to the different degrees you want.
http://registry.gimp.org/node/24974 - looks like their site may be down due to MySQL problems though.

_________________
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: More text art
PostPosted: Sun Nov 06, 2011 11:21 am  (#8) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
I attached the wordart zip file.
This is python so you need python support to run it.By the way i could never get this to run in Gimp-2.7 versions so if you can PLEASE tell me how! :)
Thanks.

Another small note of advice - DO NOT use all your fonts at once or you will be waiting a very, very long time for your image.Actually you will probably crash Gimp altogether.

Attachment:
b&p_word_art_01_v1.0.zip [10.2 KiB]
Downloaded 109 times

_________________
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: More text art
PostPosted: Sun Nov 06, 2011 5:46 pm  (#9) 
Offline
GimpChat Member
User avatar

Joined: Aug 24, 2011
Posts: 1785
Location: Dallas, TX
Thanks guys, I'll check out the sites and give the python script a try and let you know if It works form my purposes. Even if it doesn't, always nice to have new toys to play with. Manly toys of course.

_________________
Image


Top
 Post subject: Re: More text art
PostPosted: Sun Nov 06, 2011 10:04 pm  (#10) 
Offline
GimpChat Member
User avatar

Joined: Aug 24, 2011
Posts: 1785
Location: Dallas, TX
Yo Rod. I installed the word art plug-in and need to know where it shows up. I looked in the plug-in browser under help and it returned a "no matches" result.

_________________
Image


Top
 Post subject: Re: More text art
PostPosted: Mon Nov 07, 2011 10:41 am  (#11) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
Sorry, i changed the location in the code.

In lines 1462 to the end you will find this code
#---------------------------------------------------------------------
register(
    "Word_Art",
    N_("Create a poster art from text strings"),
    "Create a random poster art from text strings - b&p_word_art_01_v1.0.py",
    "Andrei Roslovtsev",
    "www.bytes-and-pixels.com",
    "2011",
    N_("_Word Art"),
    #"RGB*, GRAY*",
    "",
    [
        (PF_SPINNER, "img_w", "Image Width:", 640, (1, 20000, 1)),
        (PF_SPINNER, "img_h", "Image Height:", 480, (1, 20000, 1)),
        (PF_OPTION,"fonts",   "Font Range:", 0, ["All fonts","Limited fonts"]),
        (PF_SPINNER, "l_limit", "Lower Limit:", 0,(1,2000,1)),
        (PF_SPINNER, "u_limit", "Upper Limit:", 0,(1,2000,1)),
        (PF_OPTION,"iterations", "Iterations:", 0, ["Font number","Custom"]),
        (PF_SPINNER, "custom", "Custom:", 0,(0,2000,1)),
        (PF_COLOR, "bg_col", "Background Color:", (250, 250, 250) ),
        (PF_COLOR, "base_tc", "Base Text Color:", (140, 155, 175) ),
        (PF_SLIDER, "tc_var", "Text color variation:", 50, (0, 255, 1)),
        (PF_SPINNER, "base_ts", "Base Text Size (px):", 24, (1, 2000, 1)),
        (PF_SLIDER, "ts_var", "Text size variation (px):", 100, (0, 1000, 1)),
        (PF_SLIDER, "tr_var", "Text rotation variation (degrees):", 10, (0, 180, 1)),
        (PF_SPINNER, "base_to", "Base Text Opacity (%):", 80, (1, 100, 1)),
        (PF_SLIDER, "to_var", "Text opacity variation (%):", 20, (0, 100, 1)),
        (PF_OPTION,"txt_mode",   "Text Options:", 1, ["Font names","User input"]),
        (PF_TEXT, "in_text", "Text:", "Python\nGimp\nPyGTK\nCool Plugins"),
        (PF_SPINNER, "seed", "Random Seed:", 1000, (1, 2000, 1)),
        (PF_TOGGLE, "flatten_flag", "Flatten Image", 0)
    ],
    [],
    make_poster,
    #menu="<Image>/File/Create/Buttons",
    menu="<Image>/Filters/Web Page Themes/www.bytes-and-pixels.com",
    domain=("gimp20-python", gimp.locale_directory)
    )

main()

This line tells you where to find the menu item
    menu="<Image>/Filters/Web Page Themes/www.bytes-and-pixels.com",


Hope that helps. :)

_________________
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: More text art
PostPosted: Mon Nov 07, 2011 5:47 pm  (#12) 
Offline
GimpChat Member
User avatar

Joined: Aug 24, 2011
Posts: 1785
Location: Dallas, TX
OK, thanks Rod. I never remember to look in file create.

_________________
Image


Top
 Post subject: Re: More text art
PostPosted: Mon Nov 07, 2011 6:41 pm  (#13) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
It's not there. :)
It's in Filters>Web Page Themes>www.bytes-and-pixels.com

The one location you refer to i commented out.

_________________
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: More text art
PostPosted: Tue Nov 08, 2011 4:08 pm  (#14) 
Offline
GimpChat Member
User avatar

Joined: Apr 08, 2010
Posts: 5420
Location: Northwest Ohio
I can't find it...but then I can't find most of my py files...for some reason, even though they are in my py folder, they do not show up in any menus. Someone with mac knowledge might know why.


Top
 Post subject: Re: More text art
PostPosted: Wed Nov 09, 2011 7:33 pm  (#15) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
2-ton wrote:
I can't find it...but then I can't find most of my py files...for some reason, even though they are in my py folder, they do not show up in any menus. Someone with mac knowledge might know why.


Probably the same thing i get when i try to run it in Gimp-2.7 versions.It doesn't show up anywhere for some reason.

_________________
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: More text art
PostPosted: Mon Jul 16, 2012 6:42 pm  (#16) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
I tried the S and P plugin, it's OK.
Lyle wrote:
Also, Rod, I believe, mentioned Textaizer recently; well these guys also create a program called Wordaizer that does these word clouds. :)

I like the way the Wordaizer program works.


Attachments:
File comment: Musical Wordaizer
Wordaizer-12-07-16-gc.jpg
Wordaizer-12-07-16-gc.jpg [ 177.11 KiB | Viewed 1062 times ]

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)
Top
 Post subject: Re: More text art
PostPosted: Tue Jul 17, 2012 4:56 am  (#17) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
That looks really nice Odin. :)

_________________
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: More text art
PostPosted: Tue Jul 17, 2012 6:01 am  (#18) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14725
Location: USA
I like the new version.

Image

Image

_________________
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: More text art
PostPosted: Tue Jul 17, 2012 11:42 am  (#19) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
Cool, Rod!
The Wordaizer options are impressive.

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)


Top
 Post subject: Re: More text art
PostPosted: Fri Jul 20, 2012 11:30 pm  (#20) 
Offline
GimpChat Member

Joined: Jul 14, 2012
Posts: 162
The OP is really great Rod. It makes me think of velvet paintings and for some reason, biblical. I started on at least a couple tutorials to do something like this but found them too incomplete to continue.


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

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) GEGL Text Style Collection - plugin with many fancy text styles

14

No new posts Attachment(s) manipulate a portion of text inside a text layer using python-fu

2

No new posts script to load text file and create text layer

6

No new posts Attachment(s) GEGL ROCK TEXT 2 - Advance rock text plugin -requires Gimp 2.10.32+

8

No new posts Attachment(s) Colorful Pattern from Text (Text Pattern) Plug-in

32



* Login  



Powered by phpBB3 © phpBB Group