Added Graphics magick support by means of user selectable graphic convertion backends

This commit is contained in:
Roberto Rosario
2011-03-31 12:23:58 -04:00
parent c1bb3a90bb
commit 18b9964786
10 changed files with 150 additions and 69 deletions

View File

@@ -0,0 +1,18 @@
class ConvertError(Exception):
pass
class UnknownFormat(ConvertError):
pass
class UnpaperError(ConvertError):
pass
class IdentifyError(ConvertError):
pass
class UnkownConvertError(ConvertError):
pass