Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Image.py « Blender « modules « python « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1737e1bb0d4f889f0d238fca5dc0159d769d1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"""The Blender Image module

  This module provides (yet) basic support for Blender *Image* data blocks

  Example::

    from Blender import Image
    im = Image.Load('dead-parrot.jpg')
"""

import _Blender.Image as _Image
import shadow

class Image(shadow.shadow):
	"""Image DataBlock object

    See above example on how to create instances of Image objects.

  Attributes

    xrep  -- Texture image tiling factor (subdivision) in X

    yrep  -- Texture image tiling factor (subdivision) in Y

    LATER:

    * Image buffer access

    * better loading / saving of images
"""
	pass

def get(name):
	"""If 'name' given, the Image 'name' is returned if existing, 'None' otherwise.
If no name is given, a list of all Images is returned"""
	pass

def Load(filename):
	"""Returns image from file 'filename' as Image object if found, 'None' else."""
	pass
	
def New(name):
	"""This function is currently not implemented"""
	pass

# override all functions again, the above classes are just made
# for documentation

get = _Image.get
Get = get
Load = _Image.Load