version 20130830 samj   ( fichier/file main.c )


Modification procdure pour fonctionner avec Python aprs analyse de Paynekj  :
http://gimpchat.com/viewtopic.php?f=9&t=8404#p108967

Modification procedure to work with Python after analyzing Paynekj :
http://gimpchat.com/viewtopic.php?f=9&t=8404#p108967

________________________________________________

Installation

Installer le plug-in dans un rpertoire reconnu par Gimp (paramtrer les prfrences).
Supprimer le fichier " pluginrc " , dmarrer Gimp.

Install the plug-in in a directory set in Gimp.
Delete the "pluginrc" file, start Gimp.

________________________________________________


Calque > Transformer > Deskew

Layer > Transform > Deskew

________________________________________________

Python

pdb.gimp_deskew_plugin(image, drawable)


Exemple appel python avec console :

		image=gimp.image_list()[0]
		drawable=image.active_layer
		pdb.gimp_deskew_plugin(image, drawable)


*****


Example call with python console :
	
		image=gimp.image_list()[0]
		drawable=image.active_layer
		pdb.gimp_deskew_plugin(image, drawable)

________________________________________________

Script-Fu


(gimp-deskew-plugin run-mode image drawable)


________________________________________________

