Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. """Pillow (Fork of the Python Imaging Library)
  2. Pillow is the friendly PIL fork by Jeffrey A. Clark (Alex) and contributors.
  3. https://github.com/python-pillow/Pillow/
  4. Pillow is forked from PIL 1.1.7.
  5. PIL is the Python Imaging Library by Fredrik Lundh and contributors.
  6. Copyright (c) 1999 by Secret Labs AB.
  7. Use PIL.__version__ for this Pillow version.
  8. ;-)
  9. """
  10. from . import _version
  11. # VERSION was removed in Pillow 6.0.0.
  12. # PILLOW_VERSION was removed in Pillow 9.0.0.
  13. # Use __version__ instead.
  14. __version__ = _version.__version__
  15. del _version
  16. _plugins = [
  17. "BlpImagePlugin",
  18. "BmpImagePlugin",
  19. "BufrStubImagePlugin",
  20. "CurImagePlugin",
  21. "DcxImagePlugin",
  22. "DdsImagePlugin",
  23. "EpsImagePlugin",
  24. "FitsImagePlugin",
  25. "FitsStubImagePlugin",
  26. "FliImagePlugin",
  27. "FpxImagePlugin",
  28. "FtexImagePlugin",
  29. "GbrImagePlugin",
  30. "GifImagePlugin",
  31. "GribStubImagePlugin",
  32. "Hdf5StubImagePlugin",
  33. "IcnsImagePlugin",
  34. "IcoImagePlugin",
  35. "ImImagePlugin",
  36. "ImtImagePlugin",
  37. "IptcImagePlugin",
  38. "JpegImagePlugin",
  39. "Jpeg2KImagePlugin",
  40. "McIdasImagePlugin",
  41. "MicImagePlugin",
  42. "MpegImagePlugin",
  43. "MpoImagePlugin",
  44. "MspImagePlugin",
  45. "PalmImagePlugin",
  46. "PcdImagePlugin",
  47. "PcxImagePlugin",
  48. "PdfImagePlugin",
  49. "PixarImagePlugin",
  50. "PngImagePlugin",
  51. "PpmImagePlugin",
  52. "PsdImagePlugin",
  53. "QoiImagePlugin",
  54. "SgiImagePlugin",
  55. "SpiderImagePlugin",
  56. "SunImagePlugin",
  57. "TgaImagePlugin",
  58. "TiffImagePlugin",
  59. "WebPImagePlugin",
  60. "WmfImagePlugin",
  61. "XbmImagePlugin",
  62. "XpmImagePlugin",
  63. "XVThumbImagePlugin",
  64. ]
  65. class UnidentifiedImageError(OSError):
  66. """
  67. Raised in :py:meth:`PIL.Image.open` if an image cannot be opened and identified.
  68. If a PNG image raises this error, setting :data:`.ImageFile.LOAD_TRUNCATED_IMAGES`
  69. to true may allow the image to be opened after all. The setting will ignore missing
  70. data and checksum failures.
  71. """
  72. pass