home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / lib / site-packages / cgkit / _Image.py < prev    next >
Encoding:
Python Source  |  2007-01-11  |  6.8 KB  |  165 lines

  1. # ***** BEGIN LICENSE BLOCK *****
  2. # Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. #
  4. # The contents of this file are subject to the Mozilla Public License Version
  5. # 1.1 (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. # http://www.mozilla.org/MPL/
  8. #
  9. # Software distributed under the License is distributed on an "AS IS" basis,
  10. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. # for the specific language governing rights and limitations under the
  12. # License.
  13. #
  14. # The Original Code is the Python Computer Graphics Kit.
  15. #
  16. # The Initial Developer of the Original Code is Matthias Baas.
  17. # Portions created by the Initial Developer are Copyright (C) 2004
  18. # the Initial Developer. All Rights Reserved.
  19. #
  20. # Contributor(s):
  21. #
  22. # Alternatively, the contents of this file may be used under the terms of
  23. # either the GNU General Public License Version 2 or later (the "GPL"), or
  24. # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  25. # in which case the provisions of the GPL or the LGPL are applicable instead
  26. # of those above. If you wish to allow use of your version of this file only
  27. # under the terms of either the GPL or the LGPL, and not to allow others to
  28. # use your version of this file under the terms of the MPL, indicate your
  29. # decision by deleting the provisions above and replace them with the notice
  30. # and other provisions required by the GPL or the LGPL. If you do not delete
  31. # the provisions above, a recipient may use your version of this file under
  32. # the terms of any one of the MPL, the GPL or the LGPL.
  33. #
  34. # ***** END LICENSE BLOCK *****
  35.  
  36. # Shadow module for module "Image"
  37.  
  38. try:
  39.  
  40.     # Try to import the original module...
  41.     from Image import *
  42.     
  43. except ImportError:
  44.  
  45.     # Create dummy symbols...
  46.  
  47.     ADAPTIVE = 1
  48.     AFFINE = 0
  49.     ANTIALIAS = 1
  50.     BICUBIC = 3
  51.     BILINEAR = 2
  52.     CONTAINER = 2
  53.     CUBIC = 3
  54.     DEBUG = 0
  55.     EXTENSION = {}
  56.     EXTENT = 1
  57.     FLIP_LEFT_RIGHT = 0
  58.     FLIP_TOP_BOTTOM = 1
  59.     FLOYDSTEINBERG = 3
  60.     ID = []
  61.     LINEAR = 2
  62.     MESH = 4
  63.     MIME = {}
  64.     MODES = ['1', 'CMYK', 'F', 'I', 'L', 'P', 'RGB', 'RGBA', 'RGBX', 'YCbCr']
  65.     NEAREST = 0
  66.     NONE = 0
  67.     NORMAL = 0
  68.     OPEN = {}
  69.     ORDERED = 1
  70.     PERSPECTIVE = 2
  71.     QUAD = 3
  72.     RASTERIZE = 2
  73.     ROTATE_180 = 3
  74.     ROTATE_270 = 4
  75.     ROTATE_90 = 2
  76.     SAVE = {}
  77.     SEQUENCE = 1
  78.     VERSION = '1.1.4'
  79.     WEB = 0
  80.  
  81.     def Image(*args, **keyargs):
  82.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  83.  
  84.     def IntType(*args, **keyargs):
  85.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  86.  
  87.     def StringType(*args, **keyargs):
  88.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  89.  
  90.     def TupleType(*args, **keyargs):
  91.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  92.  
  93.     def UnicodeStringType(*args, **keyargs):
  94.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  95.  
  96.     def blend(*args, **keyargs):
  97.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  98.  
  99.     def composite(*args, **keyargs):
  100.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  101.  
  102.     def eval(*args, **keyargs):
  103.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  104.  
  105.     def frombuffer(*args, **keyargs):
  106.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  107.  
  108.     def fromstring(*args, **keyargs):
  109.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  110.  
  111.     def getmodebands(*args, **keyargs):
  112.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  113.  
  114.     def getmodebase(*args, **keyargs):
  115.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  116.  
  117.     def getmodetype(*args, **keyargs):
  118.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  119.  
  120.     def init(*args, **keyargs):
  121.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  122.  
  123.     def isDirectory(*args, **keyargs):
  124.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  125.  
  126.     def isImageType(*args, **keyargs):
  127.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  128.  
  129.     def isNumberType(*args, **keyargs):
  130.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  131.  
  132.     def isSequenceType(*args, **keyargs):
  133.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  134.  
  135.     def isStringType(*args, **keyargs):
  136.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  137.  
  138.     def isTupleType(*args, **keyargs):
  139.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  140.  
  141.     def merge(*args, **keyargs):
  142.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  143.  
  144.     def new(*args, **keyargs):
  145.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  146.  
  147.     def open(*args, **keyargs):
  148.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  149.  
  150.     def preinit(*args, **keyargs):
  151.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  152.  
  153.     def register_extension(*args, **keyargs):
  154.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  155.  
  156.     def register_mime(*args, **keyargs):
  157.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  158.  
  159.     def register_open(*args, **keyargs):
  160.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  161.  
  162.     def register_save(*args, **keyargs):
  163.         raise ImportError("No module named Image. Please install PIL (http://www.pythonware.com/products/pil/index.htm).")
  164.  
  165.