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 [ 58.91 KiB | Viewed 5298 times ]