06-01-2020, 02:30 PM
I had a look in my PClinuxOS desktop, which is a bit different to this kubuntu notebook. Still the same although different folders (usr/lib vs. usr/lib64) libgimp-2.0.so.0 is the name and is a symbolic link to the current version file)
Got your scripts working here, kubuntu 18.04 / gimp 2.10.14
The python plugin - line 1 and line 11
and the script - just the upper case
I will attach the files I used, just in case.
More linux testers needed.
As a test I called gegl up in the BIMP dialog, get both and seems to work: https://i.imgur.com/SDYf9Tf.jpg It might bring new life back to BIMP.
Got your scripts working here, kubuntu 18.04 / gimp 2.10.14
The python plugin - line 1 and line 11
Code:
#!/usr/bin/env python2
from gimpfu import *
from ctypes import *
from sys import argv, platform
import sys
# sys.stderr = open('C:/temp/python-fu-output.txt','a')
# sys.stdout=sys.stderr # So that they both go to the same file
def load_library (library_name):
if platform == "linux" or platform == "linux2":
library_name = library_name + '.so.0'
elif platform == "win32":
and the script - just the upper case
Code:
SF-OPTION "Superpixels Color" '("average" "random")
I will attach the files I used, just in case.
More linux testers needed.
As a test I called gegl up in the BIMP dialog, get both and seems to work: https://i.imgur.com/SDYf9Tf.jpg It might bring new life back to BIMP.