pytoshop.blending_range¶
Manage blending ranges.
-
class
pytoshop.blending_range.BlendingRange(black0=0, black1=0, white0=0, white1=0, _values=None)[source]¶ Bases:
objectBlending range data.
Comprises 2 black values and 2 white values.
-
black0¶
-
black1¶
-
classmethod
read(fd)[source]¶ Instantiate from a file-like object.
Parameters: - fd (file-like object) – Must be readable, seekable and open in binary mode.
- header (PsdFile object) – An object to get global file information from.
-
white0¶
-
white1¶
-
-
class
pytoshop.blending_range.BlendingRangePair(src=None, dst=None)[source]¶ Bases:
objectBlending range pair.
The combination of a source and destination blending range.
-
dst¶
-
classmethod
read(fd)[source]¶ Instantiate from a file-like object.
Parameters: - fd (file-like object) – Must be readable, seekable and open in binary mode.
- header (PsdFile object) – An object to get global file information from.
-
src¶
-
-
class
pytoshop.blending_range.BlendingRanges(composite_gray_blend=None, channels=None)[source]¶ Bases:
objectAll of the layer blending range data.
Consists of a composite gray blend pair followed by N additional pairs.
-
channels¶ List of additional
BlendingRangePairinstances.
-
composite_gray_blend¶ Composite gray
BlendingRangePair.
-