Hello,
I think I've found a small error in the documentation:
In BaseBitmap.ScaleIt it lists the final argument as inprop
. While using this:
orig.ScaleIt(newBitmap, intens=256, sample=True, inprop=False)
I got the following error:
TypeError: Required argument 'nprop' (pos 4) not found
When I changed the argument to nprop
, it worked.
Thanks.