Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
gimp 2.9.x
#6
No 2.9.X environment.

Not too surprised that something as low-level as tiles is broken (or works differently) on 2.9.x (what is the bit depth of the image)?

First thing to do is add messages/print statements to see where the script breaks (does it crash, or it is just ending early?).

If there is a Python exception thrown, you can catch it and display it like this:

Code:
import traceback


try
   # Code with suspected Python exception goes here
except Exception as e:
   pdb.gimp_message(e.args[0])
   pdb.gimp_message(traceback.format_exc())
   print traceback.format_exc()
Reply


Messages In This Thread
gimp 2.9.x - by dinasset - 08-25-2017, 01:47 PM
RE: gimp 2.9.x - by rich2005 - 08-26-2017, 10:45 AM
RE: gimp 2.9.x - by dinasset - 08-26-2017, 10:52 AM
RE: gimp 2.9.x - by Ofnuts - 08-26-2017, 01:14 PM
RE: gimp 2.9.x - by dinasset - 08-26-2017, 01:42 PM
RE: gimp 2.9.x - by Ofnuts - 08-26-2017, 07:25 PM
RE: gimp 2.9.x - by dinasset - 08-26-2017, 07:47 PM
RE: gimp 2.9.x - by Ofnuts - 08-26-2017, 10:21 PM
RE: gimp 2.9.x - by dinasset - 08-27-2017, 06:10 AM

Forum Jump: