It is currently Thu Jun 25, 2026 4:23 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 33 posts ]  Go to page Previous  1, 2
Author Message
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Tue May 22, 2018 10:04 pm  (#21) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 14073
Location: Native to NYC living in Arizona, Gimp 2.8 - 3.0, Win 11 PC.
I'm not so eager to install the latest release.
I'll continue using 2.8.18,
without all these issues.
Also having a backup plan,
when and if I make the leap toward 2.10
.

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Tue May 22, 2018 10:25 pm  (#22) 
Offline
GimpChat Member
User avatar

Joined: Sep 24, 2010
Posts: 12780
Interesting, Machenzieh; weird how the new GIMP acts differently depending on who you are. Trust me; I feel your pain.

As for Wallace, I'm calling you out as a chicken. lolololololol

Well; you appear to be smarter than me anyway. ;)

:)

_________________
Lyle

Psalm 109:8

Image


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Wed May 23, 2018 3:57 am  (#23) 
Offline
GimpChat Member

Joined: Mar 04, 2011
Posts: 2604
Small tiles does not show in the search function any more in Gimp 2.10.2 but the plugin is still there, might be a dependency for something else.

If you need it in the menu
**copy** C:\Program Files\GIMP 2\lib\gimp\2.0\plug-ins\tile-small.exe

Edit:
Nope, back to what I posted earlier - need the file from Gimp 2.8 (64 bit version attached, remember to unzip it)
to
C:\Users\your-name\AppData\Roaming\GIMP\2.10\plug-ins\

but if you have gmic installed why bother, the filter Arrays & Tiles -> Array (regular) is equivalent.


Attachments:
tile-small.exe.zip [25.87 KiB]
Downloaded 242 times
Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Wed May 23, 2018 6:14 am  (#24) 
Offline
GimpChat Member
User avatar

Joined: Sep 24, 2010
Posts: 12780
Still appears for me, Rich. Again, how weird one person's GIMP is different than another's. Very strange. :)


Attachments:
st_h.png
st_h.png [ 21.86 KiB | Viewed 5433 times ]

_________________
Lyle

Psalm 109:8

Image
Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Wed May 23, 2018 1:19 pm  (#25) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2661
Location: California
How many scripts/plugins are we supposed to have when we run the / command in the search bar from a new install in GIMP? By new I mean, not adding plugins from 2.8 to gimp 2.10.2.


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Sat Jun 09, 2018 5:59 pm  (#26) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2661
Location: California
Not really liking this gimp version very much due to missing features. Just tried searching for Plasma and it's located in the procedure browser but not in the /search command box. Why are some plugins in one place but not the other? It just doesn't make sense.


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Sat Jun 09, 2018 10:03 pm  (#27) 
Offline
GimpChat Member
User avatar

Joined: Sep 24, 2010
Posts: 12780
I continue to feel your pain, Mackenzieh. :)

_________________
Lyle

Psalm 109:8

Image


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Sun Jun 10, 2018 12:39 am  (#28) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2661
Location: California
lylejk wrote:
I continue to feel your pain, Mackenzieh. :)

:)


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Mon Jun 11, 2018 6:03 am  (#29) 
Offline
GimpChat Member
User avatar

Joined: Aug 08, 2016
Posts: 2823
Location: East Midlands of England
if anyone wants to use Small Tiles and is not sure about using Rich's suggestion and copying over the plugin into their user plugin folder MareroQ's option is a possible solution too.

Copy the code below into a text editor and save it with a file extension of .py into your 2.10 user plugin folder. This will call the small_tiles plugin that lurks within 2.10 for you.

#!/usr/bin/env python
#-*- coding: utf-8 -*-
# Author of the original plugin: Andy Thomas
from gimpfu import *
def plugin_main(image, layer):
    pdb.plug_in_small_tiles(image, layer, 2, run_mode=RUN_INTERACTIVE)
register(
    "python_fu_small_tiles",
    "Calls the Small Tiles plugin",
    "Calls the Small Tiles plugin in Gimp 2.10",
    "Andy Thomas/Skinnyhouse/MrQ",
    "GPL",
    "2018",
    "<Image>/Filters/Small Tiles...",
    "*",
    [],
    [],
    plugin_main)
main()


Attachment:
SmallTilesDialog.jpg
SmallTilesDialog.jpg [ 58.91 KiB | Viewed 5298 times ]

_________________
Image
"Let no one steal your dreams."
Paul Cookson

Custom Font Links
2.10 Tools
Character Paths
White Bases


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Thu Feb 07, 2019 10:06 pm  (#30) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2661
Location: California
Skinnyhouse wrote:
if anyone wants to use Small Tiles and is not sure about using Rich's suggestion and copying over the plugin into their user plugin folder MareroQ's option is a possible solution too.

Copy the code below into a text editor and save it with a file extension of .py into your 2.10 user plugin folder. This will call the small_tiles plugin that lurks within 2.10 for you.

#!/usr/bin/env python
#-*- coding: utf-8 -*-
# Author of the original plugin: Andy Thomas
from gimpfu import *
def plugin_main(image, layer):
    pdb.plug_in_small_tiles(image, layer, 2, run_mode=RUN_INTERACTIVE)
register(
    "python_fu_small_tiles",
    "Calls the Small Tiles plugin",
    "Calls the Small Tiles plugin in Gimp 2.10",
    "Andy Thomas/Skinnyhouse/MrQ",
    "GPL",
    "2018",
    "<Image>/Filters/Small Tiles...",
    "*",
    [],
    [],
    plugin_main)
main()


Attachment:
SmallTilesDialog.jpg

It works.


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Fri Feb 08, 2019 2:18 am  (#31) 
Offline
GimpChat Member
User avatar

Joined: Mar 01, 2014
Posts: 14048
Location: Spain, Aragón
I don't find "IWarp" does someone know how to find it? I tried by the ways explained before but I'm not able to find it.
Thanks.

_________________
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: GIMP: Post missing features as you find time, please.
PostPosted: Fri Feb 08, 2019 3:46 am  (#32) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 14073
Location: Native to NYC living in Arizona, Gimp 2.8 - 3.0, Win 11 PC.
Issabella wrote:
I don't find "IWarp" does someone know how to find it? I tried by the ways explained before but I'm not able to find it.
Thanks.

I think this is IWarp.
Image

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: GIMP: Post missing features as you find time, please.
PostPosted: Fri Feb 08, 2019 4:29 am  (#33) 
Offline
GimpChat Member
User avatar

Joined: Mar 01, 2014
Posts: 14048
Location: Spain, Aragón
Thank you so much Wallace. I didn't know it. I'll practice 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 new topic Reply to topic  [ 33 posts ]  Go to page Previous  1, 2

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group