.\" Man page generated from reStructuredText. . . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .TH "SRC" "1" "Feb 01, 2023" "1.9.24" "psd-tools" .SH NAME src \- src Documentation .sp \fIpsd\-tools\fP is a Python package for working with Adobe Photoshop PSD files as described in \fI\%specification\fP\&. .SH INSTALLATION .sp Use \fIpip\fP to install the package: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C pip install psd\-tools .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 In order to extract images from 32bit PSD files PIL/Pillow must be built with LITTLECMS or LITTLECMS2 support (\fBapt\-get install liblcms2\-2\fP or \fBbrew install little\-cms2\fP) .UNINDENT .UNINDENT .SH GETTING STARTED .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import PSDImage psd = PSDImage.open(\(aqexample.psd\(aq) psd.composite().save(\(aqexample.png\(aq) for layer in psd: print(layer) image = layer.composite() .ft P .fi .UNINDENT .UNINDENT .sp Check out the \fI\%Usage\fP documentation for more examples. .SS Usage .SS Command line .sp The package provides command line tools to handle a PSD document: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd\-tools export [options] psd\-tools show [options] psd\-tools debug [options] psd\-tools \-h | \-\-help psd\-tools \-\-version .ft P .fi .UNINDENT .UNINDENT .sp Example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd\-tools show example.psd # Show the file content psd\-tools export example.psd example.png # Export as PNG psd\-tools export example.psd[0] example\-0.png # Export layer as PNG .ft P .fi .UNINDENT .UNINDENT .SS Working with PSD document .sp \fBpsd_tools.api\fP package provides the user\-friendly API to work with PSD files. \fI\%PSDImage\fP represents a PSD file. .sp Open an image: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import PSDImage psd = PSDImage.open(\(aqmy_image.psd\(aq) .ft P .fi .UNINDENT .UNINDENT .sp Most of the data structure in the \fBpsd\-tools\fP suppports pretty printing in IPython environment. .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C In [1]: PSDImage.open(\(aqexample.psd\(aq) Out[1]: PSDImage(mode=RGB size=101x55 depth=8 channels=3) [0] PixelLayer(\(aqBackground\(aq size=101x55) [1] PixelLayer(\(aqLayer 1\(aq size=85x46) .ft P .fi .UNINDENT .UNINDENT .sp Internal layers are accessible by iterator or indexing: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C for layer in psd: print(layer) if layer.is_group(): for child in layer: print(child) child = psd[0][0] .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 The iteration order is from background to foreground, which is reversed from version prior to 1.7.x. Use \fBreversed(list(psd))\fP to iterate from foreground to background. .UNINDENT .UNINDENT .sp The opened PSD file can be saved: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd.save(\(aqoutput.psd\(aq) .ft P .fi .UNINDENT .UNINDENT .SS Working with Layers .sp There are various layer kinds in Photoshop. .sp The most basic layer type is \fI\%PixelLayer\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C print(layer.name) layer.kind == \(aqpixel\(aq .ft P .fi .UNINDENT .UNINDENT .sp Some of the layer attributes are editable, such as a layer name: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C layer.name = \(aqUpdated layer 1\(aq .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 Currently, the package does not support adding or removing of a layer. .UNINDENT .UNINDENT .sp \fI\%Group\fP has internal layers: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C for layer in group: print(layer) first_layer = group[0] .ft P .fi .UNINDENT .UNINDENT .sp \fI\%TypeLayer\fP is a layer with texts: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C print(layer.text) .ft P .fi .UNINDENT .UNINDENT .sp \fI\%ShapeLayer\fP draws a vector shape, and the shape information is stored in \fIvector_mask\fP and \fIorigination\fP property. Other layers can also have shape information as a mask: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C print(layer.vector_mask) for shape in layer.origination: print(shape) .ft P .fi .UNINDENT .UNINDENT .sp \fI\%SmartObjectLayer\fP embeds or links an external file for non\-destructive editing. The file content is accessible via \fIsmart_object\fP property: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C import io if layer.smart_object.filetype in (\(aqjpg\(aq, \(aqpng\(aq): image = Image.open(io.BytesIO(layer.smart_object.data)) .ft P .fi .UNINDENT .UNINDENT .sp \fI\%SolidColorFill\fP, \fI\%PatternFill\fP, and \fI\%GradientFill\fP are fill layers that paint the entire region if there is no associated mask. Sub\-classes of \fBAdjustmentLayer\fP represents layer adjustment applied to the composed image. See \fI\%Adjustment layers\fP\&. .SS Exporting data to PIL .sp Export the entire document as \fBPIL.Image\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C image = psd.composite() image.save(\(aqexported.png\(aq) .ft P .fi .UNINDENT .UNINDENT .sp Export a single layer including masks and clipping layers: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C image = layer.composite() .ft P .fi .UNINDENT .UNINDENT .sp Export layer and mask separately without composition: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C image = layer.topil() mask = layer.mask.topil() .ft P .fi .UNINDENT .UNINDENT .sp To composite specific layers, such as layers except for texts, use layer_filter option: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C image = psd.composite( layer_filter=lambda layer: layer.is_visible() and layer.kind != \(aqtype\(aq) .ft P .fi .UNINDENT .UNINDENT .sp Note that most of the layer effects and adjustment layers are not supported. The compositing result may look different from Photoshop. .SS Exporting data to NumPy .sp PSDImage or layers can be exported to NumPy array by \fI\%numpy()\fP method: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C image = psd.numpy() layer_image = layer.numpy() .ft P .fi .UNINDENT .UNINDENT .SS Migrating to 1.9 .sp psd\-tools 1.9 switches to NumPy based compositing. .sp version 1.8.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd = PSDImage.open(filename) image = psd.compose() layer = psd[0] layer_image = layer.compose() .ft P .fi .UNINDENT .UNINDENT .sp version 1.9.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd = PSDImage.open(filename) image = psd.composite() layer = psd[0] layer_image = layer.composite() .ft P .fi .UNINDENT .UNINDENT .sp NumPy array API is introduced: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C image = psd.numpy() layer_image = layer.numpy() .ft P .fi .UNINDENT .UNINDENT .SS Migrating to 1.8 .sp There are major API changes in version 1.8.x. .sp \fBNOTE:\fP .INDENT 0.0 .INDENT 3.5 In version 1.8.0 \- 1.8.7, the package name was \fIpsd_tools2\fP\&. .UNINDENT .UNINDENT .SS PSDImage .sp File open method is changed from \fIload\fP to \fI\%open()\fP\&. .sp version 1.7.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd = PSDImage.load(filename) with open(filename, \(aqrb\(aq) as f: psd = PSDImage.from_stream(f) .ft P .fi .UNINDENT .UNINDENT .sp version 1.8.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd = PSDImage.open(filename) with open(filename, \(aqrb\(aq) as f: psd = PSDImage.open(f) .ft P .fi .UNINDENT .UNINDENT .SS Layers .sp Children of PSDImage or Group is directly accessible by iterator or indexing. .sp version 1.7.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C for layer in group.layers: print(layer) first_child = group.layers[0] .ft P .fi .UNINDENT .UNINDENT .sp version 1.8.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C for layer in group: print(layer) first_child = group[0] .ft P .fi .UNINDENT .UNINDENT .sp In version 1.8.x, the order of layers is reversed to reflect that the index should not change when a new layer is added on top. .SS PIL export .sp Primary PIL export method is \fI\%compose()\fP\&. .sp version 1.7.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C image = psd.as_PIL() layer_image = compose(layer) raw_layer_image = layer.as_PIL() .ft P .fi .UNINDENT .UNINDENT .sp version 1.8.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C image = psd.compose() layer_image = layer.compose() raw_layer_image = layer.topil() .ft P .fi .UNINDENT .UNINDENT .SS Low\-level data structure .sp Data structures are completely rewritten to support writing functionality. See \fI\%psd_tools.psd\fP subpackage. .sp version 1.7.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd.decoded_data .ft P .fi .UNINDENT .UNINDENT .sp version 1.8.x: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C psd._record .ft P .fi .UNINDENT .UNINDENT .SS Drop pymaging support .sp Pymaging support is dropped. .SS Contributing .sp Development happens at github: \fI\%bug tracker\fP\&. Feel free to submit \fI\%bug reports\fP or pull requests. Attaching an erroneous PSD file makes the debugging process faster. Such PSD file might be added to the test suite. .sp The license is MIT. .SS Package design .sp The package consists of two major subpackages: .INDENT 0.0 .IP 1. 3 .INDENT 3.0 .TP .B \fI\%psd_tools.psd\fP: subpackage that reads/writes low\-level binary structure of the PSD/PSB file. The core data structures are built around \fI\%attrs\fP class that all implement \fIread\fP and \fIwrite\fP methods. Each data object tries to resemble the structure described in the \fI\%specification\fP\&. Although documented, the \fI\%specification\fP is far from complete and some are even inaccurate. When \fIpsd\-tools\fP finds unknown data structure, the package keeps such data as \fIbytes\fP in the parsed result. .UNINDENT .UNINDENT .INDENT 0.0 .IP 2. 3 .INDENT 3.0 .TP .B \fBpsd_tools.api\fP: User\-facing API that implements various easy\-to\-use methods that manipulate low\-level \fI\%psd_tools.psd\fP data structures. .UNINDENT .UNINDENT .SS Testing .sp In order to run tests, make sure PIL/Pillow is built with LittleCMS or LittleCMS2 support, install \fI\%tox\fP and type: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C tox .ft P .fi .UNINDENT .UNINDENT .sp from the source checkout. Or, it is a good idea to install and run \fI\%detox\fP for parallel execution: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C detox .ft P .fi .UNINDENT .UNINDENT .SS Documentation .sp Install Sphinx to generate documents: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C pip install sphinx sphinx_rtd_theme .ft P .fi .UNINDENT .UNINDENT .sp Once installed, use \fIMakefile\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C make docs .ft P .fi .UNINDENT .UNINDENT .SS Acknowledgments .sp Great thanks to \fI\%all the contributors\fP\&. .SH FEATURES .sp Supported: .INDENT 0.0 .IP \(bu 2 Read and write of the low\-level PSD/PSB file structure .IP \(bu 2 Raw layer image export in NumPy and PIL format .UNINDENT .sp Limited support: .INDENT 0.0 .IP \(bu 2 Composition of basic pixel\-based layers .IP \(bu 2 Composition of fill layer effects .IP \(bu 2 Vector masks .IP \(bu 2 Editing of some layer attributes such as layer name .IP \(bu 2 Blending modes except for dissolve .IP \(bu 2 Drawing of bezier curves .UNINDENT .sp Not supported: .INDENT 0.0 .IP \(bu 2 Editing of layer structure, such as adding or removing a layer .IP \(bu 2 Composition of adjustment layers .IP \(bu 2 Composition of many layer effects .IP \(bu 2 Font rendering .UNINDENT .SS psd_tools .sp See \fI\%Usage\fP for examples. .SS PSDImage .INDENT 0.0 .TP .B class psd_tools.PSDImage(data) Photoshop PSD/PSB file object. .sp The low\-level data structure is accessible at \fBPSDImage._record\fP\&. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import PSDImage psd = PSDImage.open(\(aqexample.psd\(aq) image = psd.compose() for layer in psd: layer_image = layer.compose() .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bbox Minimal bounding box that contains all the visible layers. .sp Use \fBviewbox\fP to get viewport bounding box. When the psd is empty, bbox is equal to the canvas bounding box. .INDENT 7.0 .TP .B Returns (left, top, right, bottom) \fItuple\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property channels Number of color channels. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property color_mode Document color mode, such as \(aqRGB\(aq or \(aqGRAYSCALE\(aq. See \fI\%ColorMode\fP\&. .INDENT 7.0 .TP .B Returns \fI\%ColorMode\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property compatibility_mode Set the compositing and layer organization compatibility mode. Writable. .INDENT 7.0 .TP .B Returns \fBCompatibilityMode\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None) Deprecated, use \fI\%composite()\fP\&. .sp Compose the PSD image. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport tuple (left, top, right, bottom). .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, ignore_preview=False, apply_icc=False) Composite the PSD image. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the viewbox of the PSD. .IP \(bu 2 \fBignore_preview\fP \-\- Boolean flag to whether skip compositing when a pre\-composited preview is available. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property depth Pixel depth bits. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B descendants(include_clip=True) Return a generator to iterate over all descendant layers. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C # Iterate over all layers for layer in psd.descendants(): print(layer) # Iterate over all layers in reverse order for layer in reversed(list(psd.descendants())): print(layer) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Parameters \fBinclude_clip\fP \-\- include clipping layers. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B classmethod frompil(image, compression=Compression.RLE) Create a new PSD document from PIL Image. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBimage\fP \-\- PIL Image object. .IP \(bu 2 \fBcompression\fP \-\- ImageData compression option. See \fI\%Compression\fP\&. .UNINDENT .TP .B Returns A \fI\%PSDImage\fP object. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_preview() Returns if the document has real merged data. When True, \fItopil()\fP returns pre\-composed data. .UNINDENT .INDENT 7.0 .TP .B has_thumbnail() True if the PSDImage has a thumbnail resource. .UNINDENT .INDENT 7.0 .TP .B property height Document height. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property image_resources Document image resources. \fI\%ImageResources\fP is a dict\-like structure that keeps various document settings. .sp See \fI\%psd_tools.constants.Resource\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%ImageResources\fP .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Resource version_info = psd.image_resources.get_data(Resource.VERSION_INFO) slices = psd.image_resources.get_data(Resource.SLICES) .ft P .fi .UNINDENT .UNINDENT .sp Image resources contain an ICC profile. The following shows how to export a PNG file with embedded ICC profile: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Resource icc_profile = psd.image_resources.get_data(Resource.ICC_PROFILE) image = psd.compose(apply_icc=False) image.save(\(aqoutput.png\(aq, icc_profile=icc_profile) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Returns visibility of the element. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind. .INDENT 7.0 .TP .B Returns \fI\(aqpsdimage\(aq\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. .INDENT 7.0 .TP .B Returns \fI0\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Element name. .INDENT 7.0 .TP .B Returns \fI\(aqRoot\(aq\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B classmethod new(mode, size, color=0, depth=8, **kwargs) Create a new PSD document. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBmode\fP \-\- The color mode to use for the new image. .IP \(bu 2 \fBsize\fP \-\- A tuple containing (width, height) in pixels. .IP \(bu 2 \fBcolor\fP \-\- What color to use for the image. Default is black. .UNINDENT .TP .B Returns A \fI\%PSDImage\fP object. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B classmethod open(fp, **kwargs) Open a PSD document. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBfp\fP \-\- filename or file\-like object. .IP \(bu 2 \fBencoding\fP \-\- charset encoding of the pascal string within the file, default \(aqmacroman\(aq. Some psd files need explicit encoding option. .UNINDENT .TP .B Returns A \fI\%PSDImage\fP object. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B save(fp, mode=\(aqwb\(aq, **kwargs) Save the PSD file. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBfp\fP \-\- filename or file\-like object. .IP \(bu 2 \fBencoding\fP \-\- charset encoding of the pascal string within the file, default \(aqmacroman\(aq. .IP \(bu 2 \fBmode\fP \-\- file open mode, default \(aqwb\(aq. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Document tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag patterns = psd.tagged_blocks.get_data(Tag.PATTERNS1) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B thumbnail() Returns a thumbnail image in PIL.Image. When the file does not contain an embedded thumbnail image, returns None. .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. .INDENT 7.0 .TP .B Returns \fI0\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the composed image is not available. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property version Document version. PSD file is 1, and PSB file is 2. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property viewbox Return bounding box of the viewport. .INDENT 7.0 .TP .B Returns (left, top, right, bottom) \fItuple\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Visibility. .INDENT 7.0 .TP .B Returns \fITrue\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Document width. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .UNINDENT .SS compose .INDENT 0.0 .TP .B psd_tools.compose(layers, force=False, bbox=None, layer_filter=None, context=None, color=None) Compose layers to a single \fBPIL.Image\fP\&. If the layers do not have visible pixels, the function returns \fINone\fP\&. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C image = compose([layer1, layer2]) .ft P .fi .UNINDENT .UNINDENT .sp In order to skip some layers, pass \fIlayer_filter\fP function which should take \fIlayer\fP as an argument and return \fITrue\fP to keep the layer or return \fIFalse\fP to skip: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C image = compose( layers, layer_filter=lambda x: x.is_visible() and x.kind == \(aqtype\(aq ) .ft P .fi .UNINDENT .UNINDENT .sp By default, visible layers are composed. .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 This function is experimental and does not guarantee Photoshop\-quality rendering. .sp Currently the following are ignored: .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .IP \(bu 2 Adjustments layers .IP \(bu 2 Layer effects .IP \(bu 2 Blending modes: dissolve and darker/lighter color becomes normal .UNINDENT .UNINDENT .UNINDENT .sp Shape drawing is inaccurate if the PSD file is not saved with maximum compatibility. .sp Some of the blending modes do not reproduce photoshop blending. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBlayers\fP \-\- a layer, or an iterable of layers. .IP \(bu 2 \fBbbox\fP \-\- (left, top, bottom, right) tuple that specifies a region to compose. By default, all the visible area is composed. The origin is at the top\-left corner of the PSD document. .IP \(bu 2 \fBcontext\fP \-\- \fIPIL.Image\fP object for the backdrop rendering context. Must be used with the correct \fIbbox\fP size. .IP \(bu 2 \fBlayer_filter\fP \-\- a callable that takes a layer and returns \fIbool\fP\&. .IP \(bu 2 \fBcolor\fP \-\- background color in \fIint\fP or \fItuple\fP\&. .IP \(bu 2 \fBkwargs\fP \-\- arguments passed to underling \fItopil()\fP call. .UNINDENT .TP .B Returns \fBPIL.Image\fP or \fINone\fP\&. .UNINDENT .UNINDENT .SS psd_tools.api.adjustments .sp Adjustment and fill layers. .sp Example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if layer.kind == \(aqbrightnesscontrast\(aq: print(layer.brightness) if layer.kind == \(aqgradientfill\(aq: print(layer.gradient_kind) .ft P .fi .UNINDENT .UNINDENT .SS Fill layers .sp Fill layers are similar to \fI\%ShapeLayer\fP except that the layer might not have an associated vector mask. The layer therefore expands the entire canvas of the PSD document. .sp Fill layers all inherit from \fBFillLayer\fP\&. .sp Example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if isinstance(layer, psd_tools.layers.FillLayer): image = layer.compose() .ft P .fi .UNINDENT .UNINDENT .SS SolidColorFill .INDENT 0.0 .TP .B class psd_tools.api.adjustments.SolidColorFill(*args) Solid color fill. .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None) Deprecated, use \fI\%composite()\fP\&. .sp Compose layer and masks (mask, vector mask, and clipping layers). .sp Note that the resulting image size is not necessarily equal to the layer size due to different mask dimensions. The offset of the composed image is stored at \fI\&.info[\(aqoffset\(aq]\fP attribute of \fIPIL.Image\fP\&. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property data Color in Descriptor(RGB). .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS PatternFill .INDENT 0.0 .TP .B class psd_tools.api.adjustments.PatternFill(*args) Pattern fill. .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None) Deprecated, use \fI\%composite()\fP\&. .sp Compose layer and masks (mask, vector mask, and clipping layers). .sp Note that the resulting image size is not necessarily equal to the layer size due to different mask dimensions. The offset of the composed image is stored at \fI\&.info[\(aqoffset\(aq]\fP attribute of \fIPIL.Image\fP\&. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property data Pattern in Descriptor(PATTERN). .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS GradientFill .INDENT 0.0 .TP .B class psd_tools.api.adjustments.GradientFill(*args) Gradient fill. .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None) Deprecated, use \fI\%composite()\fP\&. .sp Compose layer and masks (mask, vector mask, and clipping layers). .sp Note that the resulting image size is not necessarily equal to the layer size due to different mask dimensions. The offset of the composed image is stored at \fI\&.info[\(aqoffset\(aq]\fP attribute of \fIPIL.Image\fP\&. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property data Gradient in Descriptor(GRADIENT). .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property gradient_kind Kind of the gradient, one of the following: .INDENT 7.0 .INDENT 3.5 .INDENT 0.0 .IP \(bu 2 \fILinear\fP .IP \(bu 2 \fIRadial\fP .IP \(bu 2 \fIAngle\fP .IP \(bu 2 \fIReflected\fP .IP \(bu 2 \fIDiamond\fP .UNINDENT .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS Adjustment layers .sp Adjustment layers apply image filtering to the composed result. All adjustment layers inherit from \fBAdjustmentLayer\fP\&. Adjustment layers do not have pixels, and currently ignored in \fIcompose\fP\&. Attempts to call \fItopil\fP on adjustment layers always return \fINone\fP\&. .sp Just as any other layer, adjustment layers might have an associated mask or vector mask. Adjustment can appear in other layers\(aq clipping layers. .sp Example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C if isinstance(layer, psd_tools.layers.AdjustmentLayer): print(layer.kind) .ft P .fi .UNINDENT .UNINDENT .SS BrightnessContrast .INDENT 0.0 .TP .B class psd_tools.api.adjustments.BrightnessContrast(*args) Brightness and contrast adjustment. .INDENT 7.0 .TP .B property automatic .UNINDENT .INDENT 7.0 .TP .B property brightness .UNINDENT .INDENT 7.0 .TP .B property contrast .UNINDENT .INDENT 7.0 .TP .B property lab .UNINDENT .INDENT 7.0 .TP .B property mean .UNINDENT .INDENT 7.0 .TP .B property use_legacy .UNINDENT .INDENT 7.0 .TP .B property vrsn .UNINDENT .UNINDENT .SS Curves .INDENT 0.0 .TP .B class psd_tools.api.adjustments.Curves(*args) Curves adjustment. .INDENT 7.0 .TP .B property data Raw data. .INDENT 7.0 .TP .B Returns \fBCurves\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property extra .UNINDENT .UNINDENT .SS Exposure .INDENT 0.0 .TP .B class psd_tools.api.adjustments.Exposure(*args) Exposure adjustment. .INDENT 7.0 .TP .B property exposure Exposure. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property gamma Gamma. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset Offset. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .UNINDENT .SS Levels .INDENT 0.0 .TP .B class psd_tools.api.adjustments.Levels(*args) Levels adjustment. .sp Levels contain a list of \fBLevelRecord\fP\&. .INDENT 7.0 .TP .B property data List of level records. The first record is the master. .INDENT 7.0 .TP .B Returns \fBLevels\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property master Master record. .UNINDENT .UNINDENT .SS Vibrance .INDENT 0.0 .TP .B class psd_tools.api.adjustments.Vibrance(*args) Vibrance adjustment. .INDENT 7.0 .TP .B property saturation Saturation. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vibrance Vibrance. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .UNINDENT .SS HueSaturation .INDENT 0.0 .TP .B class psd_tools.api.adjustments.HueSaturation(*args) Hue/Saturation adjustment. .sp HueSaturation contains a list of data. .INDENT 7.0 .TP .B property colorization Colorization. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property data List of Hue/Saturation records. .INDENT 7.0 .TP .B Returns \fIlist\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property enable_colorization Enable colorization. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property master Master record. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .UNINDENT .SS ColorBalance .INDENT 0.0 .TP .B class psd_tools.api.adjustments.ColorBalance(*args) Color balance adjustment. .INDENT 7.0 .TP .B property highlights Highlights. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property luminosity Luminosity. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property midtones Mid\-tones. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property shadows Shadows. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .UNINDENT .SS BlackAndWhite .INDENT 0.0 .TP .B class psd_tools.api.adjustments.BlackAndWhite(*args) Black and white adjustment. .INDENT 7.0 .TP .B property blue .UNINDENT .INDENT 7.0 .TP .B property cyan .UNINDENT .INDENT 7.0 .TP .B property green .UNINDENT .INDENT 7.0 .TP .B property magenta .UNINDENT .INDENT 7.0 .TP .B property preset_file_name .UNINDENT .INDENT 7.0 .TP .B property preset_kind .UNINDENT .INDENT 7.0 .TP .B property red .UNINDENT .INDENT 7.0 .TP .B property tint_color .UNINDENT .INDENT 7.0 .TP .B property use_tint .UNINDENT .INDENT 7.0 .TP .B property yellow .UNINDENT .UNINDENT .SS PhotoFilter .INDENT 0.0 .TP .B class psd_tools.api.adjustments.PhotoFilter(*args) Photo filter adjustment. .INDENT 7.0 .TP .B property color_components .UNINDENT .INDENT 7.0 .TP .B property color_space .UNINDENT .INDENT 7.0 .TP .B property density .UNINDENT .INDENT 7.0 .TP .B property luminosity .UNINDENT .INDENT 7.0 .TP .B property xyz xyz. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .UNINDENT .SS ChannelMixer .INDENT 0.0 .TP .B class psd_tools.api.adjustments.ChannelMixer(*args) Channel mixer adjustment. .INDENT 7.0 .TP .B property data .UNINDENT .INDENT 7.0 .TP .B property monochrome .UNINDENT .UNINDENT .SS ColorLookup .INDENT 0.0 .TP .B class psd_tools.api.adjustments.ColorLookup(*args) Color lookup adjustment. .UNINDENT .SS Posterize .INDENT 0.0 .TP .B class psd_tools.api.adjustments.Posterize(*args) Posterize adjustment. .INDENT 7.0 .TP .B property posterize Posterize value. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .UNINDENT .SS Threshold .INDENT 0.0 .TP .B class psd_tools.api.adjustments.Threshold(*args) Threshold adjustment. .INDENT 7.0 .TP .B property threshold Threshold value. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .UNINDENT .SS SelectiveColor .INDENT 0.0 .TP .B class psd_tools.api.adjustments.SelectiveColor(*args) Selective color adjustment. .INDENT 7.0 .TP .B property data .UNINDENT .INDENT 7.0 .TP .B property method .UNINDENT .UNINDENT .SS GradientMap .INDENT 0.0 .TP .B class psd_tools.api.adjustments.GradientMap(*args) Gradient map adjustment. .INDENT 7.0 .TP .B property color_model .UNINDENT .INDENT 7.0 .TP .B property color_stops .UNINDENT .INDENT 7.0 .TP .B property dithered .UNINDENT .INDENT 7.0 .TP .B property expansion .UNINDENT .INDENT 7.0 .TP .B property gradient_name .UNINDENT .INDENT 7.0 .TP .B property interpolation Interpolation between 0.0 and 1.0. .UNINDENT .INDENT 7.0 .TP .B property length .UNINDENT .INDENT 7.0 .TP .B property max_color .UNINDENT .INDENT 7.0 .TP .B property min_color .UNINDENT .INDENT 7.0 .TP .B property mode .UNINDENT .INDENT 7.0 .TP .B property random_seed .UNINDENT .INDENT 7.0 .TP .B property reversed .UNINDENT .INDENT 7.0 .TP .B property roughness .UNINDENT .INDENT 7.0 .TP .B property show_transparency .UNINDENT .INDENT 7.0 .TP .B property transparency_stops .UNINDENT .INDENT 7.0 .TP .B property use_vector_color .UNINDENT .UNINDENT .SS psd_tools.api.effects .sp Effects module. .INDENT 0.0 .TP .B class psd_tools.api.effects.Effects(layer) List\-like effects. .INDENT 7.0 .TP .B property enabled Whether if all the effects are enabled. .INDENT 7.0 .TP .B Return type bool .UNINDENT .UNINDENT .INDENT 7.0 .TP .B find(name) Iterate effect items by name. .UNINDENT .INDENT 7.0 .TP .B property scale Scale value. .UNINDENT .UNINDENT .SS DropShadow .INDENT 0.0 .TP .B class psd_tools.api.effects.DropShadow(value, image_resources) .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property anti_aliased Angi\-aliased. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property choke Choke level. .UNINDENT .INDENT 7.0 .TP .B property color Color. .UNINDENT .INDENT 7.0 .TP .B property contour Contour configuration. .UNINDENT .INDENT 7.0 .TP .B property distance Distance. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property layer_knocks_out Layers are knocking out. .UNINDENT .INDENT 7.0 .TP .B property noise Noise level. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .INDENT 7.0 .TP .B property size Size in pixels. .UNINDENT .INDENT 7.0 .TP .B property use_global_light Using global light. .UNINDENT .UNINDENT .SS InnerShadow .INDENT 0.0 .TP .B class psd_tools.api.effects.InnerShadow(value, image_resources) .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property anti_aliased Angi\-aliased. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property choke Choke level. .UNINDENT .INDENT 7.0 .TP .B property color Color. .UNINDENT .INDENT 7.0 .TP .B property contour Contour configuration. .UNINDENT .INDENT 7.0 .TP .B property distance Distance. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property noise Noise level. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .INDENT 7.0 .TP .B property size Size in pixels. .UNINDENT .INDENT 7.0 .TP .B property use_global_light Using global light. .UNINDENT .UNINDENT .SS OuterGlow .INDENT 0.0 .TP .B class psd_tools.api.effects.OuterGlow(value, image_resources) .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property anti_aliased Angi\-aliased. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property choke Choke level. .UNINDENT .INDENT 7.0 .TP .B property color Color. .UNINDENT .INDENT 7.0 .TP .B property contour Contour configuration. .UNINDENT .INDENT 7.0 .TP .B property dithered Dither flag. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property glow_type Glow type. .UNINDENT .INDENT 7.0 .TP .B property gradient Gradient configuration. .UNINDENT .INDENT 7.0 .TP .B property noise Noise level. .UNINDENT .INDENT 7.0 .TP .B property offset Offset value. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property quality_jitter Quality jitter .UNINDENT .INDENT 7.0 .TP .B property quality_range Quality range. .UNINDENT .INDENT 7.0 .TP .B property reversed Reverse flag. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .INDENT 7.0 .TP .B property size Size in pixels. .UNINDENT .INDENT 7.0 .TP .B property type Gradient type, one of \fIlinear\fP, \fIradial\fP, \fIangle\fP, \fIreflected\fP, or \fIdiamond\fP\&. .UNINDENT .UNINDENT .SS InnerGlow .INDENT 0.0 .TP .B class psd_tools.api.effects.InnerGlow(value, image_resources) .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property anti_aliased Angi\-aliased. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property choke Choke level. .UNINDENT .INDENT 7.0 .TP .B property color Color. .UNINDENT .INDENT 7.0 .TP .B property contour Contour configuration. .UNINDENT .INDENT 7.0 .TP .B property dithered Dither flag. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property glow_source Elements source. .UNINDENT .INDENT 7.0 .TP .B property glow_type Glow type. .UNINDENT .INDENT 7.0 .TP .B property gradient Gradient configuration. .UNINDENT .INDENT 7.0 .TP .B property noise Noise level. .UNINDENT .INDENT 7.0 .TP .B property offset Offset value. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property quality_jitter Quality jitter .UNINDENT .INDENT 7.0 .TP .B property quality_range Quality range. .UNINDENT .INDENT 7.0 .TP .B property reversed Reverse flag. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .INDENT 7.0 .TP .B property size Size in pixels. .UNINDENT .INDENT 7.0 .TP .B property type Gradient type, one of \fIlinear\fP, \fIradial\fP, \fIangle\fP, \fIreflected\fP, or \fIdiamond\fP\&. .UNINDENT .UNINDENT .SS ColorOverlay .INDENT 0.0 .TP .B class psd_tools.api.effects.ColorOverlay(value, image_resources) .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property color Color. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .UNINDENT .SS GradientOverlay .INDENT 0.0 .TP .B class psd_tools.api.effects.GradientOverlay(value, image_resources) .INDENT 7.0 .TP .B property aligned Aligned. .UNINDENT .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property dithered Dither flag. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property gradient Gradient configuration. .UNINDENT .INDENT 7.0 .TP .B property offset Offset value. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property reversed Reverse flag. .UNINDENT .INDENT 7.0 .TP .B property scale Scale value. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .INDENT 7.0 .TP .B property type Gradient type, one of \fIlinear\fP, \fIradial\fP, \fIangle\fP, \fIreflected\fP, or \fIdiamond\fP\&. .UNINDENT .UNINDENT .SS PatternOverlay .INDENT 0.0 .TP .B class psd_tools.api.effects.PatternOverlay(value, image_resources) .INDENT 7.0 .TP .B property aligned Aligned. .UNINDENT .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property linked Linked. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property pattern Pattern config. .UNINDENT .INDENT 7.0 .TP .B property phase Phase value in Point. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property scale Scale value. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .UNINDENT .SS Stroke .INDENT 0.0 .TP .B class psd_tools.api.effects.Stroke(value, image_resources) .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property color Color. .UNINDENT .INDENT 7.0 .TP .B property dithered Dither flag. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property fill_type Fill type, SolidColor, Gradient, or Pattern. .UNINDENT .INDENT 7.0 .TP .B property gradient Gradient configuration. .UNINDENT .INDENT 7.0 .TP .B property linked Linked. .UNINDENT .INDENT 7.0 .TP .B property offset Offset value. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property overprint Overprint flag. .UNINDENT .INDENT 7.0 .TP .B property pattern Pattern config. .UNINDENT .INDENT 7.0 .TP .B property phase Phase value in Point. .UNINDENT .INDENT 7.0 .TP .B property position Position of the stroke, InsetFrame, OutsetFrame, or CenteredFrame. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property reversed Reverse flag. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .INDENT 7.0 .TP .B property size Size value. .UNINDENT .INDENT 7.0 .TP .B property type Gradient type, one of \fIlinear\fP, \fIradial\fP, \fIangle\fP, \fIreflected\fP, or \fIdiamond\fP\&. .UNINDENT .UNINDENT .SS BevelEmboss .INDENT 0.0 .TP .B class psd_tools.api.effects.BevelEmboss(value, image_resources) .INDENT 7.0 .TP .B property altitude Altitude value. .UNINDENT .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property anti_aliased Anti\-aliased. .UNINDENT .INDENT 7.0 .TP .B property bevel_style Bevel style, one of \fIOuterBevel\fP, \fIInnerBevel\fP, \fIEmboss\fP, \fIPillowEmboss\fP, or \fIStrokeEmboss\fP\&. .UNINDENT .INDENT 7.0 .TP .B property bevel_type Bevel type, one of \fISoftMatte\fP, \fIHardLight\fP, \fISoftLight\fP\&. .UNINDENT .INDENT 7.0 .TP .B property contour Contour configuration. .UNINDENT .INDENT 7.0 .TP .B property depth Depth value. .UNINDENT .INDENT 7.0 .TP .B property direction Direction, either \fIStampIn\fP or \fIStampOut\fP\&. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property highlight_color Highlight color value. .UNINDENT .INDENT 7.0 .TP .B property highlight_mode Highlight blending mode. .UNINDENT .INDENT 7.0 .TP .B property highlight_opacity Highlight opacity value. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property shadow_color Shadow color value. .UNINDENT .INDENT 7.0 .TP .B property shadow_mode Shadow blending mode. .UNINDENT .INDENT 7.0 .TP .B property shadow_opacity Shadow opacity value. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .INDENT 7.0 .TP .B property size Size value in pixel. .UNINDENT .INDENT 7.0 .TP .B property soften Soften value. .UNINDENT .INDENT 7.0 .TP .B property use_global_light Using global light. .UNINDENT .INDENT 7.0 .TP .B property use_shape Using shape. .UNINDENT .INDENT 7.0 .TP .B property use_texture Using texture. .UNINDENT .UNINDENT .SS Satin .INDENT 0.0 .TP .B class psd_tools.api.effects.Satin(value, image_resources) Satin effect .INDENT 7.0 .TP .B property angle Angle value. .UNINDENT .INDENT 7.0 .TP .B property anti_aliased Anti\-aliased. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Effect blending mode. .UNINDENT .INDENT 7.0 .TP .B property color Color. .UNINDENT .INDENT 7.0 .TP .B property contour Contour configuration. .UNINDENT .INDENT 7.0 .TP .B property distance Distance value. .UNINDENT .INDENT 7.0 .TP .B property enabled Whether if the effect is enabled. .UNINDENT .INDENT 7.0 .TP .B property inverted Inverted. .UNINDENT .INDENT 7.0 .TP .B property opacity Layer effect opacity in percentage. .UNINDENT .INDENT 7.0 .TP .B property present Whether if the effect is present in Photoshop UI. .UNINDENT .INDENT 7.0 .TP .B property shown Whether if the effect is shown in dialog. .UNINDENT .INDENT 7.0 .TP .B property size Size value in pixel. .UNINDENT .UNINDENT .SS psd_tools.api.layers .sp Layer module. .SS Artboard .INDENT 0.0 .TP .B class psd_tools.api.layers.Artboard(*args) Artboard is a special kind of group that has a pre\-defined viewbox. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C artboard = psd[1] image = artboard.compose() .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(bbox=None, **kwargs) Compose the artboard. .sp See \fI\%compose()\fP for available extra arguments. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport tuple (left, top, right, bottom). .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B descendants(include_clip=True) Return a generator to iterate over all descendant layers. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C # Iterate over all layers for layer in psd.descendants(): print(layer) # Iterate over all layers in reverse order for layer in reversed(list(psd.descendants())): print(layer) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Parameters \fBinclude_clip\fP \-\- include clipping layers. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B static extract_bbox(layers, include_invisible=False) Returns a bounding box for \fBlayers\fP or (0, 0, 0, 0) if the layers have no bounding box. .INDENT 7.0 .TP .B Parameters \fBinclude_invisible\fP \-\- include invisible layers in calculation. .TP .B Returns tuple of four int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS Group .INDENT 0.0 .TP .B class psd_tools.api.layers.Group(*args) Group of layers. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C group = psd[1] for layer in group: if layer.kind == \(aqpixel\(aq: print(layer.name) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None, context=None, color=None) Compose layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Returns PIL Image object, or None if the layer has no pixels. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B descendants(include_clip=True) Return a generator to iterate over all descendant layers. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C # Iterate over all layers for layer in psd.descendants(): print(layer) # Iterate over all layers in reverse order for layer in reversed(list(psd.descendants())): print(layer) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Parameters \fBinclude_clip\fP \-\- include clipping layers. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B static extract_bbox(layers, include_invisible=False) Returns a bounding box for \fBlayers\fP or (0, 0, 0, 0) if the layers have no bounding box. .INDENT 7.0 .TP .B Parameters \fBinclude_invisible\fP \-\- include invisible layers in calculation. .TP .B Returns tuple of four int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS PixelLayer .INDENT 0.0 .TP .B class psd_tools.api.layers.PixelLayer(psd, record, channels, parent) Layer that has rasterized image in pixels. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C assert layer.kind == \(aqpixel\(aq: image = layer.topil() image.save(\(aqlayer.png\(aq) composed_image = layer.compose() composed_image.save(\(aqcomposed\-layer.png\(aq) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None) Deprecated, use \fI\%composite()\fP\&. .sp Compose layer and masks (mask, vector mask, and clipping layers). .sp Note that the resulting image size is not necessarily equal to the layer size due to different mask dimensions. The offset of the composed image is stored at \fI\&.info[\(aqoffset\(aq]\fP attribute of \fIPIL.Image\fP\&. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS ShapeLayer .INDENT 0.0 .TP .B class psd_tools.api.layers.ShapeLayer(psd, record, channels, parent) Layer that has drawing in vector mask. .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None) Deprecated, use \fI\%composite()\fP\&. .sp Compose layer and masks (mask, vector mask, and clipping layers). .sp Note that the resulting image size is not necessarily equal to the layer size due to different mask dimensions. The offset of the composed image is stored at \fI\&.info[\(aqoffset\(aq]\fP attribute of \fIPIL.Image\fP\&. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS SmartObjectLayer .INDENT 0.0 .TP .B class psd_tools.api.layers.SmartObjectLayer(psd, record, channels, parent) Layer that inserts external data. .sp Use \fI\%smart_object\fP attribute to get the external data. See \fI\%SmartObject\fP\&. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C import io if layer.smart_object.filetype == \(aqjpg\(aq: image = Image.open(io.BytesIO(layer.smart_object.data)) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None) Deprecated, use \fI\%composite()\fP\&. .sp Compose layer and masks (mask, vector mask, and clipping layers). .sp Note that the resulting image size is not necessarily equal to the layer size due to different mask dimensions. The offset of the composed image is stored at \fI\&.info[\(aqoffset\(aq]\fP attribute of \fIPIL.Image\fP\&. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property smart_object Associated smart object. .INDENT 7.0 .TP .B Returns \fI\%SmartObject\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS TypeLayer .INDENT 0.0 .TP .B class psd_tools.api.layers.TypeLayer(*args) Layer that has text and styling information for fonts or paragraphs. .sp Text is accessible at \fI\%text\fP property. Styling information for paragraphs is in \fI\%engine_dict\fP\&. Document styling information such as font list is is \fI\%resource_dict\fP\&. .sp Currently, textual information is read\-only. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C if layer.kind == \(aqtype\(aq: print(layer.text) print(layer.engine_dict[\(aqStyleRun\(aq]) # Extract font for each substring in the text. text = layer.engine_dict[\(aqEditor\(aq][\(aqText\(aq].value fontset = layer.resource_dict[\(aqFontSet\(aq] runlength = layer.engine_dict[\(aqStyleRun\(aq][\(aqRunLengthArray\(aq] rundata = layer.engine_dict[\(aqStyleRun\(aq][\(aqRunArray\(aq] index = 0 for length, style in zip(runlength, rundata): substring = text[index:index + length] stylesheet = style[\(aqStyleSheet\(aq][\(aqStyleSheetData\(aq] font = fontset[stylesheet[\(aqFont\(aq]] print(\(aq%r gets %s\(aq % (substring, font)) index += length .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bbox (left, top, right, bottom) tuple. .UNINDENT .INDENT 7.0 .TP .B property blend_mode Blend mode of this layer. Writable. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import BlendMode if layer.blend_mode == BlendMode.NORMAL: layer.blend_mode = BlendMode.SCREEN .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns \fI\%BlendMode\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clip_layers Clip layers associated with this layer. .sp To compose clipping layers: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools import compose clip_mask = compose(layer.clip_layers) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns list of layers .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipping_layer Clipping flag for this layer. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B compose(force=False, bbox=None, layer_filter=None) Deprecated, use \fI\%composite()\fP\&. .sp Compose layer and masks (mask, vector mask, and clipping layers). .sp Note that the resulting image size is not necessarily equal to the layer size due to different mask dimensions. The offset of the composed image is stored at \fI\&.info[\(aqoffset\(aq]\fP attribute of \fIPIL.Image\fP\&. .INDENT 7.0 .TP .B Parameters \fBbbox\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B composite(viewport=None, force=False, color=1.0, alpha=0.0, layer_filter=None, apply_icc=False) Composite layer and masks (mask, vector mask, and clipping layers). .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBviewport\fP \-\- Viewport bounding box specified by (x1, y1, x2, y2) tuple. Default is the layer\(aqs bbox. .IP \(bu 2 \fBforce\fP \-\- Boolean flag to force vector drawing. .IP \(bu 2 \fBcolor\fP \-\- Backdrop color specified by scalar or tuple of scalar. The color value should be in [0.0, 1.0]. For example, (1., 0., 0.) specifies red in RGB color mode. .IP \(bu 2 \fBalpha\fP \-\- Backdrop alpha in [0.0, 1.0]. .IP \(bu 2 \fBlayer_filter\fP \-\- Callable that takes a layer as argument and returns whether if the layer is composited. Default is \fI\%is_visible()\fP\&. .UNINDENT .TP .B Returns \fBPIL.Image\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property document_resources Resource set relevant to the document. .UNINDENT .INDENT 7.0 .TP .B property effects Layer effects. .INDENT 7.0 .TP .B Returns \fI\%Effects\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property engine_dict Styling information dict. .UNINDENT .INDENT 7.0 .TP .B has_clip_layers() Returns True if the layer has associated clipping. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_effects() Returns True if the layer has effects. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_mask() Returns True if the layer has a mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_origination() Returns True if the layer has live shape properties. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_pixels() Returns True if the layer has associated pixels. When this is True, \fItopil\fP method returns \fBPIL.Image\fP\&. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B has_stroke() Returns True if the shape has a stroke. .UNINDENT .INDENT 7.0 .TP .B has_vector_mask() Returns True if the layer has a vector mask. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_group() Return True if the layer is a group. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B is_visible() Layer visibility. Takes group visibility in account. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property kind Kind of this layer, such as group, pixel, shape, type, smartobject, or psdimage. Class name without \fIlayer\fP suffix. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property layer_id Layer ID. .INDENT 7.0 .TP .B Returns int layer id. if the layer is not assigned an id, \-1. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property mask Returns mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%Mask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property name Layer name. Writable. .INDENT 7.0 .TP .B Returns \fIstr\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B numpy(channel=None, real_mask=True) Get NumPy array of the layer. .INDENT 7.0 .TP .B Parameters \fBchannel\fP \-\- Which channel to return, can be \(aqcolor\(aq, \(aqshape\(aq, \(aqalpha\(aq, or \(aqmask\(aq. Default is \(aqcolor+alpha\(aq. .TP .B Returns \fBnumpy.ndarray\fP or None if there is no pixel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property offset (left, top) tuple. Writable. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity of this layer in [0, 255] range. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origination Property for a list of live shapes or a line. .sp Some of the vector masks have associated live shape properties, that are Photoshop feature to handle primitive shapes such as a rectangle, an ellipse, or a line. Vector masks without live shape properties are plain path objects. .sp See \fI\%psd_tools.api.shape\fP\&. .INDENT 7.0 .TP .B Returns List of \fI\%Invalidated\fP, \fI\%Rectangle\fP, \fI\%RoundedRectangle\fP, \fI\%Ellipse\fP, or \fI\%Line\fP\&. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property parent Parent of this layer. .UNINDENT .INDENT 7.0 .TP .B property resource_dict Resource set. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property size (width, height) tuple. .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property stroke Property for strokes. .UNINDENT .INDENT 7.0 .TP .B property tagged_blocks Layer tagged blocks that is a dict\-like container of settings. .sp See \fI\%psd_tools.constants.Tag\fP for available keys. .INDENT 7.0 .TP .B Returns \fI\%TaggedBlocks\fP or \fINone\fP\&. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag metadata = layer.tagged_blocks.get_data(Tag.METADATA_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property text Text in the layer. Read\-only. .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 New\-line character in Photoshop is \fI\(aq\er\(aq\fP\&. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. Writable. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .INDENT 7.0 .TP .B topil(channel=None, apply_icc=False) Get PIL Image of the layer. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBchannel\fP \-\- Which channel to return; e.g., 0 for \(aqR\(aq channel in RGB image. See \fI\%ChannelID\fP\&. When \fINone\fP, the method returns all the channels supported by PIL modes. .IP \(bu 2 \fBapply_icc\fP \-\- Whether to apply ICC profile conversion to sRGB. .UNINDENT .TP .B Returns \fBPIL.Image\fP, or \fINone\fP if the layer has no pixels. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import ChannelID image = layer.topil() red = layer.topil(ChannelID.CHANNEL_0) alpha = layer.topil(ChannelID.TRANSPARENCY_MASK) .ft P .fi .UNINDENT .UNINDENT .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 Not all of the PSD image modes are supported in \fBPIL.Image\fP\&. For example, \(aqCMYK\(aq mode cannot include alpha channel in PIL. In this case, topil drops alpha channel. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property transform Matrix (xx, xy, yx, yy, tx, ty) applies affine transformation. .UNINDENT .INDENT 7.0 .TP .B property vector_mask Returns vector mask associated with this layer. .INDENT 7.0 .TP .B Returns \fI\%VectorMask\fP or \fINone\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property visible Layer visibility. Doesn\(aqt take group visibility in account. Writable. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property warp Warp configuration. .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .INDENT 7.0 .TP .B Returns int .UNINDENT .UNINDENT .UNINDENT .SS psd_tools.api.mask .sp Mask module. .SS Mask .INDENT 0.0 .TP .B class psd_tools.api.mask.Mask(layer) Mask data attached to a layer. .sp There are two distinct internal mask data: user mask and vector mask. User mask refers any pixel\-based mask whereas vector mask refers a mask from a shape path. Internally, two masks are combined and referred real mask. .INDENT 7.0 .TP .B property background_color Background color. .UNINDENT .INDENT 7.0 .TP .B property bbox BBox .UNINDENT .INDENT 7.0 .TP .B property bottom Bottom coordinate. .UNINDENT .INDENT 7.0 .TP .B property disabled Disabled. .UNINDENT .INDENT 7.0 .TP .B property flags Flags. .UNINDENT .INDENT 7.0 .TP .B property height Height. .UNINDENT .INDENT 7.0 .TP .B property left Left coordinate. .UNINDENT .INDENT 7.0 .TP .B property parameters Parameters. .UNINDENT .INDENT 7.0 .TP .B property real_flags Real flag. .UNINDENT .INDENT 7.0 .TP .B property right Right coordinate. .UNINDENT .INDENT 7.0 .TP .B property size (Width, Height) tuple. .UNINDENT .INDENT 7.0 .TP .B property top Top coordinate. .UNINDENT .INDENT 7.0 .TP .B topil(real=True, **kwargs) Get PIL Image of the mask. .INDENT 7.0 .TP .B Parameters \fBreal\fP \-\- When True, returns pixel + vector mask combined. .TP .B Returns PIL Image object, or None if the mask is empty. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property width Width. .UNINDENT .UNINDENT .SS psd_tools.api.shape .sp Shape module. .sp In PSD/PSB, shapes are all represented as \fI\%VectorMask\fP in each layer, and optionally there might be \fBOrigination\fP object to control live shape properties and \fI\%Stroke\fP to specify how outline is stylized. .SS VectorMask .INDENT 0.0 .TP .B class psd_tools.api.shape.VectorMask(data) Vector mask data. .sp Vector mask is a resolution\-independent mask that consists of one or more Path objects. In Photoshop, all the path objects are represented as Bezier curves. Check \fI\%paths\fP property for how to deal with path objects. .INDENT 7.0 .TP .B property bbox Bounding box tuple (left, top, right, bottom) in relative coordinates, where top\-left corner is (0., 0.) and bottom\-right corner is (1., 1.). .INDENT 7.0 .TP .B Returns \fItuple\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property clipboard_record Clipboard record containing bounding box information. .sp Depending on the Photoshop version, this field can be \fINone\fP\&. .UNINDENT .INDENT 7.0 .TP .B property disabled If the mask is disabled. .UNINDENT .INDENT 7.0 .TP .B property initial_fill_rule Initial fill rule. .sp When 0, fill inside of the path. When 1, fill outside of the shape. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property inverted Invert the mask. .UNINDENT .INDENT 7.0 .TP .B property not_linked If the knots are not linked. .UNINDENT .INDENT 7.0 .TP .B property paths List of \fI\%Subpath\fP\&. Subpath is a list\-like structure that contains one or more \fI\%Knot\fP items. Knot contains relative coordinates of control points for a Bezier curve. \fI\%index\fP indicates which origination item the subpath belongs, and \fI\%operation\fP indicates how to combine multiple shape paths. .sp In PSD, path fill rule is even\-odd. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C for subpath in layer.vector_mask.paths: anchors = [( int(knot.anchor[1] * psd.width), int(knot.anchor[0] * psd.height), ) for knot in subpath] .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B Returns List of Subpath. .UNINDENT .UNINDENT .UNINDENT .SS Stroke .INDENT 0.0 .TP .B class psd_tools.api.shape.Stroke(data) Stroke contains decorative information for strokes. .sp This is a thin wrapper around \fI\%Descriptor\fP structure. Check \fI_data\fP attribute to get the raw data. .INDENT 7.0 .TP .B property blend_mode Blend mode. .UNINDENT .INDENT 7.0 .TP .B property content Fill effect. .UNINDENT .INDENT 7.0 .TP .B property enabled If the stroke is enabled. .UNINDENT .INDENT 7.0 .TP .B property fill_enabled If the stroke fill is enabled. .UNINDENT .INDENT 7.0 .TP .B property line_alignment Alignment, one of \fIinner\fP, \fIouter\fP, \fIcenter\fP\&. .UNINDENT .INDENT 7.0 .TP .B property line_cap_type Cap type, one of \fIbutt\fP, \fIround\fP, \fIsquare\fP\&. .UNINDENT .INDENT 7.0 .TP .B property line_dash_offset Line dash offset in float. .INDENT 7.0 .TP .B Returns float .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property line_dash_set Line dash set in list of \fBUnitFloat\fP\&. .INDENT 7.0 .TP .B Returns list .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property line_join_type Join type, one of \fImiter\fP, \fIround\fP, \fIbevel\fP\&. .UNINDENT .INDENT 7.0 .TP .B property line_width Stroke width in float. .UNINDENT .INDENT 7.0 .TP .B property miter_limit Miter limit in float. .UNINDENT .INDENT 7.0 .TP .B property opacity Opacity value. .UNINDENT .INDENT 7.0 .TP .B property stroke_adjust Stroke adjust .UNINDENT .UNINDENT .SS Origination .sp Origination keeps live shape properties for some of the primitive shapes. Origination objects are accessible via \fBorigination\fP property of layers. Following primitive shapes are defined: \fI\%Invalidated\fP, \fI\%Line\fP, \fI\%Rectangle\fP, \fI\%Ellipse\fP, and \fI\%RoundedRectangle\fP\&. .SS Invalidated .INDENT 0.0 .TP .B class psd_tools.api.shape.Invalidated(data) Invalidated live shape. .sp This equals to a primitive shape that does not provide Live shape properties. Use \fI\%VectorMask\fP to access shape information instead of this origination object. .INDENT 7.0 .TP .B property invalidated .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .UNINDENT .SS Line .INDENT 0.0 .TP .B class psd_tools.api.shape.Line(data) Line live shape. .INDENT 7.0 .TP .B property arrow_conc .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property arrow_end Line arrow end. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property arrow_length Line arrow length. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property arrow_start Line arrow start. .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property arrow_width Line arrow width. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property bbox Bounding box of the live shape. .INDENT 7.0 .TP .B Returns \fI\%Descriptor\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property index Origination item index. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property invalidated .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property line_end Line end. .INDENT 7.0 .TP .B Returns \fI\%Descriptor\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property line_start Line start. .INDENT 7.0 .TP .B Returns \fI\%Descriptor\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property line_weight Line weight .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origin_type Type of the vector shape. .INDENT 7.0 .IP \(bu 2 1: \fI\%Rectangle\fP .IP \(bu 2 2: \fI\%RoundedRectangle\fP .IP \(bu 2 4: \fI\%Line\fP .IP \(bu 2 5: \fI\%Ellipse\fP .UNINDENT .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property resolution Resolution. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .UNINDENT .SS Ellipse .INDENT 0.0 .TP .B class psd_tools.api.shape.Ellipse(data) Ellipse live shape. .INDENT 7.0 .TP .B property bbox Bounding box of the live shape. .INDENT 7.0 .TP .B Returns \fI\%Descriptor\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property index Origination item index. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property invalidated .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origin_type Type of the vector shape. .INDENT 7.0 .IP \(bu 2 1: \fI\%Rectangle\fP .IP \(bu 2 2: \fI\%RoundedRectangle\fP .IP \(bu 2 4: \fI\%Line\fP .IP \(bu 2 5: \fI\%Ellipse\fP .UNINDENT .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property resolution Resolution. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .UNINDENT .SS Rectangle .INDENT 0.0 .TP .B class psd_tools.api.shape.Rectangle(data) Rectangle live shape. .INDENT 7.0 .TP .B property bbox Bounding box of the live shape. .INDENT 7.0 .TP .B Returns \fI\%Descriptor\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property index Origination item index. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property invalidated .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origin_type Type of the vector shape. .INDENT 7.0 .IP \(bu 2 1: \fI\%Rectangle\fP .IP \(bu 2 2: \fI\%RoundedRectangle\fP .IP \(bu 2 4: \fI\%Line\fP .IP \(bu 2 5: \fI\%Ellipse\fP .UNINDENT .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property resolution Resolution. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .UNINDENT .SS RoundedRectangle .INDENT 0.0 .TP .B class psd_tools.api.shape.RoundedRectangle(data) Rounded rectangle live shape. .INDENT 7.0 .TP .B property bbox Bounding box of the live shape. .INDENT 7.0 .TP .B Returns \fI\%Descriptor\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property index Origination item index. .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property invalidated .INDENT 7.0 .TP .B Returns \fIbool\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property origin_type Type of the vector shape. .INDENT 7.0 .IP \(bu 2 1: \fI\%Rectangle\fP .IP \(bu 2 2: \fI\%RoundedRectangle\fP .IP \(bu 2 4: \fI\%Line\fP .IP \(bu 2 5: \fI\%Ellipse\fP .UNINDENT .INDENT 7.0 .TP .B Returns \fIint\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property radii Corner radii of rounded rectangles. The order is top\-left, top\-right, bottom\-left, bottom\-right. .INDENT 7.0 .TP .B Returns \fI\%Descriptor\fP .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property resolution Resolution. .INDENT 7.0 .TP .B Returns \fIfloat\fP .UNINDENT .UNINDENT .UNINDENT .SS psd_tools.api.smart_object .sp Smart object module. .SS SmartObject .INDENT 0.0 .TP .B class psd_tools.api.smart_object.SmartObject(layer) Smart object that represents embedded or external file. .sp Smart objects are attached to \fI\%SmartObjectLayer\fP\&. .INDENT 7.0 .TP .B property data Embedded file content, or empty if kind is \fIexternal\fP or \fIalias\fP .UNINDENT .INDENT 7.0 .TP .B property filename Original file name of the object. .UNINDENT .INDENT 7.0 .TP .B property filesize File size of the object. .UNINDENT .INDENT 7.0 .TP .B property filetype Preferred file extension, such as \fIjpg\fP\&. .UNINDENT .INDENT 7.0 .TP .B is_psd() Return True if the file is embedded PSD/PSB. .UNINDENT .INDENT 7.0 .TP .B property kind Kind of the link, \(aqdata\(aq, \(aqalias\(aq, or \(aqexternal\(aq. .UNINDENT .INDENT 7.0 .TP .B open(external_dir=None) Open the smart object as binary IO. .INDENT 7.0 .TP .B Parameters \fBexternal_dir\fP \-\- Path to the directory of the external file. .UNINDENT .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C with layer.smart_object.open() as f: data = f.read() .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property resolution Resolution of the object. .UNINDENT .INDENT 7.0 .TP .B save(filename=None) Save the smart object to a file. .INDENT 7.0 .TP .B Parameters \fBfilename\fP \-\- File name to export. If None, use the embedded name. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B property unique_id UUID of the object. .UNINDENT .INDENT 7.0 .TP .B property warp Warp parameters. .UNINDENT .UNINDENT .SS psd_tools.constants .sp Various constants for psd_tools .SS BlendMode .INDENT 0.0 .TP .B class psd_tools.constants.BlendMode(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Blend modes. .INDENT 7.0 .TP .B COLOR = b\(aqcolr\(aq .UNINDENT .INDENT 7.0 .TP .B COLOR_BURN = b\(aqidiv\(aq .UNINDENT .INDENT 7.0 .TP .B COLOR_DODGE = b\(aqdiv \(aq .UNINDENT .INDENT 7.0 .TP .B DARKEN = b\(aqdark\(aq .UNINDENT .INDENT 7.0 .TP .B DARKER_COLOR = b\(aqdkCl\(aq .UNINDENT .INDENT 7.0 .TP .B DIFFERENCE = b\(aqdiff\(aq .UNINDENT .INDENT 7.0 .TP .B DISSOLVE = b\(aqdiss\(aq .UNINDENT .INDENT 7.0 .TP .B DIVIDE = b\(aqfdiv\(aq .UNINDENT .INDENT 7.0 .TP .B EXCLUSION = b\(aqsmud\(aq .UNINDENT .INDENT 7.0 .TP .B HARD_LIGHT = b\(aqhLit\(aq .UNINDENT .INDENT 7.0 .TP .B HARD_MIX = b\(aqhMix\(aq .UNINDENT .INDENT 7.0 .TP .B HUE = b\(aqhue \(aq .UNINDENT .INDENT 7.0 .TP .B LIGHTEN = b\(aqlite\(aq .UNINDENT .INDENT 7.0 .TP .B LIGHTER_COLOR = b\(aqlgCl\(aq .UNINDENT .INDENT 7.0 .TP .B LINEAR_BURN = b\(aqlbrn\(aq .UNINDENT .INDENT 7.0 .TP .B LINEAR_DODGE = b\(aqlddg\(aq .UNINDENT .INDENT 7.0 .TP .B LINEAR_LIGHT = b\(aqlLit\(aq .UNINDENT .INDENT 7.0 .TP .B LUMINOSITY = b\(aqlum \(aq .UNINDENT .INDENT 7.0 .TP .B MULTIPLY = b\(aqmul \(aq .UNINDENT .INDENT 7.0 .TP .B NORMAL = b\(aqnorm\(aq .UNINDENT .INDENT 7.0 .TP .B OVERLAY = b\(aqover\(aq .UNINDENT .INDENT 7.0 .TP .B PASS_THROUGH = b\(aqpass\(aq .UNINDENT .INDENT 7.0 .TP .B PIN_LIGHT = b\(aqpLit\(aq .UNINDENT .INDENT 7.0 .TP .B SATURATION = b\(aqsat \(aq .UNINDENT .INDENT 7.0 .TP .B SCREEN = b\(aqscrn\(aq .UNINDENT .INDENT 7.0 .TP .B SOFT_LIGHT = b\(aqsLit\(aq .UNINDENT .INDENT 7.0 .TP .B SUBTRACT = b\(aqfsub\(aq .UNINDENT .INDENT 7.0 .TP .B VIVID_LIGHT = b\(aqvLit\(aq .UNINDENT .UNINDENT .SS ChannelID .INDENT 0.0 .TP .B class psd_tools.constants.ChannelID(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Channel types. .INDENT 7.0 .TP .B CHANNEL_0 = 0 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_1 = 1 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_2 = 2 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_3 = 3 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_4 = 4 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_5 = 5 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_6 = 6 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_7 = 7 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_8 = 8 .UNINDENT .INDENT 7.0 .TP .B CHANNEL_9 = 9 .UNINDENT .INDENT 7.0 .TP .B REAL_USER_LAYER_MASK = \-3 .UNINDENT .INDENT 7.0 .TP .B TRANSPARENCY_MASK = \-1 .UNINDENT .INDENT 7.0 .TP .B USER_LAYER_MASK = \-2 .UNINDENT .UNINDENT .SS Clipping .INDENT 0.0 .TP .B class psd_tools.constants.Clipping(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Clipping. .INDENT 7.0 .TP .B BASE = 0 .UNINDENT .INDENT 7.0 .TP .B NON_BASE = 1 .UNINDENT .UNINDENT .SS ColorMode .INDENT 0.0 .TP .B class psd_tools.constants.ColorMode(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Color mode. .INDENT 7.0 .TP .B BITMAP = 0 .UNINDENT .INDENT 7.0 .TP .B CMYK = 4 .UNINDENT .INDENT 7.0 .TP .B DUOTONE = 8 .UNINDENT .INDENT 7.0 .TP .B GRAYSCALE = 1 .UNINDENT .INDENT 7.0 .TP .B INDEXED = 2 .UNINDENT .INDENT 7.0 .TP .B LAB = 9 .UNINDENT .INDENT 7.0 .TP .B MULTICHANNEL = 7 .UNINDENT .INDENT 7.0 .TP .B RGB = 3 .UNINDENT .INDENT 7.0 .TP .B static channels(value, alpha=False) .UNINDENT .UNINDENT .SS ColorSpaceID .INDENT 0.0 .TP .B class psd_tools.constants.ColorSpaceID(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Color space types. .INDENT 7.0 .TP .B CMYK = 2 .UNINDENT .INDENT 7.0 .TP .B GRAYSCALE = 8 .UNINDENT .INDENT 7.0 .TP .B HSB = 1 .UNINDENT .INDENT 7.0 .TP .B LAB = 7 .UNINDENT .INDENT 7.0 .TP .B RGB = 0 .UNINDENT .UNINDENT .SS Compression .INDENT 0.0 .TP .B class psd_tools.constants.Compression(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Compression modes. .sp Compression. 0 = Raw Data, 1 = RLE compressed, 2 = ZIP without prediction, 3 = ZIP with prediction. .INDENT 7.0 .TP .B RAW = 0 .UNINDENT .INDENT 7.0 .TP .B RLE = 1 .UNINDENT .INDENT 7.0 .TP .B ZIP = 2 .UNINDENT .INDENT 7.0 .TP .B ZIP_WITH_PREDICTION = 3 .UNINDENT .UNINDENT .SS EffectOSType .INDENT 0.0 .TP .B class psd_tools.constants.EffectOSType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) OS Type keys for Layer Effects. .INDENT 7.0 .TP .B BEVEL = b\(aqbevl\(aq .UNINDENT .INDENT 7.0 .TP .B COMMON_STATE = b\(aqcmnS\(aq .UNINDENT .INDENT 7.0 .TP .B DROP_SHADOW = b\(aqdsdw\(aq .UNINDENT .INDENT 7.0 .TP .B INNER_GLOW = b\(aqiglw\(aq .UNINDENT .INDENT 7.0 .TP .B INNER_SHADOW = b\(aqisdw\(aq .UNINDENT .INDENT 7.0 .TP .B OUTER_GLOW = b\(aqoglw\(aq .UNINDENT .INDENT 7.0 .TP .B SOLID_FILL = b\(aqsofi\(aq .UNINDENT .UNINDENT .SS GlobalLayerMaskKind .INDENT 0.0 .TP .B class psd_tools.constants.GlobalLayerMaskKind(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Global layer mask kind. .INDENT 7.0 .TP .B COLOR_PROTECTED = 1 .UNINDENT .INDENT 7.0 .TP .B COLOR_SELECTED = 0 .UNINDENT .INDENT 7.0 .TP .B PER_LAYER = 128 .UNINDENT .UNINDENT .SS LinkedLayerType .INDENT 0.0 .TP .B class psd_tools.constants.LinkedLayerType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Linked layer types. .INDENT 7.0 .TP .B ALIAS = b\(aqliFA\(aq .UNINDENT .INDENT 7.0 .TP .B DATA = b\(aqliFD\(aq .UNINDENT .INDENT 7.0 .TP .B EXTERNAL = b\(aqliFE\(aq .UNINDENT .UNINDENT .SS PathResourceID .INDENT 0.0 .TP .B class psd_tools.constants.PathResourceID(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) .INDENT 7.0 .TP .B CLIPBOARD = 7 .UNINDENT .INDENT 7.0 .TP .B CLOSED_KNOT_LINKED = 1 .UNINDENT .INDENT 7.0 .TP .B CLOSED_KNOT_UNLINKED = 2 .UNINDENT .INDENT 7.0 .TP .B CLOSED_LENGTH = 0 .UNINDENT .INDENT 7.0 .TP .B INITIAL_FILL = 8 .UNINDENT .INDENT 7.0 .TP .B OPEN_KNOT_LINKED = 4 .UNINDENT .INDENT 7.0 .TP .B OPEN_KNOT_UNLINKED = 5 .UNINDENT .INDENT 7.0 .TP .B OPEN_LENGTH = 3 .UNINDENT .INDENT 7.0 .TP .B PATH_FILL = 6 .UNINDENT .UNINDENT .SS PlacedLayerType .INDENT 0.0 .TP .B class psd_tools.constants.PlacedLayerType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) .INDENT 7.0 .TP .B IMAGE_STACK = 3 .UNINDENT .INDENT 7.0 .TP .B RASTER = 2 .UNINDENT .INDENT 7.0 .TP .B UNKNOWN = 0 .UNINDENT .INDENT 7.0 .TP .B VECTOR = 1 .UNINDENT .UNINDENT .SS PrintScaleStyle .INDENT 0.0 .TP .B class psd_tools.constants.PrintScaleStyle(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Print scale style. .INDENT 7.0 .TP .B CENTERED = 0 .UNINDENT .INDENT 7.0 .TP .B SIZE_TO_FIT = 1 .UNINDENT .INDENT 7.0 .TP .B USER_DEFINED = 2 .UNINDENT .UNINDENT .SS Resource .INDENT 0.0 .TP .B class psd_tools.constants.Resource(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Image resource keys. .sp Note the following is not defined for performance reasons. .INDENT 7.0 .INDENT 3.5 .INDENT 0.0 .IP \(bu 2 PATH_INFO_10 to PATH_INFO_989 corresponding to 2010 \- 2989 .IP \(bu 2 .INDENT 2.0 .TP .B PLUGIN_RESOURCES_10 to PLUGIN_RESOURCES_989 corresponding to 4010 \- 4989 .UNINDENT .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B ALPHA_IDENTIFIERS = 1053 .UNINDENT .INDENT 7.0 .TP .B ALPHA_NAMES_PASCAL = 1006 .UNINDENT .INDENT 7.0 .TP .B ALPHA_NAMES_UNICODE = 1045 .UNINDENT .INDENT 7.0 .TP .B ALTERNATE_DUOTONE_COLORS = 1066 .UNINDENT .INDENT 7.0 .TP .B ALTERNATE_SPOT_COLORS = 1067 .UNINDENT .INDENT 7.0 .TP .B AUTO_SAVE_FILE_PATH = 1086 .UNINDENT .INDENT 7.0 .TP .B AUTO_SAVE_FORMAT = 1087 .UNINDENT .INDENT 7.0 .TP .B BACKGROUND_COLOR = 1010 .UNINDENT .INDENT 7.0 .TP .B BORDER_INFO = 1009 .UNINDENT .INDENT 7.0 .TP .B CAPTION_DIGEST = 1061 .UNINDENT .INDENT 7.0 .TP .B CAPTION_PASCAL = 1008 .UNINDENT .INDENT 7.0 .TP .B CLIPPING_PATH_NAME = 2999 .UNINDENT .INDENT 7.0 .TP .B COLOR_HALFTONING_INFO = 1013 .UNINDENT .INDENT 7.0 .TP .B COLOR_SAMPLERS_RESOURCE = 1073 .UNINDENT .INDENT 7.0 .TP .B COLOR_SAMPLERS_RESOURCE_OBSOLETE = 1038 .UNINDENT .INDENT 7.0 .TP .B COLOR_TRANSFER_FUNCTION = 1016 .UNINDENT .INDENT 7.0 .TP .B COPYRIGHT_FLAG = 1034 .UNINDENT .INDENT 7.0 .TP .B COUNT_INFO = 1080 .UNINDENT .INDENT 7.0 .TP .B DISPLAY_INFO = 1077 .UNINDENT .INDENT 7.0 .TP .B DISPLAY_INFO_OBSOLETE = 1007 .UNINDENT .INDENT 7.0 .TP .B DUOTONE_HALFTONING_INFO = 1014 .UNINDENT .INDENT 7.0 .TP .B DUOTONE_IMAGE_INFO = 1018 .UNINDENT .INDENT 7.0 .TP .B DUOTONE_TRANSFER_FUNCTION = 1017 .UNINDENT .INDENT 7.0 .TP .B EFFECTIVE_BW = 1019 .UNINDENT .INDENT 7.0 .TP .B EFFECTS_VISIBLE = 1042 .UNINDENT .INDENT 7.0 .TP .B EPS_OPTIONS = 1021 .UNINDENT .INDENT 7.0 .TP .B EXIF_DATA_1 = 1058 .UNINDENT .INDENT 7.0 .TP .B EXIF_DATA_3 = 1059 .UNINDENT .INDENT 7.0 .TP .B GLOBAL_ALTITUDE = 1049 .UNINDENT .INDENT 7.0 .TP .B GLOBAL_ANGLE = 1037 .UNINDENT .INDENT 7.0 .TP .B GRAYSCALE_HALFTONING_INFO = 1012 .UNINDENT .INDENT 7.0 .TP .B GRAYSCALE_TRANSFER_FUNCTION = 1015 .UNINDENT .INDENT 7.0 .TP .B GRID_AND_GUIDES_INFO = 1032 .UNINDENT .INDENT 7.0 .TP .B HDR_TONING_INFO = 1070 .UNINDENT .INDENT 7.0 .TP .B ICC_PROFILE = 1039 .UNINDENT .INDENT 7.0 .TP .B ICC_UNTAGGED_PROFILE = 1041 .UNINDENT .INDENT 7.0 .TP .B IDS_SEED_NUMBER = 1044 .UNINDENT .INDENT 7.0 .TP .B IMAGE_MODE_RAW = 1029 .UNINDENT .INDENT 7.0 .TP .B IMAGE_READY_7_ROLLOVER_EXPANDED_STATE = 7003 .UNINDENT .INDENT 7.0 .TP .B IMAGE_READY_DATA_SETS = 7001 .UNINDENT .INDENT 7.0 .TP .B IMAGE_READY_DEFAULT_SELECTED_STATE = 7002 .UNINDENT .INDENT 7.0 .TP .B IMAGE_READY_ROLLOVER_EXPANDED_STATE = 7004 .UNINDENT .INDENT 7.0 .TP .B IMAGE_READY_SAVE_LAYER_SETTINGS = 7005 .UNINDENT .INDENT 7.0 .TP .B IMAGE_READY_VARIABLES = 7000 .UNINDENT .INDENT 7.0 .TP .B IMAGE_READY_VERSION = 7006 .UNINDENT .INDENT 7.0 .TP .B INDEXED_COLOR_TABLE_COUNT = 1046 .UNINDENT .INDENT 7.0 .TP .B IPTC_NAA = 1028 .UNINDENT .INDENT 7.0 .TP .B JPEG_QUALITY = 1030 .UNINDENT .INDENT 7.0 .TP .B JUMP_TO_XPEP = 1052 .UNINDENT .INDENT 7.0 .TP .B LAYER_COMPS = 1065 .UNINDENT .INDENT 7.0 .TP .B LAYER_GROUPS_ENABLED_ID = 1072 .UNINDENT .INDENT 7.0 .TP .B LAYER_GROUP_INFO = 1026 .UNINDENT .INDENT 7.0 .TP .B LAYER_SELECTION_IDS = 1069 .UNINDENT .INDENT 7.0 .TP .B LAYER_STATE_INFO = 1024 .UNINDENT .INDENT 7.0 .TP .B LIGHTROOM_WORKFLOW = 8000 .UNINDENT .INDENT 7.0 .TP .B MAC_NSPRINTINFO = 1084 .UNINDENT .INDENT 7.0 .TP .B MAC_PAGE_FORMAT_INFO = 1002 .UNINDENT .INDENT 7.0 .TP .B MAC_PRINT_MANAGER_INFO = 1001 .UNINDENT .INDENT 7.0 .TP .B MEASUREMENT_SCALE = 1074 .UNINDENT .INDENT 7.0 .TP .B OBSOLETE1 = 1000 .UNINDENT .INDENT 7.0 .TP .B OBSOLETE2 = 1003 .UNINDENT .INDENT 7.0 .TP .B OBSOLETE3 = 1020 .UNINDENT .INDENT 7.0 .TP .B OBSOLETE4 = 1023 .UNINDENT .INDENT 7.0 .TP .B OBSOLETE5 = 1027 .UNINDENT .INDENT 7.0 .TP .B ONION_SKINS = 1078 .UNINDENT .INDENT 7.0 .TP .B ORIGIN_PATH_INFO = 3000 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_0 = 2000 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_1 = 2001 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_2 = 2002 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_3 = 2003 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_4 = 2004 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_5 = 2005 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_6 = 2006 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_7 = 2007 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_8 = 2008 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_9 = 2009 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_990 = 2990 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_991 = 2991 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_992 = 2992 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_993 = 2993 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_994 = 2994 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_995 = 2995 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_996 = 2996 .UNINDENT .INDENT 7.0 .TP .B PATH_INFO_997 = 2997 .UNINDENT .INDENT 7.0 .TP .B PATH_SELECTION_STATE = 1088 .UNINDENT .INDENT 7.0 .TP .B PIXEL_ASPECT_RATIO = 1064 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_0 = 4000 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_1 = 4001 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_2 = 4002 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_3 = 4003 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4 = 4004 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4990 = 4990 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4991 = 4991 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4992 = 4992 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4993 = 4993 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4994 = 4994 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4995 = 4995 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4996 = 4996 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4997 = 4997 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4998 = 4998 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_4999 = 4990 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_5 = 4005 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_6 = 4006 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_7 = 4007 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_8 = 4008 .UNINDENT .INDENT 7.0 .TP .B PLUGIN_RESOURCE_9 = 4009 .UNINDENT .INDENT 7.0 .TP .B PRINT_FLAGS = 1011 .UNINDENT .INDENT 7.0 .TP .B PRINT_FLAGS_INFO = 10000 .UNINDENT .INDENT 7.0 .TP .B PRINT_INFO_CS2 = 1071 .UNINDENT .INDENT 7.0 .TP .B PRINT_INFO_CS5 = 1082 .UNINDENT .INDENT 7.0 .TP .B PRINT_SCALE = 1062 .UNINDENT .INDENT 7.0 .TP .B PRINT_STYLE = 1083 .UNINDENT .INDENT 7.0 .TP .B QUICK_MASK_INFO = 1022 .UNINDENT .INDENT 7.0 .TP .B RESOLUTION_INFO = 1005 .UNINDENT .INDENT 7.0 .TP .B SHEET_DISCLOSURE = 1076 .UNINDENT .INDENT 7.0 .TP .B SLICES = 1050 .UNINDENT .INDENT 7.0 .TP .B SPOT_HALFTONE = 1043 .UNINDENT .INDENT 7.0 .TP .B THUMBNAIL_RESOURCE = 1036 .UNINDENT .INDENT 7.0 .TP .B THUMBNAIL_RESOURCE_PS4 = 1033 .UNINDENT .INDENT 7.0 .TP .B TIMELINE_INFO = 1075 .UNINDENT .INDENT 7.0 .TP .B TRANSPARENCY_INDEX = 1047 .UNINDENT .INDENT 7.0 .TP .B URL = 1035 .UNINDENT .INDENT 7.0 .TP .B URL_LIST = 1054 .UNINDENT .INDENT 7.0 .TP .B VERSION_INFO = 1057 .UNINDENT .INDENT 7.0 .TP .B WATERMARK = 1040 .UNINDENT .INDENT 7.0 .TP .B WINDOWS_DEVMODE = 1085 .UNINDENT .INDENT 7.0 .TP .B WORKFLOW_URL = 1051 .UNINDENT .INDENT 7.0 .TP .B WORKING_PATH = 1025 .UNINDENT .INDENT 7.0 .TP .B XMP_METADATA = 1060 .UNINDENT .INDENT 7.0 .TP .B static is_path_info(value) .UNINDENT .INDENT 7.0 .TP .B static is_plugin_resource(value) .UNINDENT .UNINDENT .SS SectionDivider .INDENT 0.0 .TP .B class psd_tools.constants.SectionDivider(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) .INDENT 7.0 .TP .B BOUNDING_SECTION_DIVIDER = 3 .UNINDENT .INDENT 7.0 .TP .B CLOSED_FOLDER = 2 .UNINDENT .INDENT 7.0 .TP .B OPEN_FOLDER = 1 .UNINDENT .INDENT 7.0 .TP .B OTHER = 0 .UNINDENT .UNINDENT .SS Tag .INDENT 0.0 .TP .B class psd_tools.constants.Tag(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Tagged blocks keys. .INDENT 7.0 .TP .B ALPHA = b\(aqAlph\(aq .UNINDENT .INDENT 7.0 .TP .B ANIMATION_EFFECTS = b\(aqanFX\(aq .UNINDENT .INDENT 7.0 .TP .B ANNOTATIONS = b\(aqAnno\(aq .UNINDENT .INDENT 7.0 .TP .B ARTBOARD_DATA1 = b\(aqartb\(aq .UNINDENT .INDENT 7.0 .TP .B ARTBOARD_DATA2 = b\(aqartd\(aq .UNINDENT .INDENT 7.0 .TP .B ARTBOARD_DATA3 = b\(aqabdd\(aq .UNINDENT .INDENT 7.0 .TP .B BLACK_AND_WHITE = b\(aqblwh\(aq .UNINDENT .INDENT 7.0 .TP .B BLEND_CLIPPING_ELEMENTS = b\(aqclbl\(aq .UNINDENT .INDENT 7.0 .TP .B BLEND_FILL_OPACITY = b\(aqiOpa\(aq .UNINDENT .INDENT 7.0 .TP .B BLEND_INTERIOR_ELEMENTS = b\(aqinfx\(aq .UNINDENT .INDENT 7.0 .TP .B BRIGHTNESS_AND_CONTRAST = b\(aqbrit\(aq .UNINDENT .INDENT 7.0 .TP .B CHANNEL_BLENDING_RESTRICTIONS_SETTING = b\(aqbrst\(aq .UNINDENT .INDENT 7.0 .TP .B CHANNEL_MIXER = b\(aqmixr\(aq .UNINDENT .INDENT 7.0 .TP .B COLOR_BALANCE = b\(aqblnc\(aq .UNINDENT .INDENT 7.0 .TP .B COLOR_LOOKUP = b\(aqclrL\(aq .UNINDENT .INDENT 7.0 .TP .B COMPOSITOR_INFO = b\(aqcinf\(aq .UNINDENT .INDENT 7.0 .TP .B CONTENT_GENERATOR_EXTRA_DATA = b\(aqCgEd\(aq .UNINDENT .INDENT 7.0 .TP .B CURVES = b\(aqcurv\(aq .UNINDENT .INDENT 7.0 .TP .B EFFECTS_LAYER = b\(aqlrFX\(aq .UNINDENT .INDENT 7.0 .TP .B EXPORT_SETTING1 = b\(aqextd\(aq .UNINDENT .INDENT 7.0 .TP .B EXPORT_SETTING2 = b\(aqextn\(aq .UNINDENT .INDENT 7.0 .TP .B EXPOSURE = b\(aqexpA\(aq .UNINDENT .INDENT 7.0 .TP .B FILTER_EFFECTS1 = b\(aqFXid\(aq .UNINDENT .INDENT 7.0 .TP .B FILTER_EFFECTS2 = b\(aqFEid\(aq .UNINDENT .INDENT 7.0 .TP .B FILTER_EFFECTS3 = b\(aqFELS\(aq .UNINDENT .INDENT 7.0 .TP .B FILTER_MASK = b\(aqFMsk\(aq .UNINDENT .INDENT 7.0 .TP .B FOREIGN_EFFECT_ID = b\(aqffxi\(aq .UNINDENT .INDENT 7.0 .TP .B FRAMED_GROUP = b\(aqfrgb\(aq .UNINDENT .INDENT 7.0 .TP .B GRADIENT_FILL_SETTING = b\(aqGdFl\(aq .UNINDENT .INDENT 7.0 .TP .B GRADIENT_MAP = b\(aqgrdm\(aq .UNINDENT .INDENT 7.0 .TP .B HUE_SATURATION = b\(aqhue2\(aq .UNINDENT .INDENT 7.0 .TP .B HUE_SATURATION_V4 = b\(aqhue \(aq .UNINDENT .INDENT 7.0 .TP .B INVERT = b\(aqnvrt\(aq .UNINDENT .INDENT 7.0 .TP .B KNOCKOUT_SETTING = b\(aqknko\(aq .UNINDENT .INDENT 7.0 .TP .B LAYER = b\(aqLayr\(aq .UNINDENT .INDENT 7.0 .TP .B LAYER_16 = b\(aqLr16\(aq .UNINDENT .INDENT 7.0 .TP .B LAYER_32 = b\(aqLr32\(aq .UNINDENT .INDENT 7.0 .TP .B LAYER_ID = b\(aqlyid\(aq .UNINDENT .INDENT 7.0 .TP .B LAYER_MASK_AS_GLOBAL_MASK = b\(aqlmgm\(aq .UNINDENT .INDENT 7.0 .TP .B LAYER_NAME_SOURCE_SETTING = b\(aqlnsr\(aq .UNINDENT .INDENT 7.0 .TP .B LAYER_VERSION = b\(aqlyvr\(aq .UNINDENT .INDENT 7.0 .TP .B LEVELS = b\(aqlevl\(aq .UNINDENT .INDENT 7.0 .TP .B LINKED_LAYER1 = b\(aqlnkD\(aq .UNINDENT .INDENT 7.0 .TP .B LINKED_LAYER2 = b\(aqlnk2\(aq .UNINDENT .INDENT 7.0 .TP .B LINKED_LAYER3 = b\(aqlnk3\(aq .UNINDENT .INDENT 7.0 .TP .B LINKED_LAYER_EXTERNAL = b\(aqlnkE\(aq .UNINDENT .INDENT 7.0 .TP .B METADATA_SETTING = b\(aqshmd\(aq .UNINDENT .INDENT 7.0 .TP .B NESTED_SECTION_DIVIDER_SETTING = b\(aqlsdk\(aq .UNINDENT .INDENT 7.0 .TP .B OBJECT_BASED_EFFECTS_LAYER_INFO = b\(aqlfx2\(aq .UNINDENT .INDENT 7.0 .TP .B OBJECT_BASED_EFFECTS_LAYER_INFO_V0 = b\(aqlmfx\(aq .UNINDENT .INDENT 7.0 .TP .B OBJECT_BASED_EFFECTS_LAYER_INFO_V1 = b\(aqlfxs\(aq .UNINDENT .INDENT 7.0 .TP .B PATT = b\(aqpatt\(aq .UNINDENT .INDENT 7.0 .TP .B PATTERNS1 = b\(aqPatt\(aq .UNINDENT .INDENT 7.0 .TP .B PATTERNS2 = b\(aqPat2\(aq .UNINDENT .INDENT 7.0 .TP .B PATTERNS3 = b\(aqPat3\(aq .UNINDENT .INDENT 7.0 .TP .B PATTERN_DATA = b\(aqshpa\(aq .UNINDENT .INDENT 7.0 .TP .B PATTERN_FILL_SETTING = b\(aqPtFl\(aq .UNINDENT .INDENT 7.0 .TP .B PHOTO_FILTER = b\(aqphfl\(aq .UNINDENT .INDENT 7.0 .TP .B PIXEL_SOURCE_DATA1 = b\(aqPxSc\(aq .UNINDENT .INDENT 7.0 .TP .B PIXEL_SOURCE_DATA2 = b\(aqPxSD\(aq .UNINDENT .INDENT 7.0 .TP .B PLACED_LAYER1 = b\(aqplLd\(aq .UNINDENT .INDENT 7.0 .TP .B PLACED_LAYER2 = b\(aqPlLd\(aq .UNINDENT .INDENT 7.0 .TP .B POSTERIZE = b\(aqpost\(aq .UNINDENT .INDENT 7.0 .TP .B PROTECTED_SETTING = b\(aqlspf\(aq .UNINDENT .INDENT 7.0 .TP .B REFERENCE_POINT = b\(aqfxrp\(aq .UNINDENT .INDENT 7.0 .TP .B SAVING_MERGED_TRANSPARENCY = b\(aqMtrn\(aq .UNINDENT .INDENT 7.0 .TP .B SAVING_MERGED_TRANSPARENCY16 = b\(aqMt16\(aq .UNINDENT .INDENT 7.0 .TP .B SAVING_MERGED_TRANSPARENCY32 = b\(aqMt32\(aq .UNINDENT .INDENT 7.0 .TP .B SECTION_DIVIDER_SETTING = b\(aqlsct\(aq .UNINDENT .INDENT 7.0 .TP .B SELECTIVE_COLOR = b\(aqselc\(aq .UNINDENT .INDENT 7.0 .TP .B SHEET_COLOR_SETTING = b\(aqlclr\(aq .UNINDENT .INDENT 7.0 .TP .B SMART_OBJECT_LAYER_DATA1 = b\(aqSoLd\(aq .UNINDENT .INDENT 7.0 .TP .B SMART_OBJECT_LAYER_DATA2 = b\(aqSoLE\(aq .UNINDENT .INDENT 7.0 .TP .B SOLID_COLOR_SHEET_SETTING = b\(aqSoCo\(aq .UNINDENT .INDENT 7.0 .TP .B TEXT_ENGINE_DATA = b\(aqTxt2\(aq .UNINDENT .INDENT 7.0 .TP .B THRESHOLD = b\(aqthrs\(aq .UNINDENT .INDENT 7.0 .TP .B TRANSPARENCY_SHAPES_LAYER = b\(aqtsly\(aq .UNINDENT .INDENT 7.0 .TP .B TYPE_TOOL_INFO = b\(aqtySh\(aq .UNINDENT .INDENT 7.0 .TP .B TYPE_TOOL_OBJECT_SETTING = b\(aqTySh\(aq .UNINDENT .INDENT 7.0 .TP .B UNICODE_LAYER_NAME = b\(aqluni\(aq .UNINDENT .INDENT 7.0 .TP .B UNICODE_PATH_NAME = b\(aqpths\(aq .UNINDENT .INDENT 7.0 .TP .B USER_MASK = b\(aqLMsk\(aq .UNINDENT .INDENT 7.0 .TP .B USING_ALIGNED_RENDERING = b\(aqsn2P\(aq .UNINDENT .INDENT 7.0 .TP .B VECTOR_MASK_AS_GLOBAL_MASK = b\(aqvmgm\(aq .UNINDENT .INDENT 7.0 .TP .B VECTOR_MASK_SETTING1 = b\(aqvmsk\(aq .UNINDENT .INDENT 7.0 .TP .B VECTOR_MASK_SETTING2 = b\(aqvsms\(aq .UNINDENT .INDENT 7.0 .TP .B VECTOR_ORIGINATION_DATA = b\(aqvogk\(aq .UNINDENT .INDENT 7.0 .TP .B VECTOR_ORIGINATION_UNKNOWN = b\(aqvowv\(aq .UNINDENT .INDENT 7.0 .TP .B VECTOR_STROKE_CONTENT_DATA = b\(aqvscg\(aq .UNINDENT .INDENT 7.0 .TP .B VECTOR_STROKE_DATA = b\(aqvstk\(aq .UNINDENT .INDENT 7.0 .TP .B VIBRANCE = b\(aqvibA\(aq .UNINDENT .UNINDENT .SS psd_tools.psd .sp Low\-level API that translates binary data to Python structure. .sp All the data structure in this subpackage inherits from one of the object defined in \fI\%psd_tools.psd.base\fP module. .SS PSD .INDENT 0.0 .TP .B class psd_tools.psd.PSD(header=_Nothing.NOTHING, color_mode_data=_Nothing.NOTHING, image_resources=_Nothing.NOTHING, layer_and_mask_information=_Nothing.NOTHING, image_data=_Nothing.NOTHING) Low\-level PSD file structure that resembles the \fI\%specification\fP\&. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.psd import PSD with open(input_file, \(aqrb\(aq) as f: psd = PSD.read(f) with open(output_file, \(aqwb\(aq) as f: psd.write(f) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B header See \fI\%FileHeader\fP\&. .UNINDENT .INDENT 7.0 .TP .B color_mode_data See \fI\%ColorModeData\fP\&. .UNINDENT .INDENT 7.0 .TP .B image_resources See \fI\%ImageResources\fP\&. .UNINDENT .INDENT 7.0 .TP .B layer_and_mask_information See \fI\%LayerAndMaskInformation\fP\&. .UNINDENT .INDENT 7.0 .TP .B image_data See \fI\%ImageData\fP\&. .UNINDENT .UNINDENT .SS psd_tools.psd.base .sp Base data structures intended for inheritance. .sp All the data objects in this subpackage inherit from the base classes here. That means, all the data structures in the \fI\%psd_tools.psd\fP subpackage implements the methods of \fBBaseElement\fP for serialization and decoding. .sp Objects that inherit from the \fBBaseElement\fP typically gets \fI\%attrs\fP decoration to have data fields. .SS BaseElement .INDENT 0.0 .TP .B class psd_tools.psd.base.BaseElement Base element of various PSD file structs. All the data objects in \fI\%psd_tools.psd\fP subpackage inherit from this class. .INDENT 7.0 .TP .B classmethod read(cls, fp) Read the element from a file\-like object. .UNINDENT .INDENT 7.0 .TP .B write(self, fp) Write the element to a file\-like object. .UNINDENT .INDENT 7.0 .TP .B classmethod frombytes(self, data, *args, **kwargs) Read the element from bytes. .UNINDENT .INDENT 7.0 .TP .B tobytes(self, *args, **kwargs) Write the element to bytes. .UNINDENT .INDENT 7.0 .TP .B validate(self) Validate the attribute. .UNINDENT .UNINDENT .SS EmptyElement .INDENT 0.0 .TP .B class psd_tools.psd.base.EmptyElement Empty element that does not have a value. .UNINDENT .SS ValueElement .INDENT 0.0 .TP .B class psd_tools.psd.base.ValueElement(value=None) Single value wrapper that has a \fIvalue\fP attribute. .sp Pretty printing shows the internal value by default. Inherit with \fI@attr.s(repr=False)\fP decorator to keep this behavior. .INDENT 7.0 .TP .B value Internal value. .UNINDENT .UNINDENT .SS NumericElement .INDENT 0.0 .TP .B class psd_tools.psd.base.NumericElement(value=0.0) Single value element that has a numeric \fIvalue\fP attribute. .UNINDENT .SS IntegerElement .INDENT 0.0 .TP .B class psd_tools.psd.base.IntegerElement(value=0) Single integer value element that has a \fIvalue\fP attribute. .sp Use with \fI@attr.s(repr=False)\fP decorator. .UNINDENT .SS ShortIntegerElement .INDENT 0.0 .TP .B class psd_tools.psd.base.ShortIntegerElement(value=0) Single short integer element that has a \fIvalue\fP attribute. .sp Use with \fI@attr.s(repr=False)\fP decorator. .UNINDENT .SS ByteElement .INDENT 0.0 .TP .B class psd_tools.psd.base.ByteElement(value=0) Single 1\-byte integer element that has a \fIvalue\fP attribute. .sp Use with \fI@attr.s(repr=False)\fP decorator. .UNINDENT .SS BooleanElement .INDENT 0.0 .TP .B class psd_tools.psd.base.BooleanElement(value=False) Single bool value element that has a \fIvalue\fP attribute. .sp Use with \fI@attr.s(repr=False)\fP decorator. .UNINDENT .SS StringElement .INDENT 0.0 .TP .B class psd_tools.psd.base.StringElement(value: str = \(aq\(aq) Single unicode string. .INDENT 7.0 .TP .B value \fIstr\fP value .UNINDENT .UNINDENT .SS ListElement .INDENT 0.0 .TP .B class psd_tools.psd.base.ListElement(items=_Nothing.NOTHING) List\-like element that has \fIitems\fP list. .UNINDENT .SS DictElement .INDENT 0.0 .TP .B class psd_tools.psd.base.DictElement(items=_Nothing.NOTHING) Dict\-like element that has \fIitems\fP OrderedDict. .UNINDENT .SS psd_tools.psd.color_mode_data .sp Color mode data structure. .SS ColorModeData .INDENT 0.0 .TP .B class psd_tools.psd.color_mode_data.ColorModeData(value: bytes = b\(aq\(aq) Color mode data section of the PSD file. .sp For indexed color images the data is the color table for the image in a non\-interleaved order. .sp Duotone images also have this data, but the data format is undocumented. .INDENT 7.0 .TP .B interleave() Returns interleaved color table in bytes. .UNINDENT .UNINDENT .SS psd_tools.psd.descriptor .sp Descriptor data structure. .sp Descriptors are basic data structure used throughout PSD files. Descriptor is one kind of serialization protocol for data objects, and enum classes in \fI\%psd_tools.terminology\fP or bytes indicates what kind of descriptor it is. .sp The class ID can be pre\-defined enum if the tag is 4\-byte length or plain bytes if the length is arbitrary. They depend on the internal version of Adobe Photoshop but the detail is unknown. .sp Pretty printing is the best approach to check the descriptor content: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C from IPython.pretty import pprint pprint(descriptor) .ft P .fi .UNINDENT .UNINDENT .SS Alias .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Alias(value: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Alias structure equivalent to \fI\%RawData\fP\&. .UNINDENT .SS Bool .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Bool(value=False) Bool structure. .INDENT 7.0 .TP .B value \fIbool\fP value .UNINDENT .UNINDENT .SS Class .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Class(name: str = \(aq\(aq, classID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Class structure. .INDENT 7.0 .TP .B name \fIstr\fP value .UNINDENT .INDENT 7.0 .TP .B classID bytes in \fI\%Klass\fP .UNINDENT .UNINDENT .SS Class1 .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Class1(name: str = \(aq\(aq, classID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Class structure equivalent to \fI\%Class\fP\&. .UNINDENT .SS Class2 .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Class2(name: str = \(aq\(aq, classID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Class structure equivalent to \fI\%Class\fP\&. .UNINDENT .SS Class3 .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Class3(name: str = \(aq\(aq, classID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Class structure equivalent to \fI\%Class\fP\&. .UNINDENT .SS Descriptor .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Descriptor(items=_Nothing.NOTHING, name: str = \(aq\(aq, classID=b\(aqnull\(aq) Dict\-like descriptor structure. .sp Key values can be 4\-character \fIbytes\fP in \fI\%Key\fP or arbitrary length \fIbytes\fP\&. Supports direct access by \fI\%Key\fP\&. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.terminology import Key descriptor[Key.Enabled] for key in descriptor: print(descriptor[key]) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B name \fIstr\fP .UNINDENT .INDENT 7.0 .TP .B classID bytes in \fI\%Klass\fP .UNINDENT .UNINDENT .SS Double .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Double(value=0.0) Double structure. .INDENT 7.0 .TP .B value \fIfloat\fP value .UNINDENT .UNINDENT .SS Enumerated .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Enumerated(typeID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, enum: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Enum structure. .INDENT 7.0 .TP .B typeID bytes in \fI\%Type\fP .UNINDENT .INDENT 7.0 .TP .B enum bytes in \fI\%Enum\fP .UNINDENT .INDENT 7.0 .TP .B get_name() Get enum name. .UNINDENT .UNINDENT .SS EnumeratedReference .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.EnumeratedReference(name: str = \(aq\(aq, classID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, typeID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, enum: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Enumerated reference structure. .INDENT 7.0 .TP .B name \fIstr\fP value .UNINDENT .INDENT 7.0 .TP .B classID bytes in \fI\%Klass\fP .UNINDENT .INDENT 7.0 .TP .B typeID bytes in \fI\%Type\fP .UNINDENT .INDENT 7.0 .TP .B enum bytes in \fI\%Enum\fP .UNINDENT .UNINDENT .SS GlobalObject .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.GlobalObject(items=_Nothing.NOTHING, name: str = \(aq\(aq, classID=b\(aqnull\(aq) Global object structure equivalent to \fI\%Descriptor\fP\&. .UNINDENT .SS Identifier .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Identifier(value=0) Identifier equivalent to \fI\%Integer\fP\&. .UNINDENT .SS Index .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Index(value=0) Index equivalent to \fI\%Integer\fP\&. .UNINDENT .SS Integer .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Integer(value=0) Integer structure. .INDENT 7.0 .TP .B value \fIint\fP value .UNINDENT .UNINDENT .SS LargeInteger .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.LargeInteger(value=0) LargeInteger structure. .INDENT 7.0 .TP .B value \fIint\fP value .UNINDENT .UNINDENT .SS List .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.List(items=_Nothing.NOTHING) List structure. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C for item in list_value: print(item) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .SS Name .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Name(name: str = \(aq\(aq, classID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, value: str = \(aq\(aq) Name structure (Undocumented). .INDENT 7.0 .TP .B name str .UNINDENT .INDENT 7.0 .TP .B classID bytes in \fI\%Klass\fP .UNINDENT .INDENT 7.0 .TP .B value str .UNINDENT .UNINDENT .SS ObjectArray .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.ObjectArray(items=_Nothing.NOTHING, items_count: int = 0, name: str = \(aq\(aq, classID=b\(aqnull\(aq) Object array structure almost equivalent to \fI\%Descriptor\fP\&. .INDENT 7.0 .TP .B items_count \fIint\fP value .UNINDENT .INDENT 7.0 .TP .B name \fIstr\fP value .UNINDENT .INDENT 7.0 .TP .B classID bytes in \fI\%Klass\fP .UNINDENT .UNINDENT .SS Property .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Property(name: str = \(aq\(aq, classID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, keyID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Property structure. .INDENT 7.0 .TP .B name \fIstr\fP value .UNINDENT .INDENT 7.0 .TP .B classID bytes in \fI\%Klass\fP .UNINDENT .INDENT 7.0 .TP .B keyID bytes in \fI\%Key\fP .UNINDENT .UNINDENT .SS Offset .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Offset(name: str = \(aq\(aq, classID: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, value=0) Offset structure. .INDENT 7.0 .TP .B name \fIstr\fP value .UNINDENT .INDENT 7.0 .TP .B classID bytes in \fI\%Klass\fP .UNINDENT .INDENT 7.0 .TP .B value \fIint\fP value .UNINDENT .UNINDENT .SS Path .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Path(value: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Undocumented path structure equivalent to \fI\%RawData\fP\&. .UNINDENT .SS RawData .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.RawData(value: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) RawData structure. .INDENT 7.0 .TP .B value \fIbytes\fP value .UNINDENT .UNINDENT .SS Reference .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.Reference(items=_Nothing.NOTHING) Reference structure equivalent to \fI\%List\fP\&. .UNINDENT .SS String .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.String(value: str = \(aq\(aq) String structure. .INDENT 7.0 .TP .B value \fIstr\fP value .UNINDENT .UNINDENT .SS UnitFloat .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.UnitFloat(value: float = 0.0, unit=Unit._None) Unit float structure. .INDENT 7.0 .TP .B unit unit of the value in \fBUnit\fP or \fBEnum\fP .UNINDENT .INDENT 7.0 .TP .B value \fIfloat\fP value .UNINDENT .UNINDENT .SS UnitFloats .INDENT 0.0 .TP .B class psd_tools.psd.descriptor.UnitFloats(unit=Unit._None, values=_Nothing.NOTHING) Unit floats structure. .INDENT 7.0 .TP .B unit unit of the value in \fBUnit\fP or \fBEnum\fP .UNINDENT .INDENT 7.0 .TP .B values List of \fIfloat\fP values .UNINDENT .UNINDENT .SS psd_tools.psd.engine_data .sp EngineData structure. .sp PSD file embeds text formatting data in its own markup language referred EngineData. The format looks like the following: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C << /EngineDict << /Editor << /Text (˛ˇMake a change and save.) >> >> /Font << /Name (˛ˇHelveticaNeue\-Light) /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StyleSheetSet [ << /Name (˛ˇNormal RGB) >> ] >> >> .ft P .fi .UNINDENT .UNINDENT .SS EngineData .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.EngineData(items=_Nothing.NOTHING) Dict\-like element. .sp TYPE_TOOL_OBJECT_SETTING tagged block contains this object in its descriptor. .UNINDENT .SS EngineData2 .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.EngineData2(items=_Nothing.NOTHING) Dict\-like element. .sp TEXT_ENGINE_DATA tagged block has this object. .UNINDENT .SS Bool .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.Bool(value=False) Bool element. .UNINDENT .SS Dict .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.Dict(items=_Nothing.NOTHING) Dict\-like element. .UNINDENT .SS Float .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.Float(value=0.0) Float element. .UNINDENT .SS Integer .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.Integer(value=0) Integer element. .UNINDENT .SS List .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.List(items=_Nothing.NOTHING) List\-like element. .UNINDENT .SS Property .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.Property(value=None) Property element. .UNINDENT .SS String .INDENT 0.0 .TP .B class psd_tools.psd.engine_data.String(value=None) String element. .UNINDENT .SS psd_tools.psd.effects_layer .sp Effects layer structure. .sp Note the structures in this module is obsolete and object\-based layer effects are stored in tagged blocks. .SS EffectsLayer .INDENT 0.0 .TP .B class psd_tools.psd.effects_layer.EffectsLayer(items=_Nothing.NOTHING, version: int = 0) Dict\-like EffectsLayer structure. See \fI\%psd_tools.constants.EffectOSType\fP for available keys. .INDENT 7.0 .TP .B version .UNINDENT .UNINDENT .SS CommonStateInfo .INDENT 0.0 .TP .B class psd_tools.psd.effects_layer.CommonStateInfo(version: int = 0, visible: int = 1) Effects layer common state info. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B visible .UNINDENT .UNINDENT .SS ShadowInfo .INDENT 0.0 .TP .B class psd_tools.psd.effects_layer.ShadowInfo(version: int = 0, blur: int = 0, intensity: int = 0, angle: int = 0, distance: int = 0, color=_Nothing.NOTHING, blend_mode=BlendMode.NORMAL, enabled: int = 0, use_global_angle: int = 0, opacity: int = 0, native_color=_Nothing.NOTHING) Effects layer shadow info. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B blur .UNINDENT .INDENT 7.0 .TP .B intensity .UNINDENT .INDENT 7.0 .TP .B angle .UNINDENT .INDENT 7.0 .TP .B distance .UNINDENT .INDENT 7.0 .TP .B color .UNINDENT .INDENT 7.0 .TP .B blend_mode .UNINDENT .INDENT 7.0 .TP .B enabled .UNINDENT .INDENT 7.0 .TP .B use_global_angle .UNINDENT .INDENT 7.0 .TP .B opacity .UNINDENT .INDENT 7.0 .TP .B native_color .UNINDENT .UNINDENT .SS OuterGlowInfo .INDENT 0.0 .TP .B class psd_tools.psd.effects_layer.OuterGlowInfo(version: int = 0, blur: int = 0, intensity: int = 0, color=_Nothing.NOTHING, blend_mode=BlendMode.NORMAL, enabled: int = 0, opacity: int = 0, native_color=None) Effects layer outer glow info. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B blur .UNINDENT .INDENT 7.0 .TP .B intensity .UNINDENT .INDENT 7.0 .TP .B color .UNINDENT .INDENT 7.0 .TP .B blend_mode .UNINDENT .INDENT 7.0 .TP .B enabled .UNINDENT .INDENT 7.0 .TP .B opacity .UNINDENT .INDENT 7.0 .TP .B native_color .UNINDENT .UNINDENT .SS InnerGlowInfo .INDENT 0.0 .TP .B class psd_tools.psd.effects_layer.InnerGlowInfo(version: int = 0, blur: int = 0, intensity: int = 0, color=_Nothing.NOTHING, blend_mode=BlendMode.NORMAL, enabled: int = 0, opacity: int = 0, invert=None, native_color=None) Effects layer inner glow info. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B blur .UNINDENT .INDENT 7.0 .TP .B intensity .UNINDENT .INDENT 7.0 .TP .B color .UNINDENT .INDENT 7.0 .TP .B blend_mode .UNINDENT .INDENT 7.0 .TP .B enabled .UNINDENT .INDENT 7.0 .TP .B opacity .UNINDENT .INDENT 7.0 .TP .B invert .UNINDENT .INDENT 7.0 .TP .B native_color .UNINDENT .UNINDENT .SS BevelInfo .INDENT 0.0 .TP .B class psd_tools.psd.effects_layer.BevelInfo(version: int = 0, angle: int = 0, depth: int = 0, blur: int = 0, highlight_blend_mode=BlendMode.NORMAL, shadow_blend_mode=BlendMode.NORMAL, highlight_color=_Nothing.NOTHING, shadow_color=_Nothing.NOTHING, bevel_style: int = 0, highlight_opacity: int = 0, shadow_opacity: int = 0, enabled: int = 0, use_global_angle: int = 0, direction: int = 0, real_highlight_color=None, real_shadow_color=None) Effects layer bevel info. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B angle .UNINDENT .INDENT 7.0 .TP .B depth .UNINDENT .INDENT 7.0 .TP .B blur .UNINDENT .INDENT 7.0 .TP .B highlight_blend_mode .UNINDENT .INDENT 7.0 .TP .B shadow_blend_mode .UNINDENT .INDENT 7.0 .TP .B highlight_color .UNINDENT .INDENT 7.0 .TP .B shadow_color .UNINDENT .INDENT 7.0 .TP .B highlight_opacity .UNINDENT .INDENT 7.0 .TP .B shadow_opacity .UNINDENT .INDENT 7.0 .TP .B enabled .UNINDENT .INDENT 7.0 .TP .B use_global_angle .UNINDENT .INDENT 7.0 .TP .B direction .UNINDENT .INDENT 7.0 .TP .B real_hightlight_color .UNINDENT .INDENT 7.0 .TP .B real_shadow_color .UNINDENT .UNINDENT .SS SolidFillInfo .INDENT 0.0 .TP .B class psd_tools.psd.effects_layer.SolidFillInfo(version: int = 2, blend_mode=BlendMode.NORMAL, color=_Nothing.NOTHING, opacity: int = 0, enabled: int = 0, native_color=_Nothing.NOTHING) Effects layer inner glow info. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B blend_mode .UNINDENT .INDENT 7.0 .TP .B color .UNINDENT .INDENT 7.0 .TP .B opacity .UNINDENT .INDENT 7.0 .TP .B enabled .UNINDENT .INDENT 7.0 .TP .B native_color .UNINDENT .UNINDENT .SS psd_tools.psd.filter_effects .sp Filter effects structure. .SS FilterEffects .INDENT 0.0 .TP .B class psd_tools.psd.filter_effects.FilterEffects(items=_Nothing.NOTHING, version: int = 1) List\-like FilterEffects structure. See \fI\%FilterEffect\fP\&. .INDENT 7.0 .TP .B version .UNINDENT .UNINDENT .SS FilterEffect .INDENT 0.0 .TP .B class psd_tools.psd.filter_effects.FilterEffect(uuid=None, version=None, rectangle=None, depth=None, max_channels=None, channels=None, extra=None) FilterEffect structure. .INDENT 7.0 .TP .B uuid .UNINDENT .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B rectangle .UNINDENT .INDENT 7.0 .TP .B depth .UNINDENT .INDENT 7.0 .TP .B max_channels .UNINDENT .INDENT 7.0 .TP .B channels List of \fI\%FilterEffectChannel\fP\&. .UNINDENT .INDENT 7.0 .TP .B extra See \fI\%FilterEffectExtra\fP\&. .UNINDENT .UNINDENT .SS FilterEffectChannel .INDENT 0.0 .TP .B class psd_tools.psd.filter_effects.FilterEffectChannel(is_written=0, compression=None, data=b\(aq\(aq) FilterEffectChannel structure. .INDENT 7.0 .TP .B is_written .UNINDENT .INDENT 7.0 .TP .B compression .UNINDENT .INDENT 7.0 .TP .B data .UNINDENT .UNINDENT .SS FilterEffectExtra .INDENT 0.0 .TP .B class psd_tools.psd.filter_effects.FilterEffectExtra(is_written=0, rectangle=_Nothing.NOTHING, compression: int = 0, data: bytes = b\(aq\(aq) FilterEffectExtra structure. .INDENT 7.0 .TP .B is_written .UNINDENT .INDENT 7.0 .TP .B rectangle .UNINDENT .INDENT 7.0 .TP .B compression .UNINDENT .INDENT 7.0 .TP .B data .UNINDENT .UNINDENT .SS psd_tools.psd.header .sp File header structure. .SS FileHeader .INDENT 0.0 .TP .B class psd_tools.psd.header.FileHeader(signature: bytes = b\(aq8BPS\(aq, version: int = 1, channels: int = 4, height: int = 64, width: int = 64, depth: int = 8, color_mode=ColorMode.RGB) Header section of the PSD file. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.psd.header import FileHeader from psd_tools.constants import ColorMode header = FileHeader(channels=2, height=359, width=400, depth=8, color_mode=ColorMode.GRAYSCALE) .ft P .fi .UNINDENT .UNINDENT .INDENT 7.0 .TP .B signature Signature: always equal to \fBb\(aq8BPS\(aq\fP\&. .UNINDENT .INDENT 7.0 .TP .B version Version number. PSD is 1, and PSB is 2. .UNINDENT .INDENT 7.0 .TP .B channels The number of channels in the image, including any user\-defined alpha channel. .UNINDENT .INDENT 7.0 .TP .B height The height of the image in pixels. .UNINDENT .INDENT 7.0 .TP .B width The width of the image in pixels. .UNINDENT .INDENT 7.0 .TP .B depth The number of bits per channel. .UNINDENT .INDENT 7.0 .TP .B color_mode The color mode of the file. See \fI\%ColorMode\fP .UNINDENT .UNINDENT .SS psd_tools.psd.image_data .sp Image data section structure. .sp \fI\%ImageData\fP corresponds to the last section of the PSD/PSB file where a composited image is stored. When the file does not contain layers, this is the only place pixels are saved. .SS ImageData .INDENT 0.0 .TP .B class psd_tools.psd.image_data.ImageData(compression=Compression.RAW, data: bytes = b\(aq\(aq) Merged channel image data. .INDENT 7.0 .TP .B compression See \fI\%Compression\fP\&. .UNINDENT .INDENT 7.0 .TP .B data \fIbytes\fP as compressed in the \fIcompression\fP flag. .UNINDENT .INDENT 7.0 .TP .B get_data(header, split=True) Get decompressed data. .INDENT 7.0 .TP .B Parameters \fBheader\fP \-\- See \fI\%FileHeader\fP\&. .TP .B Returns \fIlist\fP of bytes corresponding each channel. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B classmethod new(header, color=0, compression=Compression.RAW) Create a new image data object. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBheader\fP \-\- FileHeader. .IP \(bu 2 \fBcompression\fP \-\- compression type. .IP \(bu 2 \fBcolor\fP \-\- default color. int or iterable for channel length. .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B set_data(data, header) Set raw data and compress. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBdata\fP \-\- list of raw data bytes corresponding channels. .IP \(bu 2 \fBcompression\fP \-\- compression type, see \fI\%Compression\fP\&. .IP \(bu 2 \fBheader\fP \-\- See \fI\%FileHeader\fP\&. .UNINDENT .TP .B Returns length of compressed data. .UNINDENT .UNINDENT .UNINDENT .SS psd_tools.psd.image_resources .sp Image resources section structure. Image resources are used to store non\-pixel data associated with images, such as pen tool paths or slices. .sp See \fI\%Resource\fP to check available resource names. .sp Example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Resource version_info = psd.image_resources.get_data(Resource.VERSION_INFO) .ft P .fi .UNINDENT .UNINDENT .sp The following resources are plain bytes: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C Resource.OBSOLETE1: 1000 Resource.MAC_PRINT_MANAGER_INFO: 1001 Resource.MAC_PAGE_FORMAT_INFO: 1002 Resource.OBSOLETE2: 1003 Resource.DISPLAY_INFO_OBSOLETE: 1007 Resource.BORDER_INFO: 1009 Resource.DUOTONE_IMAGE_INFO: 1018 Resource.EFFECTIVE_BW: 1019 Resource.OBSOLETE3: 1020 Resource.EPS_OPTIONS: 1021 Resource.QUICK_MASK_INFO: 1022 Resource.OBSOLETE4: 1023 Resource.WORKING_PATH: 1025 Resource.OBSOLETE5: 1027 Resource.IPTC_NAA: 1028 Resource.IMAGE_MODE_RAW: 1029 Resource.JPEG_QUALITY: 1030 Resource.URL: 1035 Resource.COLOR_SAMPLERS_RESOURCE_OBSOLETE: 1038 Resource.ICC_PROFILE: 1039 Resource.SPOT_HALFTONE: 1043 Resource.JUMP_TO_XPEP: 1052 Resource.EXIF_DATA_1: 1058 Resource.EXIF_DATA_3: 1059 Resource.XMP_METADATA: 1060 Resource.CAPTION_DIGEST: 1061 Resource.ALTERNATE_DUOTONE_COLORS: 1066 Resource.ALTERNATE_SPOT_COLORS: 1067 Resource.HDR_TONING_INFO: 1070 Resource.PRINT_INFO_CS2: 1071 Resource.COLOR_SAMPLERS_RESOURCE: 1073 Resource.DISPLAY_INFO: 1077 Resource.MAC_NSPRINTINFO: 1084 Resource.WINDOWS_DEVMODE: 1085 Resource.PATH_INFO_N: 2000\-2999 Resource.PLUGIN_RESOURCES_N: 4000\-4999 Resource.IMAGE_READY_VARIABLES: 7000 Resource.IMAGE_READY_DATA_SETS: 7001 Resource.IMAGE_READY_DEFAULT_SELECTED_STATE: 7002 Resource.IMAGE_READY_7_ROLLOVER_EXPANDED_STATE: 7003 Resource.IMAGE_READY_ROLLOVER_EXPANDED_STATE: 7004 Resource.IMAGE_READY_SAVE_LAYER_SETTINGS: 7005 Resource.IMAGE_READY_VERSION: 7006 Resource.LIGHTROOM_WORKFLOW: 8000 .ft P .fi .UNINDENT .UNINDENT .SS ImageResources .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.ImageResources(items=_Nothing.NOTHING) Image resources section of the PSD file. Dict of \fI\%ImageResource\fP\&. .INDENT 7.0 .TP .B get_data(key, default=None) Get data from the image resources. .sp Shortcut for the following: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C if key in image_resources: value = tagged_blocks[key].data .ft P .fi .UNINDENT .UNINDENT .UNINDENT .INDENT 7.0 .TP .B classmethod new(**kwargs) Create a new default image resouces. .INDENT 7.0 .TP .B Returns ImageResources .UNINDENT .UNINDENT .UNINDENT .SS ImageResource .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.ImageResource(signature: bytes = b\(aq8BIM\(aq, key: int = 1000, name: str = \(aq\(aq, data: bytes = b\(aq\(aq) Image resource block. .INDENT 7.0 .TP .B signature Binary signature, always \fBb\(aq8BIM\(aq\fP\&. .UNINDENT .INDENT 7.0 .TP .B key Unique identifier for the resource. See \fI\%Resource\fP\&. .UNINDENT .INDENT 7.0 .TP .B name .UNINDENT .INDENT 7.0 .TP .B data The resource data. .UNINDENT .UNINDENT .SS AlphaIdentifiers .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.AlphaIdentifiers(items=_Nothing.NOTHING) List of alpha identifiers. .UNINDENT .SS AlphaNamesPascal .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.AlphaNamesPascal(items=_Nothing.NOTHING) List of alpha names. .UNINDENT .SS AlphaNamesUnicode .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.AlphaNamesUnicode(items=_Nothing.NOTHING) List of alpha names. .UNINDENT .SS Byte .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.Byte(value=0) Byte element. .UNINDENT .SS GridGuidesInfo .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.GridGuidesInfo(version: int = 1, horizontal: int = 0, vertical: int = 0, data=_Nothing.NOTHING) Grid and guides info structure. .UNINDENT .SS HalftoneScreens .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.HalftoneScreens(items=_Nothing.NOTHING) Halftone screens. .UNINDENT .SS HalftoneScreen .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.HalftoneScreen(freq: int = 0, unit: int = 0, angle: int = 0, shape: int = 0, use_accurate: bool = False, use_printer: bool = False) Halftone screen. .INDENT 7.0 .TP .B freq .UNINDENT .INDENT 7.0 .TP .B unit .UNINDENT .INDENT 7.0 .TP .B angle .UNINDENT .INDENT 7.0 .TP .B shape .UNINDENT .INDENT 7.0 .TP .B use_accurate .UNINDENT .INDENT 7.0 .TP .B use_printer .UNINDENT .UNINDENT .SS Integer .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.Integer(value=0) Integer element. .UNINDENT .SS LayerGroupEnabledIDs .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.LayerGroupEnabledIDs(items=_Nothing.NOTHING) Layer group enabled ids. .UNINDENT .SS LayerGroupInfo .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.LayerGroupInfo(items=_Nothing.NOTHING) Layer group info list. .UNINDENT .SS LayerSelectionIDs .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.LayerSelectionIDs(items=_Nothing.NOTHING) Layer selection ids. .UNINDENT .SS ShortInteger .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.ShortInteger(value=0) Short integer element. .UNINDENT .SS PascalString .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.PascalString(value=None) Pascal string element. .UNINDENT .SS PixelAspectRatio .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.PixelAspectRatio(value=0.0, version: int = 1) Pixel aspect ratio. .UNINDENT .SS PrintFlags .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.PrintFlags(labels: bool = False, crop_marks: bool = False, colorbars: bool = False, registration_marks: bool = False, negative: bool = False, flip: bool = False, interpolate: bool = False, caption: bool = False, print_flags=None) Print flags. .UNINDENT .SS PrintFlagsInfo .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.PrintFlagsInfo(version: int = 0, center_crop: int = 0, bleed_width_value: int = 0, bleed_width_scale: int = 0) Print flags info structure. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B center_crop .UNINDENT .INDENT 7.0 .TP .B bleed_width_value .UNINDENT .INDENT 7.0 .TP .B bleed_width_scale .UNINDENT .UNINDENT .SS PrintScale .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.PrintScale(style=PrintScaleStyle.CENTERED, x: float = 0.0, y: float = 0.0, scale: float = 0.0) Print scale structure. .INDENT 7.0 .TP .B style .UNINDENT .INDENT 7.0 .TP .B x .UNINDENT .INDENT 7.0 .TP .B y .UNINDENT .INDENT 7.0 .TP .B scale .UNINDENT .UNINDENT .SS ResoulutionInfo .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.ResoulutionInfo(horizontal: int = 0, horizontal_unit: int = 0, width_unit: int = 0, vertical: int = 0, vertical_unit: int = 0, height_unit: int = 0) Resoulution info structure. .INDENT 7.0 .TP .B horizontal .UNINDENT .INDENT 7.0 .TP .B horizontal_unit .UNINDENT .INDENT 7.0 .TP .B width_unit .UNINDENT .INDENT 7.0 .TP .B vertical .UNINDENT .INDENT 7.0 .TP .B vertical_unit .UNINDENT .INDENT 7.0 .TP .B height_unit .UNINDENT .UNINDENT .SS Slices .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.Slices(version: int = 0, data=None) Slices resource. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B data .UNINDENT .UNINDENT .SS SlicesV6 .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.SlicesV6(bbox=_Nothing.NOTHING, name: str = \(aq\(aq, items=_Nothing.NOTHING) Slices resource version 6. .INDENT 7.0 .TP .B bbox .UNINDENT .INDENT 7.0 .TP .B name .UNINDENT .INDENT 7.0 .TP .B items .UNINDENT .UNINDENT .SS SliceV6 .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.SliceV6(slice_id: int = 0, group_id: int = 0, origin: int = 0, associated_id=None, name: str = \(aq\(aq, slice_type: int = 0, bbox=_Nothing.NOTHING, url: str = \(aq\(aq, target: str = \(aq\(aq, message: str = \(aq\(aq, alt_tag: str = \(aq\(aq, cell_is_html: bool = False, cell_text: str = \(aq\(aq, horizontal_align: int = 0, vertical_align: int = 0, alpha: int = 0, red: int = 0, green: int = 0, blue: int = 0, data=None) Slice element for version 6. .INDENT 7.0 .TP .B slice_id .UNINDENT .INDENT 7.0 .TP .B group_id .UNINDENT .INDENT 7.0 .TP .B origin .UNINDENT .INDENT 7.0 .TP .B associated_id .UNINDENT .INDENT 7.0 .TP .B name .UNINDENT .INDENT 7.0 .TP .B slice_type .UNINDENT .INDENT 7.0 .TP .B bbox .UNINDENT .INDENT 7.0 .TP .B url .UNINDENT .INDENT 7.0 .TP .B target .UNINDENT .INDENT 7.0 .TP .B message .UNINDENT .INDENT 7.0 .TP .B alt_tag .UNINDENT .INDENT 7.0 .TP .B cell_is_html .UNINDENT .INDENT 7.0 .TP .B cell_text .UNINDENT .INDENT 7.0 .TP .B horizontal .UNINDENT .INDENT 7.0 .TP .B vertical .UNINDENT .INDENT 7.0 .TP .B alpha .UNINDENT .INDENT 7.0 .TP .B red .UNINDENT .INDENT 7.0 .TP .B green .UNINDENT .INDENT 7.0 .TP .B blue .UNINDENT .INDENT 7.0 .TP .B data .UNINDENT .UNINDENT .SS ThumbnailResource .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.ThumbnailResource(fmt: int = 0, width: int = 0, height: int = 0, row: int = 0, total_size: int = 0, bits: int = 0, planes: int = 0, data: bytes = b\(aq\(aq) Thumbnail resource structure. .INDENT 7.0 .TP .B fmt .UNINDENT .INDENT 7.0 .TP .B width .UNINDENT .INDENT 7.0 .TP .B height .UNINDENT .INDENT 7.0 .TP .B row .UNINDENT .INDENT 7.0 .TP .B total_size .UNINDENT .INDENT 7.0 .TP .B size .UNINDENT .INDENT 7.0 .TP .B bits .UNINDENT .INDENT 7.0 .TP .B planes .UNINDENT .INDENT 7.0 .TP .B data .UNINDENT .INDENT 7.0 .TP .B topil() Get PIL Image. .INDENT 7.0 .TP .B Returns PIL Image object. .UNINDENT .UNINDENT .UNINDENT .SS ThumbnailResourceV4 .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.ThumbnailResourceV4(fmt: int = 0, width: int = 0, height: int = 0, row: int = 0, total_size: int = 0, bits: int = 0, planes: int = 0, data: bytes = b\(aq\(aq) .UNINDENT .SS TransferFunctions .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.TransferFunctions(items=_Nothing.NOTHING) Transfer functions. .UNINDENT .SS TransferFunction .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.TransferFunction(curve=_Nothing.NOTHING, override: bool = False) Transfer function .UNINDENT .SS URLList .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.URLList(items=_Nothing.NOTHING) URL list structure. .UNINDENT .SS URLItem .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.URLItem(number: int = 0, id: int = 0, name: str = \(aq\(aq) URL item. .INDENT 7.0 .TP .B number .UNINDENT .INDENT 7.0 .TP .B id .UNINDENT .INDENT 7.0 .TP .B name .UNINDENT .UNINDENT .SS VersionInfo .INDENT 0.0 .TP .B class psd_tools.psd.image_resources.VersionInfo(version: int = 1, has_composite: bool = False, writer: str = \(aq\(aq, reader: str = \(aq\(aq, file_version: int = 1) Version info structure. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B has_composite .UNINDENT .INDENT 7.0 .TP .B writer .UNINDENT .INDENT 7.0 .TP .B reader .UNINDENT .INDENT 7.0 .TP .B file_version .UNINDENT .UNINDENT .SS psd_tools.psd.layer_and_mask .sp Layer and mask data structure. .SS LayerAndMaskInformation .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.LayerAndMaskInformation(layer_info=None, global_layer_mask_info=None, tagged_blocks=None) Layer and mask information section. .INDENT 7.0 .TP .B layer_info See \fI\%LayerInfo\fP\&. .UNINDENT .INDENT 7.0 .TP .B global_layer_mask_info See \fI\%GlobalLayerMaskInfo\fP\&. .UNINDENT .INDENT 7.0 .TP .B tagged_blocks See \fI\%TaggedBlocks\fP\&. .UNINDENT .UNINDENT .SS LayerInfo .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.LayerInfo(layer_count: int = 0, layer_records=None, channel_image_data=None) High\-level organization of the layer information. .INDENT 7.0 .TP .B layer_count Layer count. If it is a negative number, its absolute value is the number of layers and the first alpha channel contains the transparency data for the merged result. .UNINDENT .INDENT 7.0 .TP .B layer_records Information about each layer. See \fI\%LayerRecords\fP\&. .UNINDENT .INDENT 7.0 .TP .B channel_image_data Channel image data. See \fI\%ChannelImageData\fP\&. .UNINDENT .UNINDENT .SS GlobalLayerMaskInfo .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.GlobalLayerMaskInfo(overlay_color=None, opacity: int = 0, kind=GlobalLayerMaskKind.PER_LAYER) Global mask information. .INDENT 7.0 .TP .B overlay_color Overlay color space (undocumented) and color components. .UNINDENT .INDENT 7.0 .TP .B opacity Opacity. 0 = transparent, 100 = opaque. .UNINDENT .INDENT 7.0 .TP .B kind Kind. 0 = Color selected\-\-i.e. inverted; 1 = Color protected; 128 = use value stored per layer. This value is preferred. The others are for backward compatibility with beta versions. .UNINDENT .UNINDENT .SS LayerRecords .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.LayerRecords(items=_Nothing.NOTHING) List of layer records. See \fI\%LayerRecord\fP\&. .UNINDENT .SS LayerRecord .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.LayerRecord(top: int = 0, left: int = 0, bottom: int = 0, right: int = 0, channel_info=_Nothing.NOTHING, signature: bytes = b\(aq8BIM\(aq, blend_mode=BlendMode.NORMAL, opacity: int = 255, clipping=Clipping.BASE, flags=_Nothing.NOTHING, mask_data=None, blending_ranges=_Nothing.NOTHING, name: str = \(aq\(aq, tagged_blocks=_Nothing.NOTHING) Layer record. .INDENT 7.0 .TP .B top Top position. .UNINDENT .INDENT 7.0 .TP .B left Left position. .UNINDENT .INDENT 7.0 .TP .B bottom Bottom position. .UNINDENT .INDENT 7.0 .TP .B right Right position. .UNINDENT .INDENT 7.0 .TP .B channel_info List of \fI\%ChannelInfo\fP\&. .UNINDENT .INDENT 7.0 .TP .B signature Blend mode signature \fBb\(aq8BIM\(aq\fP\&. .UNINDENT .INDENT 7.0 .TP .B blend_mode Blend mode key. See \fI\%BlendMode\fP\&. .UNINDENT .INDENT 7.0 .TP .B opacity Opacity, 0 = transparent, 255 = opaque. .UNINDENT .INDENT 7.0 .TP .B clipping Clipping, 0 = base, 1 = non\-base. See \fI\%Clipping\fP\&. .UNINDENT .INDENT 7.0 .TP .B flags See \fI\%LayerFlags\fP\&. .UNINDENT .INDENT 7.0 .TP .B mask_data \fI\%MaskData\fP or None. .UNINDENT .INDENT 7.0 .TP .B blending_ranges See \fBLayerBlendingRanges\fP\&. .UNINDENT .INDENT 7.0 .TP .B name Layer name. .UNINDENT .INDENT 7.0 .TP .B tagged_blocks See \fI\%TaggedBlocks\fP\&. .UNINDENT .INDENT 7.0 .TP .B property channel_sizes List of channel sizes: [(width, height)]. .UNINDENT .INDENT 7.0 .TP .B property height Height of the layer. .UNINDENT .INDENT 7.0 .TP .B property width Width of the layer. .UNINDENT .UNINDENT .SS LayerFlags .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.LayerFlags(transparency_protected: bool = False, visible: bool = True, obsolete: bool = False, photoshop_v5_later: bool = True, pixel_data_irrelevant: bool = False, undocumented_1: bool = False, undocumented_2: bool = False, undocumented_3: bool = False) Layer flags. .sp Note there are undocumented flags. Maybe photoshop version. .INDENT 7.0 .TP .B transparency_protected .UNINDENT .INDENT 7.0 .TP .B visible .UNINDENT .INDENT 7.0 .TP .B pixel_data_irrelevant .UNINDENT .UNINDENT .SS LayerBlendingRanges .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.LayerBlendingRanges(composite_ranges=_Nothing.NOTHING, channel_ranges=_Nothing.NOTHING) Layer blending ranges. .sp All ranges contain 2 black values followed by 2 white values. .INDENT 7.0 .TP .B composite_ranges List of composite gray blend source and destination ranges. .UNINDENT .INDENT 7.0 .TP .B channel_ranges List of channel source and destination ranges. .UNINDENT .UNINDENT .SS MaskData .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.MaskData(top: int = 0, left: int = 0, bottom: int = 0, right: int = 0, background_color: int = 0, flags=_Nothing.NOTHING, parameters=None, real_flags=None, real_background_color=None, real_top=None, real_left=None, real_bottom=None, real_right=None) Mask data. .sp Real user mask is a final composite mask of vector and pixel masks. .INDENT 7.0 .TP .B top Top position. .UNINDENT .INDENT 7.0 .TP .B left Left position. .UNINDENT .INDENT 7.0 .TP .B bottom Bottom position. .UNINDENT .INDENT 7.0 .TP .B right Right position. .UNINDENT .INDENT 7.0 .TP .B background_color Default color. 0 or 255. .UNINDENT .INDENT 7.0 .TP .B flags See \fI\%MaskFlags\fP\&. .UNINDENT .INDENT 7.0 .TP .B parameters \fI\%MaskParameters\fP or None. .UNINDENT .INDENT 7.0 .TP .B real_flags Real user mask flags. See \fI\%MaskFlags\fP\&. .UNINDENT .INDENT 7.0 .TP .B real_background_color Real user mask background. 0 or 255. .UNINDENT .INDENT 7.0 .TP .B real_top Top position of real user mask. .UNINDENT .INDENT 7.0 .TP .B real_left Left position of real user mask. .UNINDENT .INDENT 7.0 .TP .B real_bottom Bottom position of real user mask. .UNINDENT .INDENT 7.0 .TP .B real_right Right position of real user mask. .UNINDENT .INDENT 7.0 .TP .B property height Height of the mask. .UNINDENT .INDENT 7.0 .TP .B property real_height Height of real user mask. .UNINDENT .INDENT 7.0 .TP .B property real_width Width of real user mask. .UNINDENT .INDENT 7.0 .TP .B property width Width of the mask. .UNINDENT .UNINDENT .SS MaskFlags .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.MaskFlags(pos_relative_to_layer: bool = False, mask_disabled: bool = False, invert_mask: bool = False, user_mask_from_render: bool = False, parameters_applied: bool = False, undocumented_1: bool = False, undocumented_2: bool = False, undocumented_3: bool = False) Mask flags. .INDENT 7.0 .TP .B pos_relative_to_layer Position relative to layer. .UNINDENT .INDENT 7.0 .TP .B mask_disabled Layer mask disabled. .UNINDENT .INDENT 7.0 .TP .B invert_mask Invert layer mask when blending (Obsolete). .UNINDENT .INDENT 7.0 .TP .B user_mask_from_render The user mask actually came from rendering other data. .UNINDENT .INDENT 7.0 .TP .B parameters_applied The user and/or vector masks have parameters applied to them. .UNINDENT .UNINDENT .SS MaskParameters .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.MaskParameters(user_mask_density=None, user_mask_feather=None, vector_mask_density=None, vector_mask_feather=None) Mask parameters. .INDENT 7.0 .TP .B user_mask_density .UNINDENT .INDENT 7.0 .TP .B user_mask_feather .UNINDENT .INDENT 7.0 .TP .B vector_mask_density .UNINDENT .INDENT 7.0 .TP .B vector_mask_feather .UNINDENT .UNINDENT .SS ChannelInfo .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.ChannelInfo(id=ChannelID.CHANNEL_0, length: int = 0) Channel information. .INDENT 7.0 .TP .B id Channel ID: 0 = red, 1 = green, etc.; \-1 = transparency mask; \-2 = user supplied layer mask, \-3 real user supplied layer mask (when both a user mask and a vector mask are present). See \fI\%ChannelID\fP\&. .UNINDENT .INDENT 7.0 .TP .B length Length of the corresponding channel data. .UNINDENT .UNINDENT .SS ChannelImageData .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.ChannelImageData(items=_Nothing.NOTHING) List of channel data list. .sp This size of this list corresponds to the size of \fI\%LayerRecords\fP\&. Each item corresponds to the channels of each layer. .sp See \fI\%ChannelDataList\fP\&. .UNINDENT .SS ChannelDataList .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.ChannelDataList(items=_Nothing.NOTHING) List of channel image data, corresponding to each color or alpha. .sp See \fI\%ChannelData\fP\&. .UNINDENT .SS ChannelData .INDENT 0.0 .TP .B class psd_tools.psd.layer_and_mask.ChannelData(compression=Compression.RAW, data: bytes = b\(aq\(aq) Channel data. .INDENT 7.0 .TP .B compression Compression type. See \fI\%Compression\fP\&. .UNINDENT .INDENT 7.0 .TP .B data Data. .UNINDENT .INDENT 7.0 .TP .B get_data(width, height, depth, version=1) Get decompressed channel data. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBwidth\fP \-\- width. .IP \(bu 2 \fBheight\fP \-\- height. .IP \(bu 2 \fBdepth\fP \-\- bit depth of the pixel. .IP \(bu 2 \fBversion\fP \-\- psd file version. .UNINDENT .TP .B Return type bytes .UNINDENT .UNINDENT .INDENT 7.0 .TP .B set_data(data, width, height, depth, version=1) Set raw channel data and compress to store. .INDENT 7.0 .TP .B Parameters .INDENT 7.0 .IP \(bu 2 \fBdata\fP \-\- raw data bytes to write. .IP \(bu 2 \fBcompression\fP \-\- compression type, see \fI\%Compression\fP\&. .IP \(bu 2 \fBwidth\fP \-\- width. .IP \(bu 2 \fBheight\fP \-\- height. .IP \(bu 2 \fBdepth\fP \-\- bit depth of the pixel. .IP \(bu 2 \fBversion\fP \-\- psd file version. .UNINDENT .UNINDENT .UNINDENT .UNINDENT .SS psd_tools.psd.linked_layer .sp Linked layer structure. .SS LinkedLayers .INDENT 0.0 .TP .B class psd_tools.psd.linked_layer.LinkedLayers(items=_Nothing.NOTHING) List of LinkedLayer structure. See \fI\%LinkedLayer\fP\&. .UNINDENT .SS LinkedLayer .INDENT 0.0 .TP .B class psd_tools.psd.linked_layer.LinkedLayer(kind=LinkedLayerType.ALIAS, version=1, uuid: str = \(aq\(aq, filename: str = \(aq\(aq, filetype: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, creator: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, filesize=None, open_file=None, linked_file=None, timestamp=None, data=None, child_id=None, mod_time=None, lock_state=None) LinkedLayer structure. .INDENT 7.0 .TP .B kind .UNINDENT .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B uuid .UNINDENT .INDENT 7.0 .TP .B filename .UNINDENT .INDENT 7.0 .TP .B filetype .UNINDENT .INDENT 7.0 .TP .B creator .UNINDENT .INDENT 7.0 .TP .B filesize .UNINDENT .INDENT 7.0 .TP .B open_file .UNINDENT .INDENT 7.0 .TP .B linked_file .UNINDENT .INDENT 7.0 .TP .B timestamp .UNINDENT .INDENT 7.0 .TP .B data .UNINDENT .INDENT 7.0 .TP .B child_id .UNINDENT .INDENT 7.0 .TP .B mod_time .UNINDENT .INDENT 7.0 .TP .B lock_state .UNINDENT .UNINDENT .SS psd_tools.psd.patterns .sp Patterns structure. .SS Patterns .INDENT 0.0 .TP .B class psd_tools.psd.patterns.Patterns(items=_Nothing.NOTHING) List of Pattern structure. See \fI\%Pattern\fP\&. .UNINDENT .SS Pattern .INDENT 0.0 .TP .B class psd_tools.psd.patterns.Pattern(version: int = 1, image_mode=, point=None, name: str = \(aq\(aq, pattern_id: str = \(aq\(aq, color_table=None, data=None) Pattern structure. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B image_mode See \fBColorMode\fP .UNINDENT .INDENT 7.0 .TP .B point Size in tuple. .UNINDENT .INDENT 7.0 .TP .B name \fIstr\fP name of the pattern. .UNINDENT .INDENT 7.0 .TP .B pattern_id ID of this pattern. .UNINDENT .INDENT 7.0 .TP .B color_table Color table if the mode is INDEXED. .UNINDENT .INDENT 7.0 .TP .B data See \fI\%VirtualMemoryArrayList\fP .UNINDENT .UNINDENT .SS VirtualMemoryArrayList .INDENT 0.0 .TP .B class psd_tools.psd.patterns.VirtualMemoryArrayList(version: int = 3, rectangle=None, channels=None) VirtualMemoryArrayList structure. Container of channels. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B rectangle Tuple of \fIint\fP .UNINDENT .INDENT 7.0 .TP .B channels List of \fI\%VirtualMemoryArray\fP .UNINDENT .UNINDENT .SS VirtualMemoryArray .INDENT 0.0 .TP .B class psd_tools.psd.patterns.VirtualMemoryArray(is_written=0, depth=None, rectangle=None, pixel_depth=None, compression=Compression.RAW, data=b\(aq\(aq) VirtualMemoryArrayList structure, corresponding to each channel. .INDENT 7.0 .TP .B is_written .UNINDENT .INDENT 7.0 .TP .B depth .UNINDENT .INDENT 7.0 .TP .B rectangle .UNINDENT .INDENT 7.0 .TP .B pixel_depth .UNINDENT .INDENT 7.0 .TP .B compression .UNINDENT .INDENT 7.0 .TP .B data .UNINDENT .INDENT 7.0 .TP .B get_data() Get decompressed bytes. .UNINDENT .INDENT 7.0 .TP .B set_data(size, data, depth, compression=0) Set bytes. .UNINDENT .UNINDENT .SS psd_tools.psd.tagged_blocks .sp Tagged block data structure. .INDENT 0.0 .INDENT 3.5 .SS Todo .sp Support the following tagged blocks: \fBTag.PATTERN_DATA\fP, \fBTag.TYPE_TOOL_INFO\fP, \fBTag.LAYER\fP, \fBTag.ALPHA\fP .UNINDENT .UNINDENT .SS TaggedBlocks .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.TaggedBlocks(items=_Nothing.NOTHING) Dict of tagged block items. .sp See \fI\%Tag\fP for available keys. .sp Example: .INDENT 7.0 .INDENT 3.5 .sp .nf .ft C from psd_tools.constants import Tag # Iterate over fields for key in tagged_blocks: print(key) # Get a field value = tagged_blocks.get_data(Tag.TYPE_TOOL_OBJECT_SETTING) .ft P .fi .UNINDENT .UNINDENT .UNINDENT .SS TaggedBlock .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.TaggedBlock(signature=b\(aq8BIM\(aq, key=b\(aq\(aq, data=b\(aq\(aq) Layer tagged block with extra info. .INDENT 7.0 .TP .B key 4\-character code. See \fI\%Tag\fP .UNINDENT .INDENT 7.0 .TP .B data Data. .UNINDENT .UNINDENT .SS Annotations .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.Annotations(items=_Nothing.NOTHING, major_version: int = 2, minor_version: int = 1) List of Annotation, see :py:class: \fI\&.Annotation\fP\&. .INDENT 7.0 .TP .B major_version .UNINDENT .INDENT 7.0 .TP .B minor_version .UNINDENT .UNINDENT .SS Annotation .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.Annotation(kind: bytes = b\(aqtxtA\(aq, is_open: int = 0, flags: int = 0, optional_blocks: int = 1, icon_location=_Nothing.NOTHING, popup_location=_Nothing.NOTHING, color=_Nothing.NOTHING, author: str = \(aq\(aq, name: str = \(aq\(aq, mod_date: str = \(aq\(aq, marker: bytes = b\(aqtxtC\(aq, data: bytes = b\(aq\(aq) Annotation structure. .INDENT 7.0 .TP .B kind .UNINDENT .INDENT 7.0 .TP .B is_open .UNINDENT .UNINDENT .SS Bytes .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.Bytes(value: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq) Bytes structure. .INDENT 7.0 .TP .B value .UNINDENT .UNINDENT .SS ChannelBlendingRestrictionsSetting .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.ChannelBlendingRestrictionsSetting(items=_Nothing.NOTHING) ChannelBlendingRestrictionsSetting structure. .sp List of restricted channel numbers (int). .UNINDENT .SS FilterMask .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.FilterMask(color=None, opacity: int = 0) FilterMask structure. .INDENT 7.0 .TP .B color .UNINDENT .INDENT 7.0 .TP .B opacity .UNINDENT .UNINDENT .SS MetadataSettings .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.MetadataSettings(items=_Nothing.NOTHING) MetadataSettings structure. .UNINDENT .SS MetadataSetting .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.MetadataSetting(signature: bytes = b\(aq8BIM\(aq, key: bytes = b\(aq\(aq, copy_on_sheet: bool = False, data: bytes = b\(aq\(aq) MetadataSetting structure. .UNINDENT .SS PixelSourceData2 .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.PixelSourceData2(items=_Nothing.NOTHING) PixelSourceData2 structure. .UNINDENT .SS PlacedLayerData .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.PlacedLayerData(kind: bytes = b\(aqplcL\(aq, version: int = 3, uuid: bytes = \(aq\(aq, page: int = 0, total_pages: int = 0, anti_alias: int = 0, layer_type=PlacedLayerType.UNKNOWN, transform: tuple = (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), warp=None) PlacedLayerData structure. .UNINDENT .SS ProtectedSetting .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.ProtectedSetting(value=0) ProtectedSetting structure. .UNINDENT .SS ReferencePoint .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.ReferencePoint(items=_Nothing.NOTHING) ReferencePoint structure. .UNINDENT .SS SectionDividerSetting .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.SectionDividerSetting(kind=SectionDivider.OTHER, signature=None, blend_mode=None, sub_type=None) SectionDividerSetting structure. .INDENT 7.0 .TP .B kind .UNINDENT .INDENT 7.0 .TP .B blend_mode .UNINDENT .INDENT 7.0 .TP .B sub_type .UNINDENT .UNINDENT .SS SheetColorSetting .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.SheetColorSetting(value=0) SheetColorSetting value. .sp This setting represents color label in the layers panel in Photoshop UI. .INDENT 7.0 .TP .B value .UNINDENT .UNINDENT .SS SmartObjectLayerData .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.SmartObjectLayerData(kind: bytes = b\(aqsoLD\(aq, version: int = 5, data: DescriptorBlock = None) VersionedDescriptorBlock structure. .INDENT 7.0 .TP .B kind .UNINDENT .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B data .UNINDENT .UNINDENT .SS TypeToolObjectSetting .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.TypeToolObjectSetting(version: int = 1, transform: tuple = (0.0, 0.0, 0.0, 0.0, 0.0, 0.0), text_version: int = 1, text_data: DescriptorBlock = None, warp_version: int = 1, warp: DescriptorBlock = None, left: int = 0, top: int = 0, right: int = 0, bottom: int = 0) TypeToolObjectSetting structure. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B transform Tuple of affine transform parameters (xx, xy, yx, yy, tx, ty). .UNINDENT .INDENT 7.0 .TP .B text_version .UNINDENT .INDENT 7.0 .TP .B text_data .UNINDENT .INDENT 7.0 .TP .B warp_version .UNINDENT .INDENT 7.0 .TP .B warp .UNINDENT .INDENT 7.0 .TP .B left .UNINDENT .INDENT 7.0 .TP .B top .UNINDENT .INDENT 7.0 .TP .B right .UNINDENT .INDENT 7.0 .TP .B bottom .UNINDENT .UNINDENT .SS UserMask .INDENT 0.0 .TP .B class psd_tools.psd.tagged_blocks.UserMask(color=None, opacity: int = 0, flag: int = 128) UserMask structure. .INDENT 7.0 .TP .B color .UNINDENT .INDENT 7.0 .TP .B opacity .UNINDENT .INDENT 7.0 .TP .B flag .UNINDENT .UNINDENT .SS psd_tools.psd.vector .sp Vector mask, path, and stroke structure. .SS Path .INDENT 0.0 .TP .B class psd_tools.psd.vector.Path(items=_Nothing.NOTHING) List\-like Path structure. Elements are either PathFillRule, InitialFillRule, ClipboardRecord, ClosedPath, or OpenPath. .UNINDENT .SS Subpath .INDENT 0.0 .TP .B class psd_tools.psd.vector.Subpath(items=_Nothing.NOTHING, operation: int = 1, unknown1: int = 1, unknown2: int = 0, index: int = 0, unknown3: bytes = b\(aq\ex00\ex00\ex00\ex00\ex00\ex00\ex00\ex00\ex00\ex00\(aq) Subpath element. This is a list of Knot objects. .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 There are undocumented data associated with this structure. .UNINDENT .UNINDENT .INDENT 7.0 .TP .B operation \fIint\fP value indicating how multiple subpath should be combined: .sp 1: Or (union), 2: Not\-Or, 3: And (intersect), 0: Xor (exclude) .sp The first path element is applied to the background surface. Intersection does not have strokes. .UNINDENT .INDENT 7.0 .TP .B index \fIint\fP index that specifies corresponding origination object. .UNINDENT .INDENT 7.0 .TP .B is_closed() Returns whether if the path is closed or not. .INDENT 7.0 .TP .B Returns \fIbool\fP\&. .UNINDENT .UNINDENT .UNINDENT .SS Knot .INDENT 0.0 .TP .B class psd_tools.psd.vector.Knot(preceding: tuple = (0.0, 0.0), anchor: tuple = (0.0, 0.0), leaving: tuple = (0.0, 0.0)) Knot element consisting of 3 control points for Bezier curves. .INDENT 7.0 .TP .B preceding (y, x) tuple of preceding control point in relative coordinates. .UNINDENT .INDENT 7.0 .TP .B anchor (y, x) tuple of anchor point in relative coordinates. .UNINDENT .INDENT 7.0 .TP .B leaving (y, x) tuple of leaving control point in relative coordinates. .UNINDENT .UNINDENT .SS ClipboardRecord .INDENT 0.0 .TP .B class psd_tools.psd.vector.ClipboardRecord(top: int = 0, left: int = 0, bottom: int = 0, right: int = 0, resolution: int = 0) Clipboard record. .INDENT 7.0 .TP .B top Top position in \fIint\fP .UNINDENT .INDENT 7.0 .TP .B left Left position in \fIint\fP .UNINDENT .INDENT 7.0 .TP .B bottom Bottom position in \fIint\fP .UNINDENT .INDENT 7.0 .TP .B right Right position in \fIint\fP .UNINDENT .INDENT 7.0 .TP .B resolution Resolution in \fIint\fP .UNINDENT .UNINDENT .SS PathFillRule .INDENT 0.0 .TP .B class psd_tools.psd.vector.PathFillRule Path fill rule record, empty. .UNINDENT .SS InitialFillRule .INDENT 0.0 .TP .B class psd_tools.psd.vector.InitialFillRule(value=0) Initial fill rule record. .INDENT 7.0 .TP .B rule A value of 1 means that the fill starts with all pixels. The value will be either 0 or 1. .UNINDENT .UNINDENT .SS VectorMaskSetting .INDENT 0.0 .TP .B class psd_tools.psd.vector.VectorMaskSetting(version: int = 3, flags: int = 0, path=None) VectorMaskSetting structure. .INDENT 7.0 .TP .B version .UNINDENT .INDENT 7.0 .TP .B path List of \fI\%Subpath\fP objects. .UNINDENT .INDENT 7.0 .TP .B property disable Flag to indicate that the vector mask is disabled. .UNINDENT .INDENT 7.0 .TP .B property invert Flag to indicate that the vector mask is inverted. .UNINDENT .INDENT 7.0 .TP .B property not_link Flag to indicate that the vector mask is not linked. .UNINDENT .UNINDENT .SS VectorStrokeContentSetting .INDENT 0.0 .TP .B class psd_tools.psd.vector.VectorStrokeContentSetting(items=_Nothing.NOTHING, name: str = \(aq\(aq, classID=b\(aqnull\(aq, key: bytes = b\(aq\ex00\ex00\ex00\ex00\(aq, version: int = 1) Dict\-like Descriptor\-based structure. See \fI\%Descriptor\fP\&. .INDENT 7.0 .TP .B key .UNINDENT .INDENT 7.0 .TP .B version .UNINDENT .UNINDENT .SS psd_tools.terminology .sp Constants for descriptor. .sp This file is automaticaly generated by tools/extract_terminology.py .SS Klass .INDENT 0.0 .TP .B class psd_tools.terminology.Klass(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Klass definitions extracted from PITerminology.h. .sp See \fI\%https://www.adobe.com/devnet/photoshop/sdk.html\fP .INDENT 7.0 .TP .B Action = b\(aqActn\(aq .UNINDENT .INDENT 7.0 .TP .B ActionSet = b\(aqASet\(aq .UNINDENT .INDENT 7.0 .TP .B Adjustment = b\(aqAdjs\(aq .UNINDENT .INDENT 7.0 .TP .B AdjustmentLayer = b\(aqAdjL\(aq .UNINDENT .INDENT 7.0 .TP .B AirbrushTool = b\(aqAbTl\(aq .UNINDENT .INDENT 7.0 .TP .B AlphaChannelOptions = b\(aqAChl\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAliasedPICTAcquire = b\(aqAntA\(aq .UNINDENT .INDENT 7.0 .TP .B Application = b\(aqcapp\(aq .UNINDENT .INDENT 7.0 .TP .B Arrowhead = b\(aqcArw\(aq .UNINDENT .INDENT 7.0 .TP .B ArtHistoryBrushTool = b\(aqABTl\(aq .UNINDENT .INDENT 7.0 .TP .B Assert = b\(aqAsrt\(aq .UNINDENT .INDENT 7.0 .TP .B AssumedProfile = b\(aqAssP\(aq .UNINDENT .INDENT 7.0 .TP .B BMPFormat = b\(aqBMPF\(aq .UNINDENT .INDENT 7.0 .TP .B BackLight = b\(aqBakL\(aq .UNINDENT .INDENT 7.0 .TP .B BackgroundEraserTool = b\(aqSETl\(aq .UNINDENT .INDENT 7.0 .TP .B BackgroundLayer = b\(aqBckL\(aq .UNINDENT .INDENT 7.0 .TP .B BevelEmboss = b\(aqebbl\(aq .UNINDENT .INDENT 7.0 .TP .B BitmapMode = b\(aqBtmM\(aq .UNINDENT .INDENT 7.0 .TP .B BlendRange = b\(aqBlnd\(aq .UNINDENT .INDENT 7.0 .TP .B BlurTool = b\(aqBlTl\(aq .UNINDENT .INDENT 7.0 .TP .B BookColor = b\(aqBkCl\(aq .UNINDENT .INDENT 7.0 .TP .B BrightnessContrast = b\(aqBrgC\(aq .UNINDENT .INDENT 7.0 .TP .B Brush = b\(aqBrsh\(aq .UNINDENT .INDENT 7.0 .TP .B BurnInTool = b\(aqBrTl\(aq .UNINDENT .INDENT 7.0 .TP .B CMYKColor = b\(aqCMYC\(aq .UNINDENT .INDENT 7.0 .TP .B CMYKColorMode = b\(aqCMYM\(aq .UNINDENT .INDENT 7.0 .TP .B CMYKSetup = b\(aqCMYS\(aq .UNINDENT .INDENT 7.0 .TP .B CachePrefs = b\(aqCchP\(aq .UNINDENT .INDENT 7.0 .TP .B Calculation = b\(aqClcl\(aq .UNINDENT .INDENT 7.0 .TP .B Channel = b\(aqChnl\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelMatrix = b\(aqChMx\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelMixer = b\(aqChnM\(aq .UNINDENT .INDENT 7.0 .TP .B ChromeFX = b\(aqChFX\(aq .UNINDENT .INDENT 7.0 .TP .B CineonFormat = b\(aqSDPX\(aq .UNINDENT .INDENT 7.0 .TP .B ClippingInfo = b\(aqClpo\(aq .UNINDENT .INDENT 7.0 .TP .B ClippingPath = b\(aqClpP\(aq .UNINDENT .INDENT 7.0 .TP .B CloneStampTool = b\(aqClTl\(aq .UNINDENT .INDENT 7.0 .TP .B Color = b\(aqClr \(aq .UNINDENT .INDENT 7.0 .TP .B ColorBalance = b\(aqClrB\(aq .UNINDENT .INDENT 7.0 .TP .B ColorCast = b\(aqColC\(aq .UNINDENT .INDENT 7.0 .TP .B ColorCorrection = b\(aqClrC\(aq .UNINDENT .INDENT 7.0 .TP .B ColorPickerPrefs = b\(aqClrk\(aq .UNINDENT .INDENT 7.0 .TP .B ColorSampler = b\(aqClSm\(aq .UNINDENT .INDENT 7.0 .TP .B ColorStop = b\(aqClrt\(aq .UNINDENT .INDENT 7.0 .TP .B Command = b\(aqCmnd\(aq .UNINDENT .INDENT 7.0 .TP .B Contour = b\(aqFxSc\(aq .UNINDENT .INDENT 7.0 .TP .B CurvePoint = b\(aqCrPt\(aq .UNINDENT .INDENT 7.0 .TP .B Curves = b\(aqCrvs\(aq .UNINDENT .INDENT 7.0 .TP .B CurvesAdjustment = b\(aqCrvA\(aq .UNINDENT .INDENT 7.0 .TP .B CustomPalette = b\(aqCstl\(aq .UNINDENT .INDENT 7.0 .TP .B CustomPhosphors = b\(aqCstP\(aq .UNINDENT .INDENT 7.0 .TP .B CustomWhitePoint = b\(aqCstW\(aq .UNINDENT .INDENT 7.0 .TP .B DicomFormat = b\(aqDicm\(aq .UNINDENT .INDENT 7.0 .TP .B DisplayPrefs = b\(aqDspP\(aq .UNINDENT .INDENT 7.0 .TP .B Document = b\(aqDcmn\(aq .UNINDENT .INDENT 7.0 .TP .B DodgeTool = b\(aqDdTl\(aq .UNINDENT .INDENT 7.0 .TP .B DropShadow = b\(aqDrSh\(aq .UNINDENT .INDENT 7.0 .TP .B DuotoneInk = b\(aqDtnI\(aq .UNINDENT .INDENT 7.0 .TP .B DuotoneMode = b\(aqDtnM\(aq .UNINDENT .INDENT 7.0 .TP .B EPSGenericFormat = b\(aqEPSG\(aq .UNINDENT .INDENT 7.0 .TP .B EPSPICTPreview = b\(aqEPSC\(aq .UNINDENT .INDENT 7.0 .TP .B EPSTIFFPreview = b\(aqEPST\(aq .UNINDENT .INDENT 7.0 .TP .B EXRf = b\(aqEXRf\(aq .UNINDENT .INDENT 7.0 .TP .B Element = b\(aqElmn\(aq .UNINDENT .INDENT 7.0 .TP .B Ellipse = b\(aqElps\(aq .UNINDENT .INDENT 7.0 .TP .B EraserTool = b\(aqErTl\(aq .UNINDENT .INDENT 7.0 .TP .B Export = b\(aqExpr\(aq .UNINDENT .INDENT 7.0 .TP .B FileInfo = b\(aqFlIn\(aq .UNINDENT .INDENT 7.0 .TP .B FileSavePrefs = b\(aqFlSv\(aq .UNINDENT .INDENT 7.0 .TP .B FillFlash = b\(aqFilF\(aq .UNINDENT .INDENT 7.0 .TP .B FlashPixFormat = b\(aqFlsP\(aq .UNINDENT .INDENT 7.0 .TP .B FontDesignAxes = b\(aqFntD\(aq .UNINDENT .INDENT 7.0 .TP .B Format = b\(aqFmt \(aq .UNINDENT .INDENT 7.0 .TP .B FrameFX = b\(aqFrFX\(aq .UNINDENT .INDENT 7.0 .TP .B GIF89aExport = b\(aqGF89\(aq .UNINDENT .INDENT 7.0 .TP .B GIFFormat = b\(aqGFFr\(aq .UNINDENT .INDENT 7.0 .TP .B GeneralPrefs = b\(aqGnrP\(aq .UNINDENT .INDENT 7.0 .TP .B GlobalAngle = b\(aqgblA\(aq .UNINDENT .INDENT 7.0 .TP .B Gradient = b\(aqGrdn\(aq .UNINDENT .INDENT 7.0 .TP .B GradientFill = b\(aqGrdf\(aq .UNINDENT .INDENT 7.0 .TP .B GradientMap = b\(aqGdMp\(aq .UNINDENT .INDENT 7.0 .TP .B GradientTool = b\(aqGrTl\(aq .UNINDENT .INDENT 7.0 .TP .B GraySetup = b\(aqGrSt\(aq .UNINDENT .INDENT 7.0 .TP .B Grayscale = b\(aqGrsc\(aq .UNINDENT .INDENT 7.0 .TP .B GrayscaleMode = b\(aqGrys\(aq .UNINDENT .INDENT 7.0 .TP .B Guide = b\(aqGd \(aq .UNINDENT .INDENT 7.0 .TP .B GuidesPrefs = b\(aqGdPr\(aq .UNINDENT .INDENT 7.0 .TP .B HSBColor = b\(aqHSBC\(aq .UNINDENT .INDENT 7.0 .TP .B HSBColorMode = b\(aqHSBM\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneScreen = b\(aqHlfS\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneSpec = b\(aqHlfp\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryBrushTool = b\(aqHBTl\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryPrefs = b\(aqCHsP\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryState = b\(aqHstS\(aq .UNINDENT .INDENT 7.0 .TP .B HueSatAdjustment = b\(aqHStA\(aq .UNINDENT .INDENT 7.0 .TP .B HueSatAdjustmentV2 = b\(aqHst2\(aq .UNINDENT .INDENT 7.0 .TP .B HueSaturation = b\(aqHStr\(aq .UNINDENT .INDENT 7.0 .TP .B IFFFormat = b\(aqIFFF\(aq .UNINDENT .INDENT 7.0 .TP .B IllustratorPathsExport = b\(aqIlsP\(aq .UNINDENT .INDENT 7.0 .TP .B ImagePoint = b\(aqImgP\(aq .UNINDENT .INDENT 7.0 .TP .B Import = b\(aqImpr\(aq .UNINDENT .INDENT 7.0 .TP .B IndexedColorMode = b\(aqIndC\(aq .UNINDENT .INDENT 7.0 .TP .B InkTransfer = b\(aqInkT\(aq .UNINDENT .INDENT 7.0 .TP .B InnerGlow = b\(aqIrGl\(aq .UNINDENT .INDENT 7.0 .TP .B InnerShadow = b\(aqIrSh\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceColor = b\(aqIClr\(aq .UNINDENT .INDENT 7.0 .TP .B Invert = b\(aqInvr\(aq .UNINDENT .INDENT 7.0 .TP .B JPEGFormat = b\(aqJPEG\(aq .UNINDENT .INDENT 7.0 .TP .B LabColor = b\(aqLbCl\(aq .UNINDENT .INDENT 7.0 .TP .B LabColorMode = b\(aqLbCM\(aq .UNINDENT .INDENT 7.0 .TP .B Layer = b\(aqLyr \(aq .UNINDENT .INDENT 7.0 .TP .B LayerEffects = b\(aqLefx\(aq .UNINDENT .INDENT 7.0 .TP .B LayerFXVisible = b\(aqlfxv\(aq .UNINDENT .INDENT 7.0 .TP .B Levels = b\(aqLvls\(aq .UNINDENT .INDENT 7.0 .TP .B LevelsAdjustment = b\(aqLvlA\(aq .UNINDENT .INDENT 7.0 .TP .B LightSource = b\(aqLghS\(aq .UNINDENT .INDENT 7.0 .TP .B Line = b\(aqLn \(aq .UNINDENT .INDENT 7.0 .TP .B MacPaintFormat = b\(aqMcPn\(aq .UNINDENT .INDENT 7.0 .TP .B MagicEraserTool = b\(aqMgEr\(aq .UNINDENT .INDENT 7.0 .TP .B MagicPoint = b\(aqMgcp\(aq .UNINDENT .INDENT 7.0 .TP .B Mask = b\(aqMsk \(aq .UNINDENT .INDENT 7.0 .TP .B MenuItem = b\(aqMn \(aq .UNINDENT .INDENT 7.0 .TP .B Mode = b\(aqMd \(aq .UNINDENT .INDENT 7.0 .TP .B MultichannelMode = b\(aqMltC\(aq .UNINDENT .INDENT 7.0 .TP .B Null = b\(aqnull\(aq .UNINDENT .INDENT 7.0 .TP .B ObsoleteTextLayer = b\(aqTxLy\(aq .UNINDENT .INDENT 7.0 .TP .B Offset = b\(aqOfst\(aq .UNINDENT .INDENT 7.0 .TP .B Opacity = b\(aqOpac\(aq .UNINDENT .INDENT 7.0 .TP .B OuterGlow = b\(aqOrGl\(aq .UNINDENT .INDENT 7.0 .TP .B PDFGenericFormat = b\(aqPDFG\(aq .UNINDENT .INDENT 7.0 .TP .B PICTFileFormat = b\(aqPICF\(aq .UNINDENT .INDENT 7.0 .TP .B PICTResourceFormat = b\(aqPICR\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFormat = b\(aqPNGF\(aq .UNINDENT .INDENT 7.0 .TP .B PageSetup = b\(aqPgSt\(aq .UNINDENT .INDENT 7.0 .TP .B PaintbrushTool = b\(aqPbTl\(aq .UNINDENT .INDENT 7.0 .TP .B Path = b\(aqPath\(aq .UNINDENT .INDENT 7.0 .TP .B PathComponent = b\(aqPaCm\(aq .UNINDENT .INDENT 7.0 .TP .B PathPoint = b\(aqPthp\(aq .UNINDENT .INDENT 7.0 .TP .B Pattern = b\(aqPttR\(aq .UNINDENT .INDENT 7.0 .TP .B PatternStampTool = b\(aqPaTl\(aq .UNINDENT .INDENT 7.0 .TP .B PencilTool = b\(aqPcTl\(aq .UNINDENT .INDENT 7.0 .TP .B Photoshop20Format = b\(aqPht2\(aq .UNINDENT .INDENT 7.0 .TP .B Photoshop35Format = b\(aqPht3\(aq .UNINDENT .INDENT 7.0 .TP .B PhotoshopDCS2Format = b\(aqPhD2\(aq .UNINDENT .INDENT 7.0 .TP .B PhotoshopDCSFormat = b\(aqPhD1\(aq .UNINDENT .INDENT 7.0 .TP .B PhotoshopEPSFormat = b\(aqPhtE\(aq .UNINDENT .INDENT 7.0 .TP .B PhotoshopPDFFormat = b\(aqPhtP\(aq .UNINDENT .INDENT 7.0 .TP .B Pixel = b\(aqPxel\(aq .UNINDENT .INDENT 7.0 .TP .B PixelPaintFormat = b\(aqPxlP\(aq .UNINDENT .INDENT 7.0 .TP .B PluginPrefs = b\(aqPlgP\(aq .UNINDENT .INDENT 7.0 .TP .B Point = b\(aqPnt \(aq .UNINDENT .INDENT 7.0 .TP .B Point16 = b\(aqPnt1\(aq .UNINDENT .INDENT 7.0 .TP .B Polygon = b\(aqPlgn\(aq .UNINDENT .INDENT 7.0 .TP .B Posterize = b\(aqPstr\(aq .UNINDENT .INDENT 7.0 .TP .B Preferences = b\(aqGnrP\(aq .UNINDENT .INDENT 7.0 .TP .B ProfileSetup = b\(aqPrfS\(aq .UNINDENT .INDENT 7.0 .TP .B Property = b\(aqPrpr\(aq .UNINDENT .INDENT 7.0 .TP .B RGBColor = b\(aqRGBC\(aq .UNINDENT .INDENT 7.0 .TP .B RGBColorMode = b\(aqRGBM\(aq .UNINDENT .INDENT 7.0 .TP .B RGBSetup = b\(aqRGBt\(aq .UNINDENT .INDENT 7.0 .TP .B Range = b\(aqRang\(aq .UNINDENT .INDENT 7.0 .TP .B RawFormat = b\(aqRw \(aq .UNINDENT .INDENT 7.0 .TP .B Rect16 = b\(aqRct1\(aq .UNINDENT .INDENT 7.0 .TP .B Rectangle = b\(aqRctn\(aq .UNINDENT .INDENT 7.0 .TP .B SaturationTool = b\(aqSrTl\(aq .UNINDENT .INDENT 7.0 .TP .B ScitexCTFormat = b\(aqSctx\(aq .UNINDENT .INDENT 7.0 .TP .B Selection = b\(aqcsel\(aq .UNINDENT .INDENT 7.0 .TP .B SelectiveColor = b\(aqSlcC\(aq .UNINDENT .INDENT 7.0 .TP .B ShapingCurve = b\(aqShpC\(aq .UNINDENT .INDENT 7.0 .TP .B SharpenTool = b\(aqShTl\(aq .UNINDENT .INDENT 7.0 .TP .B SingleColumn = b\(aqSngc\(aq .UNINDENT .INDENT 7.0 .TP .B SingleRow = b\(aqSngr\(aq .UNINDENT .INDENT 7.0 .TP .B SmudgeTool = b\(aqSmTl\(aq .UNINDENT .INDENT 7.0 .TP .B Snapshot = b\(aqSnpS\(aq .UNINDENT .INDENT 7.0 .TP .B SolidFill = b\(aqSoFi\(aq .UNINDENT .INDENT 7.0 .TP .B SpotColorChannel = b\(aqSCch\(aq .UNINDENT .INDENT 7.0 .TP .B Style = b\(aqStyC\(aq .UNINDENT .INDENT 7.0 .TP .B SubPath = b\(aqSbpl\(aq .UNINDENT .INDENT 7.0 .TP .B TIFFFormat = b\(aqTIFF\(aq .UNINDENT .INDENT 7.0 .TP .B TargaFormat = b\(aqTrgF\(aq .UNINDENT .INDENT 7.0 .TP .B TextLayer = b\(aqTxLr\(aq .UNINDENT .INDENT 7.0 .TP .B TextStyle = b\(aqTxtS\(aq .UNINDENT .INDENT 7.0 .TP .B TextStyleRange = b\(aqTxtt\(aq .UNINDENT .INDENT 7.0 .TP .B Threshold = b\(aqThrs\(aq .UNINDENT .INDENT 7.0 .TP .B Tool = b\(aqTool\(aq .UNINDENT .INDENT 7.0 .TP .B TransferPoint = b\(aqDtnP\(aq .UNINDENT .INDENT 7.0 .TP .B TransferSpec = b\(aqTrfp\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyPrefs = b\(aqTrnP\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyStop = b\(aqTrnS\(aq .UNINDENT .INDENT 7.0 .TP .B UnitsPrefs = b\(aqUntP\(aq .UNINDENT .INDENT 7.0 .TP .B UnspecifiedColor = b\(aqUnsC\(aq .UNINDENT .INDENT 7.0 .TP .B Version = b\(aqVrsn\(aq .UNINDENT .INDENT 7.0 .TP .B WebdavPrefs = b\(aqWdbv\(aq .UNINDENT .INDENT 7.0 .TP .B XYYColor = b\(aqXYYC\(aq .UNINDENT .INDENT 7.0 .TP .B _generate_next_value_(start, count, last_values) Generate the next value when not given. .sp name: the name of the member start: the initial start value or None count: the number of existing members last_values: the list of values assigned .UNINDENT .INDENT 7.0 .TP .B _member_map_ = {\(aqAction\(aq: Klass.Action, \(aqActionSet\(aq: Klass.ActionSet, \(aqAdjustment\(aq: Klass.Adjustment, \(aqAdjustmentLayer\(aq: Klass.AdjustmentLayer, \(aqAirbrushTool\(aq: Klass.AirbrushTool, \(aqAlphaChannelOptions\(aq: Klass.AlphaChannelOptions, \(aqAntiAliasedPICTAcquire\(aq: Klass.AntiAliasedPICTAcquire, \(aqApplication\(aq: Klass.Application, \(aqArrowhead\(aq: Klass.Arrowhead, \(aqArtHistoryBrushTool\(aq: Klass.ArtHistoryBrushTool, \(aqAssert\(aq: Klass.Assert, \(aqAssumedProfile\(aq: Klass.AssumedProfile, \(aqBMPFormat\(aq: Klass.BMPFormat, \(aqBackLight\(aq: Klass.BackLight, \(aqBackgroundEraserTool\(aq: Klass.BackgroundEraserTool, \(aqBackgroundLayer\(aq: Klass.BackgroundLayer, \(aqBevelEmboss\(aq: Klass.BevelEmboss, \(aqBitmapMode\(aq: Klass.BitmapMode, \(aqBlendRange\(aq: Klass.BlendRange, \(aqBlurTool\(aq: Klass.BlurTool, \(aqBookColor\(aq: Klass.BookColor, \(aqBrightnessContrast\(aq: Klass.BrightnessContrast, \(aqBrush\(aq: Klass.Brush, \(aqBurnInTool\(aq: Klass.BurnInTool, \(aqCMYKColor\(aq: Klass.CMYKColor, \(aqCMYKColorMode\(aq: Klass.CMYKColorMode, \(aqCMYKSetup\(aq: Klass.CMYKSetup, \(aqCachePrefs\(aq: Klass.CachePrefs, \(aqCalculation\(aq: Klass.Calculation, \(aqChannel\(aq: Klass.Channel, \(aqChannelMatrix\(aq: Klass.ChannelMatrix, \(aqChannelMixer\(aq: Klass.ChannelMixer, \(aqChromeFX\(aq: Klass.ChromeFX, \(aqCineonFormat\(aq: Klass.CineonFormat, \(aqClippingInfo\(aq: Klass.ClippingInfo, \(aqClippingPath\(aq: Klass.ClippingPath, \(aqCloneStampTool\(aq: Klass.CloneStampTool, \(aqColor\(aq: Klass.Color, \(aqColorBalance\(aq: Klass.ColorBalance, \(aqColorCast\(aq: Klass.ColorCast, \(aqColorCorrection\(aq: Klass.ColorCorrection, \(aqColorPickerPrefs\(aq: Klass.ColorPickerPrefs, \(aqColorSampler\(aq: Klass.ColorSampler, \(aqColorStop\(aq: Klass.ColorStop, \(aqCommand\(aq: Klass.Command, \(aqContour\(aq: Klass.Contour, \(aqCurvePoint\(aq: Klass.CurvePoint, \(aqCurves\(aq: Klass.Curves, \(aqCurvesAdjustment\(aq: Klass.CurvesAdjustment, \(aqCustomPalette\(aq: Klass.CustomPalette, \(aqCustomPhosphors\(aq: Klass.CustomPhosphors, \(aqCustomWhitePoint\(aq: Klass.CustomWhitePoint, \(aqDicomFormat\(aq: Klass.DicomFormat, \(aqDisplayPrefs\(aq: Klass.DisplayPrefs, \(aqDocument\(aq: Klass.Document, \(aqDodgeTool\(aq: Klass.DodgeTool, \(aqDropShadow\(aq: Klass.DropShadow, \(aqDuotoneInk\(aq: Klass.DuotoneInk, \(aqDuotoneMode\(aq: Klass.DuotoneMode, \(aqEPSGenericFormat\(aq: Klass.EPSGenericFormat, \(aqEPSPICTPreview\(aq: Klass.EPSPICTPreview, \(aqEPSTIFFPreview\(aq: Klass.EPSTIFFPreview, \(aqEXRf\(aq: Klass.EXRf, \(aqElement\(aq: Klass.Element, \(aqEllipse\(aq: Klass.Ellipse, \(aqEraserTool\(aq: Klass.EraserTool, \(aqExport\(aq: Klass.Export, \(aqFileInfo\(aq: Klass.FileInfo, \(aqFileSavePrefs\(aq: Klass.FileSavePrefs, \(aqFillFlash\(aq: Klass.FillFlash, \(aqFlashPixFormat\(aq: Klass.FlashPixFormat, \(aqFontDesignAxes\(aq: Klass.FontDesignAxes, \(aqFormat\(aq: Klass.Format, \(aqFrameFX\(aq: Klass.FrameFX, \(aqGIF89aExport\(aq: Klass.GIF89aExport, \(aqGIFFormat\(aq: Klass.GIFFormat, \(aqGeneralPrefs\(aq: Klass.GeneralPrefs, \(aqGlobalAngle\(aq: Klass.GlobalAngle, \(aqGradient\(aq: Klass.Gradient, \(aqGradientFill\(aq: Klass.GradientFill, \(aqGradientMap\(aq: Klass.GradientMap, \(aqGradientTool\(aq: Klass.GradientTool, \(aqGraySetup\(aq: Klass.GraySetup, \(aqGrayscale\(aq: Klass.Grayscale, \(aqGrayscaleMode\(aq: Klass.GrayscaleMode, \(aqGuide\(aq: Klass.Guide, \(aqGuidesPrefs\(aq: Klass.GuidesPrefs, \(aqHSBColor\(aq: Klass.HSBColor, \(aqHSBColorMode\(aq: Klass.HSBColorMode, \(aqHalftoneScreen\(aq: Klass.HalftoneScreen, \(aqHalftoneSpec\(aq: Klass.HalftoneSpec, \(aqHistoryBrushTool\(aq: Klass.HistoryBrushTool, \(aqHistoryPrefs\(aq: Klass.HistoryPrefs, \(aqHistoryState\(aq: Klass.HistoryState, \(aqHueSatAdjustment\(aq: Klass.HueSatAdjustment, \(aqHueSatAdjustmentV2\(aq: Klass.HueSatAdjustmentV2, \(aqHueSaturation\(aq: Klass.HueSaturation, \(aqIFFFormat\(aq: Klass.IFFFormat, \(aqIllustratorPathsExport\(aq: Klass.IllustratorPathsExport, \(aqImagePoint\(aq: Klass.ImagePoint, \(aqImport\(aq: Klass.Import, \(aqIndexedColorMode\(aq: Klass.IndexedColorMode, \(aqInkTransfer\(aq: Klass.InkTransfer, \(aqInnerGlow\(aq: Klass.InnerGlow, \(aqInnerShadow\(aq: Klass.InnerShadow, \(aqInterfaceColor\(aq: Klass.InterfaceColor, \(aqInvert\(aq: Klass.Invert, \(aqJPEGFormat\(aq: Klass.JPEGFormat, \(aqLabColor\(aq: Klass.LabColor, \(aqLabColorMode\(aq: Klass.LabColorMode, \(aqLayer\(aq: Klass.Layer, \(aqLayerEffects\(aq: Klass.LayerEffects, \(aqLayerFXVisible\(aq: Klass.LayerFXVisible, \(aqLevels\(aq: Klass.Levels, \(aqLevelsAdjustment\(aq: Klass.LevelsAdjustment, \(aqLightSource\(aq: Klass.LightSource, \(aqLine\(aq: Klass.Line, \(aqMacPaintFormat\(aq: Klass.MacPaintFormat, \(aqMagicEraserTool\(aq: Klass.MagicEraserTool, \(aqMagicPoint\(aq: Klass.MagicPoint, \(aqMask\(aq: Klass.Mask, \(aqMenuItem\(aq: Klass.MenuItem, \(aqMode\(aq: Klass.Mode, \(aqMultichannelMode\(aq: Klass.MultichannelMode, \(aqNull\(aq: Klass.Null, \(aqObsoleteTextLayer\(aq: Klass.ObsoleteTextLayer, \(aqOffset\(aq: Klass.Offset, \(aqOpacity\(aq: Klass.Opacity, \(aqOuterGlow\(aq: Klass.OuterGlow, \(aqPDFGenericFormat\(aq: Klass.PDFGenericFormat, \(aqPICTFileFormat\(aq: Klass.PICTFileFormat, \(aqPICTResourceFormat\(aq: Klass.PICTResourceFormat, \(aqPNGFormat\(aq: Klass.PNGFormat, \(aqPageSetup\(aq: Klass.PageSetup, \(aqPaintbrushTool\(aq: Klass.PaintbrushTool, \(aqPath\(aq: Klass.Path, \(aqPathComponent\(aq: Klass.PathComponent, \(aqPathPoint\(aq: Klass.PathPoint, \(aqPattern\(aq: Klass.Pattern, \(aqPatternStampTool\(aq: Klass.PatternStampTool, \(aqPencilTool\(aq: Klass.PencilTool, \(aqPhotoshop20Format\(aq: Klass.Photoshop20Format, \(aqPhotoshop35Format\(aq: Klass.Photoshop35Format, \(aqPhotoshopDCS2Format\(aq: Klass.PhotoshopDCS2Format, \(aqPhotoshopDCSFormat\(aq: Klass.PhotoshopDCSFormat, \(aqPhotoshopEPSFormat\(aq: Klass.PhotoshopEPSFormat, \(aqPhotoshopPDFFormat\(aq: Klass.PhotoshopPDFFormat, \(aqPixel\(aq: Klass.Pixel, \(aqPixelPaintFormat\(aq: Klass.PixelPaintFormat, \(aqPluginPrefs\(aq: Klass.PluginPrefs, \(aqPoint\(aq: Klass.Point, \(aqPoint16\(aq: Klass.Point16, \(aqPolygon\(aq: Klass.Polygon, \(aqPosterize\(aq: Klass.Posterize, \(aqPreferences\(aq: Klass.GeneralPrefs, \(aqProfileSetup\(aq: Klass.ProfileSetup, \(aqProperty\(aq: Klass.Property, \(aqRGBColor\(aq: Klass.RGBColor, \(aqRGBColorMode\(aq: Klass.RGBColorMode, \(aqRGBSetup\(aq: Klass.RGBSetup, \(aqRange\(aq: Klass.Range, \(aqRawFormat\(aq: Klass.RawFormat, \(aqRect16\(aq: Klass.Rect16, \(aqRectangle\(aq: Klass.Rectangle, \(aqSaturationTool\(aq: Klass.SaturationTool, \(aqScitexCTFormat\(aq: Klass.ScitexCTFormat, \(aqSelection\(aq: Klass.Selection, \(aqSelectiveColor\(aq: Klass.SelectiveColor, \(aqShapingCurve\(aq: Klass.ShapingCurve, \(aqSharpenTool\(aq: Klass.SharpenTool, \(aqSingleColumn\(aq: Klass.SingleColumn, \(aqSingleRow\(aq: Klass.SingleRow, \(aqSmudgeTool\(aq: Klass.SmudgeTool, \(aqSnapshot\(aq: Klass.Snapshot, \(aqSolidFill\(aq: Klass.SolidFill, \(aqSpotColorChannel\(aq: Klass.SpotColorChannel, \(aqStyle\(aq: Klass.Style, \(aqSubPath\(aq: Klass.SubPath, \(aqTIFFFormat\(aq: Klass.TIFFFormat, \(aqTargaFormat\(aq: Klass.TargaFormat, \(aqTextLayer\(aq: Klass.TextLayer, \(aqTextStyle\(aq: Klass.TextStyle, \(aqTextStyleRange\(aq: Klass.TextStyleRange, \(aqThreshold\(aq: Klass.Threshold, \(aqTool\(aq: Klass.Tool, \(aqTransferPoint\(aq: Klass.TransferPoint, \(aqTransferSpec\(aq: Klass.TransferSpec, \(aqTransparencyPrefs\(aq: Klass.TransparencyPrefs, \(aqTransparencyStop\(aq: Klass.TransparencyStop, \(aqUnitsPrefs\(aq: Klass.UnitsPrefs, \(aqUnspecifiedColor\(aq: Klass.UnspecifiedColor, \(aqVersion\(aq: Klass.Version, \(aqWebdavPrefs\(aq: Klass.WebdavPrefs, \(aqXYYColor\(aq: Klass.XYYColor} .UNINDENT .INDENT 7.0 .TP .B _member_names_ = [\(aqAction\(aq, \(aqActionSet\(aq, \(aqAdjustment\(aq, \(aqAdjustmentLayer\(aq, \(aqAirbrushTool\(aq, \(aqAlphaChannelOptions\(aq, \(aqAntiAliasedPICTAcquire\(aq, \(aqApplication\(aq, \(aqArrowhead\(aq, \(aqAssert\(aq, \(aqAssumedProfile\(aq, \(aqBMPFormat\(aq, \(aqBackgroundLayer\(aq, \(aqBevelEmboss\(aq, \(aqBitmapMode\(aq, \(aqBlendRange\(aq, \(aqBlurTool\(aq, \(aqBookColor\(aq, \(aqBrightnessContrast\(aq, \(aqBrush\(aq, \(aqBurnInTool\(aq, \(aqCachePrefs\(aq, \(aqCMYKColor\(aq, \(aqCMYKColorMode\(aq, \(aqCMYKSetup\(aq, \(aqCalculation\(aq, \(aqChannel\(aq, \(aqChannelMatrix\(aq, \(aqChannelMixer\(aq, \(aqCineonFormat\(aq, \(aqClippingInfo\(aq, \(aqClippingPath\(aq, \(aqCloneStampTool\(aq, \(aqColor\(aq, \(aqColorBalance\(aq, \(aqColorCorrection\(aq, \(aqColorPickerPrefs\(aq, \(aqColorSampler\(aq, \(aqColorStop\(aq, \(aqCommand\(aq, \(aqCurves\(aq, \(aqCurvePoint\(aq, \(aqCustomPalette\(aq, \(aqCurvesAdjustment\(aq, \(aqCustomPhosphors\(aq, \(aqCustomWhitePoint\(aq, \(aqDicomFormat\(aq, \(aqDisplayPrefs\(aq, \(aqDocument\(aq, \(aqDodgeTool\(aq, \(aqDropShadow\(aq, \(aqDuotoneInk\(aq, \(aqDuotoneMode\(aq, \(aqEPSGenericFormat\(aq, \(aqEPSPICTPreview\(aq, \(aqEPSTIFFPreview\(aq, \(aqElement\(aq, \(aqEllipse\(aq, \(aqEraserTool\(aq, \(aqExport\(aq, \(aqFileInfo\(aq, \(aqFileSavePrefs\(aq, \(aqFlashPixFormat\(aq, \(aqFontDesignAxes\(aq, \(aqFormat\(aq, \(aqFrameFX\(aq, \(aqContour\(aq, \(aqGeneralPrefs\(aq, \(aqGIF89aExport\(aq, \(aqGIFFormat\(aq, \(aqGlobalAngle\(aq, \(aqGradient\(aq, \(aqGradientFill\(aq, \(aqGradientMap\(aq, \(aqGradientTool\(aq, \(aqGraySetup\(aq, \(aqGrayscale\(aq, \(aqGrayscaleMode\(aq, \(aqGuide\(aq, \(aqGuidesPrefs\(aq, \(aqHalftoneScreen\(aq, \(aqHalftoneSpec\(aq, \(aqHSBColor\(aq, \(aqHSBColorMode\(aq, \(aqHistoryBrushTool\(aq, \(aqHistoryPrefs\(aq, \(aqHistoryState\(aq, \(aqHueSatAdjustment\(aq, \(aqHueSatAdjustmentV2\(aq, \(aqHueSaturation\(aq, \(aqIFFFormat\(aq, \(aqIllustratorPathsExport\(aq, \(aqImagePoint\(aq, \(aqImport\(aq, \(aqIndexedColorMode\(aq, \(aqInkTransfer\(aq, \(aqInnerGlow\(aq, \(aqInnerShadow\(aq, \(aqInterfaceColor\(aq, \(aqInvert\(aq, \(aqJPEGFormat\(aq, \(aqLabColor\(aq, \(aqLabColorMode\(aq, \(aqLayer\(aq, \(aqLayerEffects\(aq, \(aqLayerFXVisible\(aq, \(aqLevels\(aq, \(aqLevelsAdjustment\(aq, \(aqLightSource\(aq, \(aqLine\(aq, \(aqMacPaintFormat\(aq, \(aqMagicEraserTool\(aq, \(aqMagicPoint\(aq, \(aqMask\(aq, \(aqMenuItem\(aq, \(aqMode\(aq, \(aqMultichannelMode\(aq, \(aqObsoleteTextLayer\(aq, \(aqNull\(aq, \(aqOffset\(aq, \(aqOpacity\(aq, \(aqOuterGlow\(aq, \(aqPDFGenericFormat\(aq, \(aqPICTFileFormat\(aq, \(aqPICTResourceFormat\(aq, \(aqPNGFormat\(aq, \(aqPageSetup\(aq, \(aqPaintbrushTool\(aq, \(aqPath\(aq, \(aqPathComponent\(aq, \(aqPathPoint\(aq, \(aqPattern\(aq, \(aqPatternStampTool\(aq, \(aqPencilTool\(aq, \(aqPhotoshop20Format\(aq, \(aqPhotoshop35Format\(aq, \(aqPhotoshopDCS2Format\(aq, \(aqPhotoshopDCSFormat\(aq, \(aqPhotoshopEPSFormat\(aq, \(aqPhotoshopPDFFormat\(aq, \(aqPixel\(aq, \(aqPixelPaintFormat\(aq, \(aqPluginPrefs\(aq, \(aqPoint\(aq, \(aqPoint16\(aq, \(aqPolygon\(aq, \(aqPosterize\(aq, \(aqProfileSetup\(aq, \(aqProperty\(aq, \(aqRange\(aq, \(aqRect16\(aq, \(aqRGBColor\(aq, \(aqRGBColorMode\(aq, \(aqRGBSetup\(aq, \(aqRawFormat\(aq, \(aqRectangle\(aq, \(aqSaturationTool\(aq, \(aqScitexCTFormat\(aq, \(aqSelection\(aq, \(aqSelectiveColor\(aq, \(aqShapingCurve\(aq, \(aqSharpenTool\(aq, \(aqSingleColumn\(aq, \(aqSingleRow\(aq, \(aqBackgroundEraserTool\(aq, \(aqSolidFill\(aq, \(aqArtHistoryBrushTool\(aq, \(aqSmudgeTool\(aq, \(aqSnapshot\(aq, \(aqSpotColorChannel\(aq, \(aqStyle\(aq, \(aqSubPath\(aq, \(aqTIFFFormat\(aq, \(aqTargaFormat\(aq, \(aqTextLayer\(aq, \(aqTextStyle\(aq, \(aqTextStyleRange\(aq, \(aqThreshold\(aq, \(aqTool\(aq, \(aqTransferSpec\(aq, \(aqTransferPoint\(aq, \(aqTransparencyPrefs\(aq, \(aqTransparencyStop\(aq, \(aqUnitsPrefs\(aq, \(aqUnspecifiedColor\(aq, \(aqVersion\(aq, \(aqWebdavPrefs\(aq, \(aqXYYColor\(aq, \(aqChromeFX\(aq, \(aqBackLight\(aq, \(aqFillFlash\(aq, \(aqColorCast\(aq, \(aqEXRf\(aq] .UNINDENT .INDENT 7.0 .TP .B _member_type_ alias of \fBbytes\fP .UNINDENT .INDENT 7.0 .TP .B _new_member_(**kwargs) Create and return a new object. See help(type) for accurate signature. .UNINDENT .INDENT 7.0 .TP .B _unhashable_values_ = [] .UNINDENT .INDENT 7.0 .TP .B _use_args_ = True .UNINDENT .INDENT 7.0 .TP .B _value2member_map_ = {b\(aqABTl\(aq: Klass.ArtHistoryBrushTool, b\(aqAChl\(aq: Klass.AlphaChannelOptions, b\(aqASet\(aq: Klass.ActionSet, b\(aqAbTl\(aq: Klass.AirbrushTool, b\(aqActn\(aq: Klass.Action, b\(aqAdjL\(aq: Klass.AdjustmentLayer, b\(aqAdjs\(aq: Klass.Adjustment, b\(aqAntA\(aq: Klass.AntiAliasedPICTAcquire, b\(aqAsrt\(aq: Klass.Assert, b\(aqAssP\(aq: Klass.AssumedProfile, b\(aqBMPF\(aq: Klass.BMPFormat, b\(aqBakL\(aq: Klass.BackLight, b\(aqBckL\(aq: Klass.BackgroundLayer, b\(aqBkCl\(aq: Klass.BookColor, b\(aqBlTl\(aq: Klass.BlurTool, b\(aqBlnd\(aq: Klass.BlendRange, b\(aqBrTl\(aq: Klass.BurnInTool, b\(aqBrgC\(aq: Klass.BrightnessContrast, b\(aqBrsh\(aq: Klass.Brush, b\(aqBtmM\(aq: Klass.BitmapMode, b\(aqCHsP\(aq: Klass.HistoryPrefs, b\(aqCMYC\(aq: Klass.CMYKColor, b\(aqCMYM\(aq: Klass.CMYKColorMode, b\(aqCMYS\(aq: Klass.CMYKSetup, b\(aqCchP\(aq: Klass.CachePrefs, b\(aqChFX\(aq: Klass.ChromeFX, b\(aqChMx\(aq: Klass.ChannelMatrix, b\(aqChnM\(aq: Klass.ChannelMixer, b\(aqChnl\(aq: Klass.Channel, b\(aqClSm\(aq: Klass.ColorSampler, b\(aqClTl\(aq: Klass.CloneStampTool, b\(aqClcl\(aq: Klass.Calculation, b\(aqClpP\(aq: Klass.ClippingPath, b\(aqClpo\(aq: Klass.ClippingInfo, b\(aqClr \(aq: Klass.Color, b\(aqClrB\(aq: Klass.ColorBalance, b\(aqClrC\(aq: Klass.ColorCorrection, b\(aqClrk\(aq: Klass.ColorPickerPrefs, b\(aqClrt\(aq: Klass.ColorStop, b\(aqCmnd\(aq: Klass.Command, b\(aqColC\(aq: Klass.ColorCast, b\(aqCrPt\(aq: Klass.CurvePoint, b\(aqCrvA\(aq: Klass.CurvesAdjustment, b\(aqCrvs\(aq: Klass.Curves, b\(aqCstP\(aq: Klass.CustomPhosphors, b\(aqCstW\(aq: Klass.CustomWhitePoint, b\(aqCstl\(aq: Klass.CustomPalette, b\(aqDcmn\(aq: Klass.Document, b\(aqDdTl\(aq: Klass.DodgeTool, b\(aqDicm\(aq: Klass.DicomFormat, b\(aqDrSh\(aq: Klass.DropShadow, b\(aqDspP\(aq: Klass.DisplayPrefs, b\(aqDtnI\(aq: Klass.DuotoneInk, b\(aqDtnM\(aq: Klass.DuotoneMode, b\(aqDtnP\(aq: Klass.TransferPoint, b\(aqEPSC\(aq: Klass.EPSPICTPreview, b\(aqEPSG\(aq: Klass.EPSGenericFormat, b\(aqEPST\(aq: Klass.EPSTIFFPreview, b\(aqEXRf\(aq: Klass.EXRf, b\(aqElmn\(aq: Klass.Element, b\(aqElps\(aq: Klass.Ellipse, b\(aqErTl\(aq: Klass.EraserTool, b\(aqExpr\(aq: Klass.Export, b\(aqFilF\(aq: Klass.FillFlash, b\(aqFlIn\(aq: Klass.FileInfo, b\(aqFlSv\(aq: Klass.FileSavePrefs, b\(aqFlsP\(aq: Klass.FlashPixFormat, b\(aqFmt \(aq: Klass.Format, b\(aqFntD\(aq: Klass.FontDesignAxes, b\(aqFrFX\(aq: Klass.FrameFX, b\(aqFxSc\(aq: Klass.Contour, b\(aqGF89\(aq: Klass.GIF89aExport, b\(aqGFFr\(aq: Klass.GIFFormat, b\(aqGd \(aq: Klass.Guide, b\(aqGdMp\(aq: Klass.GradientMap, b\(aqGdPr\(aq: Klass.GuidesPrefs, b\(aqGnrP\(aq: Klass.GeneralPrefs, b\(aqGrSt\(aq: Klass.GraySetup, b\(aqGrTl\(aq: Klass.GradientTool, b\(aqGrdf\(aq: Klass.GradientFill, b\(aqGrdn\(aq: Klass.Gradient, b\(aqGrsc\(aq: Klass.Grayscale, b\(aqGrys\(aq: Klass.GrayscaleMode, b\(aqHBTl\(aq: Klass.HistoryBrushTool, b\(aqHSBC\(aq: Klass.HSBColor, b\(aqHSBM\(aq: Klass.HSBColorMode, b\(aqHStA\(aq: Klass.HueSatAdjustment, b\(aqHStr\(aq: Klass.HueSaturation, b\(aqHlfS\(aq: Klass.HalftoneScreen, b\(aqHlfp\(aq: Klass.HalftoneSpec, b\(aqHst2\(aq: Klass.HueSatAdjustmentV2, b\(aqHstS\(aq: Klass.HistoryState, b\(aqIClr\(aq: Klass.InterfaceColor, b\(aqIFFF\(aq: Klass.IFFFormat, b\(aqIlsP\(aq: Klass.IllustratorPathsExport, b\(aqImgP\(aq: Klass.ImagePoint, b\(aqImpr\(aq: Klass.Import, b\(aqIndC\(aq: Klass.IndexedColorMode, b\(aqInkT\(aq: Klass.InkTransfer, b\(aqInvr\(aq: Klass.Invert, b\(aqIrGl\(aq: Klass.InnerGlow, b\(aqIrSh\(aq: Klass.InnerShadow, b\(aqJPEG\(aq: Klass.JPEGFormat, b\(aqLbCM\(aq: Klass.LabColorMode, b\(aqLbCl\(aq: Klass.LabColor, b\(aqLefx\(aq: Klass.LayerEffects, b\(aqLghS\(aq: Klass.LightSource, b\(aqLn \(aq: Klass.Line, b\(aqLvlA\(aq: Klass.LevelsAdjustment, b\(aqLvls\(aq: Klass.Levels, b\(aqLyr \(aq: Klass.Layer, b\(aqMcPn\(aq: Klass.MacPaintFormat, b\(aqMd \(aq: Klass.Mode, b\(aqMgEr\(aq: Klass.MagicEraserTool, b\(aqMgcp\(aq: Klass.MagicPoint, b\(aqMltC\(aq: Klass.MultichannelMode, b\(aqMn \(aq: Klass.MenuItem, b\(aqMsk \(aq: Klass.Mask, b\(aqOfst\(aq: Klass.Offset, b\(aqOpac\(aq: Klass.Opacity, b\(aqOrGl\(aq: Klass.OuterGlow, b\(aqPDFG\(aq: Klass.PDFGenericFormat, b\(aqPICF\(aq: Klass.PICTFileFormat, b\(aqPICR\(aq: Klass.PICTResourceFormat, b\(aqPNGF\(aq: Klass.PNGFormat, b\(aqPaCm\(aq: Klass.PathComponent, b\(aqPaTl\(aq: Klass.PatternStampTool, b\(aqPath\(aq: Klass.Path, b\(aqPbTl\(aq: Klass.PaintbrushTool, b\(aqPcTl\(aq: Klass.PencilTool, b\(aqPgSt\(aq: Klass.PageSetup, b\(aqPhD1\(aq: Klass.PhotoshopDCSFormat, b\(aqPhD2\(aq: Klass.PhotoshopDCS2Format, b\(aqPht2\(aq: Klass.Photoshop20Format, b\(aqPht3\(aq: Klass.Photoshop35Format, b\(aqPhtE\(aq: Klass.PhotoshopEPSFormat, b\(aqPhtP\(aq: Klass.PhotoshopPDFFormat, b\(aqPlgP\(aq: Klass.PluginPrefs, b\(aqPlgn\(aq: Klass.Polygon, b\(aqPnt \(aq: Klass.Point, b\(aqPnt1\(aq: Klass.Point16, b\(aqPrfS\(aq: Klass.ProfileSetup, b\(aqPrpr\(aq: Klass.Property, b\(aqPstr\(aq: Klass.Posterize, b\(aqPthp\(aq: Klass.PathPoint, b\(aqPttR\(aq: Klass.Pattern, b\(aqPxel\(aq: Klass.Pixel, b\(aqPxlP\(aq: Klass.PixelPaintFormat, b\(aqRGBC\(aq: Klass.RGBColor, b\(aqRGBM\(aq: Klass.RGBColorMode, b\(aqRGBt\(aq: Klass.RGBSetup, b\(aqRang\(aq: Klass.Range, b\(aqRct1\(aq: Klass.Rect16, b\(aqRctn\(aq: Klass.Rectangle, b\(aqRw \(aq: Klass.RawFormat, b\(aqSCch\(aq: Klass.SpotColorChannel, b\(aqSDPX\(aq: Klass.CineonFormat, b\(aqSETl\(aq: Klass.BackgroundEraserTool, b\(aqSbpl\(aq: Klass.SubPath, b\(aqSctx\(aq: Klass.ScitexCTFormat, b\(aqShTl\(aq: Klass.SharpenTool, b\(aqShpC\(aq: Klass.ShapingCurve, b\(aqSlcC\(aq: Klass.SelectiveColor, b\(aqSmTl\(aq: Klass.SmudgeTool, b\(aqSngc\(aq: Klass.SingleColumn, b\(aqSngr\(aq: Klass.SingleRow, b\(aqSnpS\(aq: Klass.Snapshot, b\(aqSoFi\(aq: Klass.SolidFill, b\(aqSrTl\(aq: Klass.SaturationTool, b\(aqStyC\(aq: Klass.Style, b\(aqTIFF\(aq: Klass.TIFFFormat, b\(aqThrs\(aq: Klass.Threshold, b\(aqTool\(aq: Klass.Tool, b\(aqTrfp\(aq: Klass.TransferSpec, b\(aqTrgF\(aq: Klass.TargaFormat, b\(aqTrnP\(aq: Klass.TransparencyPrefs, b\(aqTrnS\(aq: Klass.TransparencyStop, b\(aqTxLr\(aq: Klass.TextLayer, b\(aqTxLy\(aq: Klass.ObsoleteTextLayer, b\(aqTxtS\(aq: Klass.TextStyle, b\(aqTxtt\(aq: Klass.TextStyleRange, b\(aqUnsC\(aq: Klass.UnspecifiedColor, b\(aqUntP\(aq: Klass.UnitsPrefs, b\(aqVrsn\(aq: Klass.Version, b\(aqWdbv\(aq: Klass.WebdavPrefs, b\(aqXYYC\(aq: Klass.XYYColor, b\(aqcArw\(aq: Klass.Arrowhead, b\(aqcapp\(aq: Klass.Application, b\(aqcsel\(aq: Klass.Selection, b\(aqebbl\(aq: Klass.BevelEmboss, b\(aqgblA\(aq: Klass.GlobalAngle, b\(aqlfxv\(aq: Klass.LayerFXVisible, b\(aqnull\(aq: Klass.Null} .UNINDENT .INDENT 7.0 .TP .B _value_repr_() Return repr(self). .UNINDENT .UNINDENT .SS Enum .INDENT 0.0 .TP .B class psd_tools.terminology.Enum(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Enum definitions extracted from PITerminology.h. .sp See \fI\%https://www.adobe.com/devnet/photoshop/sdk.html\fP .INDENT 7.0 .TP .B A = b\(aqA \(aq .UNINDENT .INDENT 7.0 .TP .B ADSBottoms = b\(aqAdBt\(aq .UNINDENT .INDENT 7.0 .TP .B ADSCentersH = b\(aqAdCH\(aq .UNINDENT .INDENT 7.0 .TP .B ADSCentersV = b\(aqAdCV\(aq .UNINDENT .INDENT 7.0 .TP .B ADSHorizontal = b\(aqAdHr\(aq .UNINDENT .INDENT 7.0 .TP .B ADSLefts = b\(aqAdLf\(aq .UNINDENT .INDENT 7.0 .TP .B ADSRights = b\(aqAdRg\(aq .UNINDENT .INDENT 7.0 .TP .B ADSTops = b\(aqAdTp\(aq .UNINDENT .INDENT 7.0 .TP .B ADSVertical = b\(aqAdVr\(aq .UNINDENT .INDENT 7.0 .TP .B ASCII = b\(aqASCI\(aq .UNINDENT .INDENT 7.0 .TP .B AboutApp = b\(aqAbAp\(aq .UNINDENT .INDENT 7.0 .TP .B AbsColorimetric = b\(aqAClr\(aq .UNINDENT .INDENT 7.0 .TP .B Absolute = b\(aqAbsl\(aq .UNINDENT .INDENT 7.0 .TP .B ActualPixels = b\(aqActP\(aq .UNINDENT .INDENT 7.0 .TP .B Adaptive = b\(aqAdpt\(aq .UNINDENT .INDENT 7.0 .TP .B Add = b\(aqAdd \(aq .UNINDENT .INDENT 7.0 .TP .B AdjustmentOptions = b\(aqAdjO\(aq .UNINDENT .INDENT 7.0 .TP .B AdobeRGB1998 = b\(aqSMPT\(aq .UNINDENT .INDENT 7.0 .TP .B AirbrushEraser = b\(aqArbs\(aq .UNINDENT .INDENT 7.0 .TP .B All = b\(aqAl \(aq .UNINDENT .INDENT 7.0 .TP .B Amiga = b\(aqAmga\(aq .UNINDENT .INDENT 7.0 .TP .B AmountHigh = b\(aqamHi\(aq .UNINDENT .INDENT 7.0 .TP .B AmountLow = b\(aqamLo\(aq .UNINDENT .INDENT 7.0 .TP .B AmountMedium = b\(aqamMd\(aq .UNINDENT .INDENT 7.0 .TP .B Angle = b\(aqAngl\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAliasCrisp = b\(aqAnCr\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAliasHigh = b\(aqAnHi\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAliasLow = b\(aqAnLo\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAliasMedium = b\(aqAnMd\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAliasNone = b\(aqAnno\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAliasSmooth = b\(aqAnSm\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAliasStrong = b\(aqAnSt\(aq .UNINDENT .INDENT 7.0 .TP .B Any = b\(aqAny \(aq .UNINDENT .INDENT 7.0 .TP .B AppleRGB = b\(aqAppR\(aq .UNINDENT .INDENT 7.0 .TP .B ApplyImage = b\(aqAplI\(aq .UNINDENT .INDENT 7.0 .TP .B AroundCenter = b\(aqArnC\(aq .UNINDENT .INDENT 7.0 .TP .B Arrange = b\(aqArng\(aq .UNINDENT .INDENT 7.0 .TP .B Ask = b\(aqAsk \(aq .UNINDENT .INDENT 7.0 .TP .B AskWhenOpening = b\(aqAskW\(aq .UNINDENT .INDENT 7.0 .TP .B B = b\(aqB \(aq .UNINDENT .INDENT 7.0 .TP .B Back = b\(aqBack\(aq .UNINDENT .INDENT 7.0 .TP .B Background = b\(aqBckg\(aq .UNINDENT .INDENT 7.0 .TP .B BackgroundColor = b\(aqBckC\(aq .UNINDENT .INDENT 7.0 .TP .B Backward = b\(aqBckw\(aq .UNINDENT .INDENT 7.0 .TP .B Behind = b\(aqBhnd\(aq .UNINDENT .INDENT 7.0 .TP .B Best = b\(aqBst \(aq .UNINDENT .INDENT 7.0 .TP .B Better = b\(aqDthb\(aq .UNINDENT .INDENT 7.0 .TP .B Bicubic = b\(aqBcbc\(aq .UNINDENT .INDENT 7.0 .TP .B Bilinear = b\(aqBlnr\(aq .UNINDENT .INDENT 7.0 .TP .B Binary = b\(aqBnry\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepth1 = b\(aqBD1 \(aq .UNINDENT .INDENT 7.0 .TP .B BitDepth16 = b\(aqBD16\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepth24 = b\(aqBD24\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepth32 = b\(aqBD32\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepth4 = b\(aqBD4 \(aq .UNINDENT .INDENT 7.0 .TP .B BitDepth8 = b\(aqBD8 \(aq .UNINDENT .INDENT 7.0 .TP .B BitDepthA1R5G5B5 = b\(aq1565\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepthA4R4G4B4 = b\(aq4444\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepthR5G6B5 = b\(aqx565\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepthX4R4G4B4 = b\(aqx444\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepthX8R8G8B8 = b\(aqx888\(aq .UNINDENT .INDENT 7.0 .TP .B Bitmap = b\(aqBtmp\(aq .UNINDENT .INDENT 7.0 .TP .B Black = b\(aqBlck\(aq .UNINDENT .INDENT 7.0 .TP .B BlackAndWhite = b\(aqBanW\(aq .UNINDENT .INDENT 7.0 .TP .B BlackBody = b\(aqBlcB\(aq .UNINDENT .INDENT 7.0 .TP .B Blacks = b\(aqBlks\(aq .UNINDENT .INDENT 7.0 .TP .B Blast = b\(aqBlst\(aq .UNINDENT .INDENT 7.0 .TP .B BlockEraser = b\(aqBlk \(aq .UNINDENT .INDENT 7.0 .TP .B Blocks = b\(aqBlks\(aq .UNINDENT .INDENT 7.0 .TP .B Blue = b\(aqBl \(aq .UNINDENT .INDENT 7.0 .TP .B Blues = b\(aqBls \(aq .UNINDENT .INDENT 7.0 .TP .B Bottom = b\(aqBttm\(aq .UNINDENT .INDENT 7.0 .TP .B BrushDarkRough = b\(aqBrDR\(aq .UNINDENT .INDENT 7.0 .TP .B BrushLightRough = b\(aqBrsL\(aq .UNINDENT .INDENT 7.0 .TP .B BrushSimple = b\(aqBrSm\(aq .UNINDENT .INDENT 7.0 .TP .B BrushSize = b\(aqBrsS\(aq .UNINDENT .INDENT 7.0 .TP .B BrushSparkle = b\(aqBrSp\(aq .UNINDENT .INDENT 7.0 .TP .B BrushWideBlurry = b\(aqBrbW\(aq .UNINDENT .INDENT 7.0 .TP .B BrushWideSharp = b\(aqBrsW\(aq .UNINDENT .INDENT 7.0 .TP .B BrushesAppend = b\(aqBrsA\(aq .UNINDENT .INDENT 7.0 .TP .B BrushesDefine = b\(aqBrsD\(aq .UNINDENT .INDENT 7.0 .TP .B BrushesDelete = b\(aqBrsf\(aq .UNINDENT .INDENT 7.0 .TP .B BrushesLoad = b\(aqBrsd\(aq .UNINDENT .INDENT 7.0 .TP .B BrushesNew = b\(aqBrsN\(aq .UNINDENT .INDENT 7.0 .TP .B BrushesOptions = b\(aqBrsO\(aq .UNINDENT .INDENT 7.0 .TP .B BrushesReset = b\(aqBrsR\(aq .UNINDENT .INDENT 7.0 .TP .B BrushesSave = b\(aqBrsv\(aq .UNINDENT .INDENT 7.0 .TP .B Builtin = b\(aqBltn\(aq .UNINDENT .INDENT 7.0 .TP .B BurnInH = b\(aqBrnH\(aq .UNINDENT .INDENT 7.0 .TP .B BurnInM = b\(aqBrnM\(aq .UNINDENT .INDENT 7.0 .TP .B BurnInS = b\(aqBrnS\(aq .UNINDENT .INDENT 7.0 .TP .B ButtonMode = b\(aqBtnM\(aq .UNINDENT .INDENT 7.0 .TP .B CIERGB = b\(aqCRGB\(aq .UNINDENT .INDENT 7.0 .TP .B CMYK = b\(aqCMYK\(aq .UNINDENT .INDENT 7.0 .TP .B CMYK64 = b\(aqCMSF\(aq .UNINDENT .INDENT 7.0 .TP .B CMYKColor = b\(aqECMY\(aq .UNINDENT .INDENT 7.0 .TP .B Calculations = b\(aqClcl\(aq .UNINDENT .INDENT 7.0 .TP .B Cascade = b\(aqCscd\(aq .UNINDENT .INDENT 7.0 .TP .B Center = b\(aqCntr\(aq .UNINDENT .INDENT 7.0 .TP .B CenterGlow = b\(aqSrcC\(aq .UNINDENT .INDENT 7.0 .TP .B CenteredFrame = b\(aqCtrF\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelOptions = b\(aqChnO\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelsPaletteOptions = b\(aqChnP\(aq .UNINDENT .INDENT 7.0 .TP .B CheckerboardLarge = b\(aqChcL\(aq .UNINDENT .INDENT 7.0 .TP .B CheckerboardMedium = b\(aqChcM\(aq .UNINDENT .INDENT 7.0 .TP .B CheckerboardNone = b\(aqChcN\(aq .UNINDENT .INDENT 7.0 .TP .B CheckerboardSmall = b\(aqChcS\(aq .UNINDENT .INDENT 7.0 .TP .B Clear = b\(aqClar\(aq .UNINDENT .INDENT 7.0 .TP .B ClearGuides = b\(aqClrG\(aq .UNINDENT .INDENT 7.0 .TP .B Clipboard = b\(aqClpb\(aq .UNINDENT .INDENT 7.0 .TP .B ClippingPath = b\(aqClpP\(aq .UNINDENT .INDENT 7.0 .TP .B CloseAll = b\(aqClsA\(aq .UNINDENT .INDENT 7.0 .TP .B CoarseDots = b\(aqCrsD\(aq .UNINDENT .INDENT 7.0 .TP .B Color = b\(aqClr \(aq .UNINDENT .INDENT 7.0 .TP .B ColorBurn = b\(aqCBrn\(aq .UNINDENT .INDENT 7.0 .TP .B ColorDodge = b\(aqCDdg\(aq .UNINDENT .INDENT 7.0 .TP .B ColorMatch = b\(aqClMt\(aq .UNINDENT .INDENT 7.0 .TP .B ColorNoise = b\(aqClNs\(aq .UNINDENT .INDENT 7.0 .TP .B Colorimetric = b\(aqClrm\(aq .UNINDENT .INDENT 7.0 .TP .B Composite = b\(aqCmps\(aq .UNINDENT .INDENT 7.0 .TP .B ContourCustom = b\(aqsp06\(aq .UNINDENT .INDENT 7.0 .TP .B ContourDouble = b\(aqsp04\(aq .UNINDENT .INDENT 7.0 .TP .B ContourGaussian = b\(aqsp02\(aq .UNINDENT .INDENT 7.0 .TP .B ContourLinear = b\(aqsp01\(aq .UNINDENT .INDENT 7.0 .TP .B ContourSingle = b\(aqsp03\(aq .UNINDENT .INDENT 7.0 .TP .B ContourTriple = b\(aqsp05\(aq .UNINDENT .INDENT 7.0 .TP .B ConvertToCMYK = b\(aqCnvC\(aq .UNINDENT .INDENT 7.0 .TP .B ConvertToGray = b\(aqCnvG\(aq .UNINDENT .INDENT 7.0 .TP .B ConvertToLab = b\(aqCnvL\(aq .UNINDENT .INDENT 7.0 .TP .B ConvertToRGB = b\(aqCnvR\(aq .UNINDENT .INDENT 7.0 .TP .B CreateDuplicate = b\(aqCrtD\(aq .UNINDENT .INDENT 7.0 .TP .B CreateInterpolation = b\(aqCrtI\(aq .UNINDENT .INDENT 7.0 .TP .B Cross = b\(aqCrs \(aq .UNINDENT .INDENT 7.0 .TP .B CurrentLayer = b\(aqCrrL\(aq .UNINDENT .INDENT 7.0 .TP .B Custom = b\(aqCst \(aq .UNINDENT .INDENT 7.0 .TP .B CustomPattern = b\(aqCstm\(aq .UNINDENT .INDENT 7.0 .TP .B CustomStops = b\(aqCstS\(aq .UNINDENT .INDENT 7.0 .TP .B Cyan = b\(aqCyn \(aq .UNINDENT .INDENT 7.0 .TP .B Cyans = b\(aqCyns\(aq .UNINDENT .INDENT 7.0 .TP .B Dark = b\(aqDrk \(aq .UNINDENT .INDENT 7.0 .TP .B Darken = b\(aqDrkn\(aq .UNINDENT .INDENT 7.0 .TP .B DarkenOnly = b\(aqDrkO\(aq .UNINDENT .INDENT 7.0 .TP .B DashedLines = b\(aqDshL\(aq .UNINDENT .INDENT 7.0 .TP .B Desaturate = b\(aqDstt\(aq .UNINDENT .INDENT 7.0 .TP .B Diamond = b\(aqDmnd\(aq .UNINDENT .INDENT 7.0 .TP .B Difference = b\(aqDfrn\(aq .UNINDENT .INDENT 7.0 .TP .B Diffusion = b\(aqDfsn\(aq .UNINDENT .INDENT 7.0 .TP .B DiffusionDither = b\(aqDfnD\(aq .UNINDENT .INDENT 7.0 .TP .B DisplayCursorsPreferences = b\(aqDspC\(aq .UNINDENT .INDENT 7.0 .TP .B Dissolve = b\(aqDslv\(aq .UNINDENT .INDENT 7.0 .TP .B Distort = b\(aqDstr\(aq .UNINDENT .INDENT 7.0 .TP .B DodgeH = b\(aqDdgH\(aq .UNINDENT .INDENT 7.0 .TP .B DodgeM = b\(aqDdgM\(aq .UNINDENT .INDENT 7.0 .TP .B DodgeS = b\(aqDdgS\(aq .UNINDENT .INDENT 7.0 .TP .B Dots = b\(aqDts \(aq .UNINDENT .INDENT 7.0 .TP .B Draft = b\(aqDrft\(aq .UNINDENT .INDENT 7.0 .TP .B Duotone = b\(aqDtn \(aq .UNINDENT .INDENT 7.0 .TP .B EBUITU = b\(aqEBT \(aq .UNINDENT .INDENT 7.0 .TP .B EdgeGlow = b\(aqSrcE\(aq .UNINDENT .INDENT 7.0 .TP .B EliminateEvenFields = b\(aqElmE\(aq .UNINDENT .INDENT 7.0 .TP .B EliminateOddFields = b\(aqElmO\(aq .UNINDENT .INDENT 7.0 .TP .B Ellipse = b\(aqElps\(aq .UNINDENT .INDENT 7.0 .TP .B Emboss = b\(aqEmbs\(aq .UNINDENT .INDENT 7.0 .TP .B Exact = b\(aqExct\(aq .UNINDENT .INDENT 7.0 .TP .B Exclusion = b\(aqXclu\(aq .UNINDENT .INDENT 7.0 .TP .B FPXCompressLossyJPEG = b\(aqFxJP\(aq .UNINDENT .INDENT 7.0 .TP .B FPXCompressNone = b\(aqFxNo\(aq .UNINDENT .INDENT 7.0 .TP .B Faster = b\(aqDthf\(aq .UNINDENT .INDENT 7.0 .TP .B File = b\(aqFle \(aq .UNINDENT .INDENT 7.0 .TP .B FileInfo = b\(aqFlIn\(aq .UNINDENT .INDENT 7.0 .TP .B FillBack = b\(aqFlBc\(aq .UNINDENT .INDENT 7.0 .TP .B FillFore = b\(aqFlFr\(aq .UNINDENT .INDENT 7.0 .TP .B FillInverse = b\(aqFlIn\(aq .UNINDENT .INDENT 7.0 .TP .B FillSame = b\(aqFlSm\(aq .UNINDENT .INDENT 7.0 .TP .B FineDots = b\(aqFnDt\(aq .UNINDENT .INDENT 7.0 .TP .B First = b\(aqFrst\(aq .UNINDENT .INDENT 7.0 .TP .B FirstIdle = b\(aqFrId\(aq .UNINDENT .INDENT 7.0 .TP .B FitOnScreen = b\(aqFtOn\(aq .UNINDENT .INDENT 7.0 .TP .B ForegroundColor = b\(aqFrgC\(aq .UNINDENT .INDENT 7.0 .TP .B Forward = b\(aqFrwr\(aq .UNINDENT .INDENT 7.0 .TP .B FreeTransform = b\(aqFrTr\(aq .UNINDENT .INDENT 7.0 .TP .B Front = b\(aqFrnt\(aq .UNINDENT .INDENT 7.0 .TP .B FullDocument = b\(aqFllD\(aq .UNINDENT .INDENT 7.0 .TP .B FullSize = b\(aqFlSz\(aq .UNINDENT .INDENT 7.0 .TP .B GIFColorFileColorTable = b\(aqGFCT\(aq .UNINDENT .INDENT 7.0 .TP .B GIFColorFileColors = b\(aqGFCF\(aq .UNINDENT .INDENT 7.0 .TP .B GIFColorFileMicrosoftPalette = b\(aqGFMS\(aq .UNINDENT .INDENT 7.0 .TP .B GIFPaletteAdaptive = b\(aqGFPA\(aq .UNINDENT .INDENT 7.0 .TP .B GIFPaletteExact = b\(aqGFPE\(aq .UNINDENT .INDENT 7.0 .TP .B GIFPaletteOther = b\(aqGFPO\(aq .UNINDENT .INDENT 7.0 .TP .B GIFPaletteSystem = b\(aqGFPS\(aq .UNINDENT .INDENT 7.0 .TP .B GIFRequiredColorSpaceIndexed = b\(aqGFCI\(aq .UNINDENT .INDENT 7.0 .TP .B GIFRequiredColorSpaceRGB = b\(aqGFRG\(aq .UNINDENT .INDENT 7.0 .TP .B GIFRowOrderInterlaced = b\(aqGFIN\(aq .UNINDENT .INDENT 7.0 .TP .B GIFRowOrderNormal = b\(aqGFNI\(aq .UNINDENT .INDENT 7.0 .TP .B GaussianDistribution = b\(aqGsn \(aq .UNINDENT .INDENT 7.0 .TP .B GeneralPreferences = b\(aqGnrP\(aq .UNINDENT .INDENT 7.0 .TP .B Good = b\(aqGd \(aq .UNINDENT .INDENT 7.0 .TP .B GradientFill = b\(aqGrFl\(aq .UNINDENT .INDENT 7.0 .TP .B GrainClumped = b\(aqGrnC\(aq .UNINDENT .INDENT 7.0 .TP .B GrainContrasty = b\(aqGrCn\(aq .UNINDENT .INDENT 7.0 .TP .B GrainEnlarged = b\(aqGrnE\(aq .UNINDENT .INDENT 7.0 .TP .B GrainHorizontal = b\(aqGrnH\(aq .UNINDENT .INDENT 7.0 .TP .B GrainRegular = b\(aqGrnR\(aq .UNINDENT .INDENT 7.0 .TP .B GrainSoft = b\(aqGrSf\(aq .UNINDENT .INDENT 7.0 .TP .B GrainSpeckle = b\(aqGrSp\(aq .UNINDENT .INDENT 7.0 .TP .B GrainSprinkles = b\(aqGrSr\(aq .UNINDENT .INDENT 7.0 .TP .B GrainStippled = b\(aqGrSt\(aq .UNINDENT .INDENT 7.0 .TP .B GrainVertical = b\(aqGrnV\(aq .UNINDENT .INDENT 7.0 .TP .B GrainyDots = b\(aqGrnD\(aq .UNINDENT .INDENT 7.0 .TP .B Graphics = b\(aqGrp \(aq .UNINDENT .INDENT 7.0 .TP .B Gray = b\(aqGry \(aq .UNINDENT .INDENT 7.0 .TP .B Gray16 = b\(aqGryX\(aq .UNINDENT .INDENT 7.0 .TP .B Gray18 = b\(aqGr18\(aq .UNINDENT .INDENT 7.0 .TP .B Gray22 = b\(aqGr22\(aq .UNINDENT .INDENT 7.0 .TP .B Gray50 = b\(aqGr50\(aq .UNINDENT .INDENT 7.0 .TP .B GrayScale = b\(aqGryc\(aq .UNINDENT .INDENT 7.0 .TP .B Grayscale = b\(aqGrys\(aq .UNINDENT .INDENT 7.0 .TP .B Green = b\(aqGrn \(aq .UNINDENT .INDENT 7.0 .TP .B Greens = b\(aqGrns\(aq .UNINDENT .INDENT 7.0 .TP .B GuidesGridPreferences = b\(aqGudG\(aq .UNINDENT .INDENT 7.0 .TP .B HDTV = b\(aqHDTV\(aq .UNINDENT .INDENT 7.0 .TP .B HSBColor = b\(aqHSBl\(aq .UNINDENT .INDENT 7.0 .TP .B HSLColor = b\(aqHSLC\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneFile = b\(aqHlfF\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneScreen = b\(aqHlfS\(aq .UNINDENT .INDENT 7.0 .TP .B HardLight = b\(aqHrdL\(aq .UNINDENT .INDENT 7.0 .TP .B Heavy = b\(aqHvy \(aq .UNINDENT .INDENT 7.0 .TP .B HideAll = b\(aqHdAl\(aq .UNINDENT .INDENT 7.0 .TP .B HideSelection = b\(aqHdSl\(aq .UNINDENT .INDENT 7.0 .TP .B High = b\(aqHigh\(aq .UNINDENT .INDENT 7.0 .TP .B HighQuality = b\(aqHgh \(aq .UNINDENT .INDENT 7.0 .TP .B Highlights = b\(aqHghl\(aq .UNINDENT .INDENT 7.0 .TP .B Histogram = b\(aqHstg\(aq .UNINDENT .INDENT 7.0 .TP .B History = b\(aqHsty\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryPaletteOptions = b\(aqHstO\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryPreferences = b\(aqHstP\(aq .UNINDENT .INDENT 7.0 .TP .B Horizontal = b\(aqHrzn\(aq .UNINDENT .INDENT 7.0 .TP .B HorizontalOnly = b\(aqHrzO\(aq .UNINDENT .INDENT 7.0 .TP .B Hue = b\(aqH \(aq .UNINDENT .INDENT 7.0 .TP .B IBMPC = b\(aqIBMP\(aq .UNINDENT .INDENT 7.0 .TP .B ICC = b\(aqICC \(aq .UNINDENT .INDENT 7.0 .TP .B Icon = b\(aqIcn \(aq .UNINDENT .INDENT 7.0 .TP .B IdleVM = b\(aqIdVM\(aq .UNINDENT .INDENT 7.0 .TP .B Ignore = b\(aqIgnr\(aq .UNINDENT .INDENT 7.0 .TP .B Image = b\(aqImg \(aq .UNINDENT .INDENT 7.0 .TP .B ImageCachePreferences = b\(aqImgP\(aq .UNINDENT .INDENT 7.0 .TP .B IndexedColor = b\(aqIndl\(aq .UNINDENT .INDENT 7.0 .TP .B InfoPaletteOptions = b\(aqInfP\(aq .UNINDENT .INDENT 7.0 .TP .B InfoPaletteToggleSamplers = b\(aqInfT\(aq .UNINDENT .INDENT 7.0 .TP .B InnerBevel = b\(aqInrB\(aq .UNINDENT .INDENT 7.0 .TP .B InsetFrame = b\(aqInsF\(aq .UNINDENT .INDENT 7.0 .TP .B Inside = b\(aqInsd\(aq .UNINDENT .INDENT 7.0 .TP .B JPEG = b\(aqJPEG\(aq .UNINDENT .INDENT 7.0 .TP .B JustifyAll = b\(aqJstA\(aq .UNINDENT .INDENT 7.0 .TP .B JustifyFull = b\(aqJstF\(aq .UNINDENT .INDENT 7.0 .TP .B KeepProfile = b\(aqKPro\(aq .UNINDENT .INDENT 7.0 .TP .B KeyboardPreferences = b\(aqKybP\(aq .UNINDENT .INDENT 7.0 .TP .B Lab = b\(aqLab \(aq .UNINDENT .INDENT 7.0 .TP .B Lab48 = b\(aqLbCF\(aq .UNINDENT .INDENT 7.0 .TP .B LabColor = b\(aqLbCl\(aq .UNINDENT .INDENT 7.0 .TP .B Large = b\(aqLrg \(aq .UNINDENT .INDENT 7.0 .TP .B Last = b\(aqLst \(aq .UNINDENT .INDENT 7.0 .TP .B LastFilter = b\(aqLstF\(aq .UNINDENT .INDENT 7.0 .TP .B LayerOptions = b\(aqLyrO\(aq .UNINDENT .INDENT 7.0 .TP .B LayersPaletteOptions = b\(aqLyrP\(aq .UNINDENT .INDENT 7.0 .TP .B Left = b\(aqLeft\(aq .UNINDENT .INDENT 7.0 .TP .B Left_PLUGIN = b\(aqLft \(aq .UNINDENT .INDENT 7.0 .TP .B LevelBased = b\(aqLvlB\(aq .UNINDENT .INDENT 7.0 .TP .B Light = b\(aqLgt \(aq .UNINDENT .INDENT 7.0 .TP .B LightBlue = b\(aqLgtB\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirBottom = b\(aqLDBt\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirBottomLeft = b\(aqLDBL\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirBottomRight = b\(aqLDBR\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirLeft = b\(aqLDLf\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirRight = b\(aqLDRg\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirTop = b\(aqLDTp\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirTopLeft = b\(aqLDTL\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirTopRight = b\(aqLDTR\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirectional = b\(aqLghD\(aq .UNINDENT .INDENT 7.0 .TP .B LightGray = b\(aqLgtG\(aq .UNINDENT .INDENT 7.0 .TP .B LightOmni = b\(aqLghO\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosBottom = b\(aqLPBt\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosBottomLeft = b\(aqLPBL\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosBottomRight = b\(aqLPBr\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosLeft = b\(aqLPLf\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosRight = b\(aqLPRg\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosTop = b\(aqLPTp\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosTopLeft = b\(aqLPTL\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosTopRight = b\(aqLPTR\(aq .UNINDENT .INDENT 7.0 .TP .B LightRed = b\(aqLgtR\(aq .UNINDENT .INDENT 7.0 .TP .B LightSpot = b\(aqLghS\(aq .UNINDENT .INDENT 7.0 .TP .B Lighten = b\(aqLghn\(aq .UNINDENT .INDENT 7.0 .TP .B LightenOnly = b\(aqLghO\(aq .UNINDENT .INDENT 7.0 .TP .B Lightness = b\(aqLght\(aq .UNINDENT .INDENT 7.0 .TP .B Line = b\(aqLn \(aq .UNINDENT .INDENT 7.0 .TP .B Linear = b\(aqLnr \(aq .UNINDENT .INDENT 7.0 .TP .B Lines = b\(aqLns \(aq .UNINDENT .INDENT 7.0 .TP .B Linked = b\(aqLnkd\(aq .UNINDENT .INDENT 7.0 .TP .B LongLines = b\(aqLngL\(aq .UNINDENT .INDENT 7.0 .TP .B LongStrokes = b\(aqLngS\(aq .UNINDENT .INDENT 7.0 .TP .B Low = b\(aqLow \(aq .UNINDENT .INDENT 7.0 .TP .B LowQuality = b\(aqLw \(aq .UNINDENT .INDENT 7.0 .TP .B Lower = b\(aqLwr \(aq .UNINDENT .INDENT 7.0 .TP .B Luminosity = b\(aqLmns\(aq .UNINDENT .INDENT 7.0 .TP .B MacThumbnail = b\(aqMcTh\(aq .UNINDENT .INDENT 7.0 .TP .B Macintosh = b\(aqMcnt\(aq .UNINDENT .INDENT 7.0 .TP .B MacintoshSystem = b\(aqMcnS\(aq .UNINDENT .INDENT 7.0 .TP .B Magenta = b\(aqMgnt\(aq .UNINDENT .INDENT 7.0 .TP .B Magentas = b\(aqMgnt\(aq .UNINDENT .INDENT 7.0 .TP .B Mask = b\(aqMsk \(aq .UNINDENT .INDENT 7.0 .TP .B MaskedAreas = b\(aqMskA\(aq .UNINDENT .INDENT 7.0 .TP .B MasterAdaptive = b\(aqMAdp\(aq .UNINDENT .INDENT 7.0 .TP .B MasterPerceptual = b\(aqMPer\(aq .UNINDENT .INDENT 7.0 .TP .B MasterSelective = b\(aqMSel\(aq .UNINDENT .INDENT 7.0 .TP .B Maximum = b\(aqMxmm\(aq .UNINDENT .INDENT 7.0 .TP .B MaximumQuality = b\(aqMxm \(aq .UNINDENT .INDENT 7.0 .TP .B Maya = b\(aqMaya\(aq .UNINDENT .INDENT 7.0 .TP .B Medium = b\(aqMdim\(aq .UNINDENT .INDENT 7.0 .TP .B MediumBlue = b\(aqMdmB\(aq .UNINDENT .INDENT 7.0 .TP .B MediumDots = b\(aqMdmD\(aq .UNINDENT .INDENT 7.0 .TP .B MediumLines = b\(aqMdmL\(aq .UNINDENT .INDENT 7.0 .TP .B MediumQuality = b\(aqMdm \(aq .UNINDENT .INDENT 7.0 .TP .B MediumStrokes = b\(aqMdmS\(aq .UNINDENT .INDENT 7.0 .TP .B MemoryPreferences = b\(aqMmrP\(aq .UNINDENT .INDENT 7.0 .TP .B MergeChannels = b\(aqMrgC\(aq .UNINDENT .INDENT 7.0 .TP .B Merged = b\(aqMrgd\(aq .UNINDENT .INDENT 7.0 .TP .B MergedLayers = b\(aqMrg2\(aq .UNINDENT .INDENT 7.0 .TP .B MergedLayersOld = b\(aqMrgL\(aq .UNINDENT .INDENT 7.0 .TP .B Middle = b\(aqMddl\(aq .UNINDENT .INDENT 7.0 .TP .B Midtones = b\(aqMdtn\(aq .UNINDENT .INDENT 7.0 .TP .B ModeGray = b\(aqMdGr\(aq .UNINDENT .INDENT 7.0 .TP .B ModeRGB = b\(aqMdRG\(aq .UNINDENT .INDENT 7.0 .TP .B Monitor = b\(aqMoni\(aq .UNINDENT .INDENT 7.0 .TP .B MonitorSetup = b\(aqMntS\(aq .UNINDENT .INDENT 7.0 .TP .B Monotone = b\(aqMntn\(aq .UNINDENT .INDENT 7.0 .TP .B Multi72Color = b\(aq72CM\(aq .UNINDENT .INDENT 7.0 .TP .B Multi72Gray = b\(aq72GM\(aq .UNINDENT .INDENT 7.0 .TP .B MultiNoCompositePS = b\(aqNCmM\(aq .UNINDENT .INDENT 7.0 .TP .B Multichannel = b\(aqMlth\(aq .UNINDENT .INDENT 7.0 .TP .B Multiply = b\(aqMltp\(aq .UNINDENT .INDENT 7.0 .TP .B NTSC = b\(aqNTSC\(aq .UNINDENT .INDENT 7.0 .TP .B NavigatorPaletteOptions = b\(aqNvgP\(aq .UNINDENT .INDENT 7.0 .TP .B NearestNeighbor = b\(aqNrst\(aq .UNINDENT .INDENT 7.0 .TP .B NetscapeGray = b\(aqNsGr\(aq .UNINDENT .INDENT 7.0 .TP .B Neutrals = b\(aqNtrl\(aq .UNINDENT .INDENT 7.0 .TP .B NewView = b\(aqNwVw\(aq .UNINDENT .INDENT 7.0 .TP .B Next = b\(aqNxt \(aq .UNINDENT .INDENT 7.0 .TP .B Nikon = b\(aqNkn \(aq .UNINDENT .INDENT 7.0 .TP .B Nikon105 = b\(aqNkn1\(aq .UNINDENT .INDENT 7.0 .TP .B No = b\(aqN \(aq .UNINDENT .INDENT 7.0 .TP .B NoCompositePS = b\(aqNCmp\(aq .UNINDENT .INDENT 7.0 .TP .B Normal = b\(aqNrml\(aq .UNINDENT .INDENT 7.0 .TP .B NormalPath = b\(aqNrmP\(aq .UNINDENT .INDENT 7.0 .TP .B Null = b\(aqnull\(aq .UNINDENT .INDENT 7.0 .TP .B OS2 = b\(aqOS2 \(aq .UNINDENT .INDENT 7.0 .TP .B Off = b\(aqOff \(aq .UNINDENT .INDENT 7.0 .TP .B On = b\(aqOn \(aq .UNINDENT .INDENT 7.0 .TP .B OpenAs = b\(aqOpAs\(aq .UNINDENT .INDENT 7.0 .TP .B Orange = b\(aqOrng\(aq .UNINDENT .INDENT 7.0 .TP .B OutFromCenter = b\(aqOtFr\(aq .UNINDENT .INDENT 7.0 .TP .B OutOfGamut = b\(aqOtOf\(aq .UNINDENT .INDENT 7.0 .TP .B OuterBevel = b\(aqOtrB\(aq .UNINDENT .INDENT 7.0 .TP .B OutsetFrame = b\(aqOutF\(aq .UNINDENT .INDENT 7.0 .TP .B Outside = b\(aqOtsd\(aq .UNINDENT .INDENT 7.0 .TP .B Overlay = b\(aqOvrl\(aq .UNINDENT .INDENT 7.0 .TP .B P22EBU = b\(aqP22B\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFilterAdaptive = b\(aqPGAd\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFilterAverage = b\(aqPGAv\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFilterNone = b\(aqPGNo\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFilterPaeth = b\(aqPGPt\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFilterSub = b\(aqPGSb\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFilterUp = b\(aqPGUp\(aq .UNINDENT .INDENT 7.0 .TP .B PNGInterlaceAdam7 = b\(aqPGIA\(aq .UNINDENT .INDENT 7.0 .TP .B PNGInterlaceNone = b\(aqPGIN\(aq .UNINDENT .INDENT 7.0 .TP .B PagePosCentered = b\(aqPgPC\(aq .UNINDENT .INDENT 7.0 .TP .B PagePosTopLeft = b\(aqPgTL\(aq .UNINDENT .INDENT 7.0 .TP .B PageSetup = b\(aqPgSt\(aq .UNINDENT .INDENT 7.0 .TP .B PaintbrushEraser = b\(aqPntb\(aq .UNINDENT .INDENT 7.0 .TP .B PalSecam = b\(aqPlSc\(aq .UNINDENT .INDENT 7.0 .TP .B PanaVision = b\(aqPnVs\(aq .UNINDENT .INDENT 7.0 .TP .B PathsPaletteOptions = b\(aqPthP\(aq .UNINDENT .INDENT 7.0 .TP .B Pattern = b\(aqPtrn\(aq .UNINDENT .INDENT 7.0 .TP .B PatternDither = b\(aqPtnD\(aq .UNINDENT .INDENT 7.0 .TP .B PencilEraser = b\(aqPncl\(aq .UNINDENT .INDENT 7.0 .TP .B Perceptual = b\(aqPerc\(aq .UNINDENT .INDENT 7.0 .TP .B Perspective = b\(aqPrsp\(aq .UNINDENT .INDENT 7.0 .TP .B PhotoshopPicker = b\(aqPhtk\(aq .UNINDENT .INDENT 7.0 .TP .B PickCMYK = b\(aqPckC\(aq .UNINDENT .INDENT 7.0 .TP .B PickGray = b\(aqPckG\(aq .UNINDENT .INDENT 7.0 .TP .B PickHSB = b\(aqPckH\(aq .UNINDENT .INDENT 7.0 .TP .B PickLab = b\(aqPckL\(aq .UNINDENT .INDENT 7.0 .TP .B PickOptions = b\(aqPckO\(aq .UNINDENT .INDENT 7.0 .TP .B PickRGB = b\(aqPckR\(aq .UNINDENT .INDENT 7.0 .TP .B PillowEmboss = b\(aqPlEb\(aq .UNINDENT .INDENT 7.0 .TP .B PixelPaintSize1 = b\(aqPxS1\(aq .UNINDENT .INDENT 7.0 .TP .B PixelPaintSize2 = b\(aqPxS2\(aq .UNINDENT .INDENT 7.0 .TP .B PixelPaintSize3 = b\(aqPxS3\(aq .UNINDENT .INDENT 7.0 .TP .B PixelPaintSize4 = b\(aqPxS4\(aq .UNINDENT .INDENT 7.0 .TP .B Place = b\(aqPlce\(aq .UNINDENT .INDENT 7.0 .TP .B PlaybackOptions = b\(aqPbkO\(aq .UNINDENT .INDENT 7.0 .TP .B PluginPicker = b\(aqPlgP\(aq .UNINDENT .INDENT 7.0 .TP .B PluginsScratchDiskPreferences = b\(aqPlgS\(aq .UNINDENT .INDENT 7.0 .TP .B PolarToRect = b\(aqPlrR\(aq .UNINDENT .INDENT 7.0 .TP .B PondRipples = b\(aqPndR\(aq .UNINDENT .INDENT 7.0 .TP .B Precise = b\(aqPrc \(aq .UNINDENT .INDENT 7.0 .TP .B PreciseMatte = b\(aqPrBL\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewBlack = b\(aqPrvB\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewCMY = b\(aqPrvN\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewCMYK = b\(aqPrvC\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewCyan = b\(aqPrvy\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewMagenta = b\(aqPrvM\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewOff = b\(aqPrvO\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewYellow = b\(aqPrvY\(aq .UNINDENT .INDENT 7.0 .TP .B Previous = b\(aqPrvs\(aq .UNINDENT .INDENT 7.0 .TP .B Primaries = b\(aqPrim\(aq .UNINDENT .INDENT 7.0 .TP .B PrintSize = b\(aqPrnS\(aq .UNINDENT .INDENT 7.0 .TP .B PrintingInksSetup = b\(aqPrnI\(aq .UNINDENT .INDENT 7.0 .TP .B Purple = b\(aqPrp \(aq .UNINDENT .INDENT 7.0 .TP .B Pyramids = b\(aqPyrm\(aq .UNINDENT .INDENT 7.0 .TP .B QCSAverage = b\(aqQcsa\(aq .UNINDENT .INDENT 7.0 .TP .B QCSCorner0 = b\(aqQcs0\(aq .UNINDENT .INDENT 7.0 .TP .B QCSCorner1 = b\(aqQcs1\(aq .UNINDENT .INDENT 7.0 .TP .B QCSCorner2 = b\(aqQcs2\(aq .UNINDENT .INDENT 7.0 .TP .B QCSCorner3 = b\(aqQcs3\(aq .UNINDENT .INDENT 7.0 .TP .B QCSIndependent = b\(aqQcsi\(aq .UNINDENT .INDENT 7.0 .TP .B QCSSide0 = b\(aqQcs4\(aq .UNINDENT .INDENT 7.0 .TP .B QCSSide1 = b\(aqQcs5\(aq .UNINDENT .INDENT 7.0 .TP .B QCSSide2 = b\(aqQcs6\(aq .UNINDENT .INDENT 7.0 .TP .B QCSSide3 = b\(aqQcs7\(aq .UNINDENT .INDENT 7.0 .TP .B Quadtone = b\(aqQdtn\(aq .UNINDENT .INDENT 7.0 .TP .B QueryAlways = b\(aqQurA\(aq .UNINDENT .INDENT 7.0 .TP .B QueryAsk = b\(aqQurl\(aq .UNINDENT .INDENT 7.0 .TP .B QueryNever = b\(aqQurN\(aq .UNINDENT .INDENT 7.0 .TP .B RGB = b\(aqRGB \(aq .UNINDENT .INDENT 7.0 .TP .B RGB48 = b\(aqRGBF\(aq .UNINDENT .INDENT 7.0 .TP .B RGBColor = b\(aqRGBC\(aq .UNINDENT .INDENT 7.0 .TP .B Radial = b\(aqRdl \(aq .UNINDENT .INDENT 7.0 .TP .B Random = b\(aqRndm\(aq .UNINDENT .INDENT 7.0 .TP .B RectToPolar = b\(aqRctP\(aq .UNINDENT .INDENT 7.0 .TP .B Red = b\(aqRd \(aq .UNINDENT .INDENT 7.0 .TP .B RedrawComplete = b\(aqRdCm\(aq .UNINDENT .INDENT 7.0 .TP .B Reds = b\(aqRds \(aq .UNINDENT .INDENT 7.0 .TP .B Reflected = b\(aqRflc\(aq .UNINDENT .INDENT 7.0 .TP .B Relative = b\(aqRltv\(aq .UNINDENT .INDENT 7.0 .TP .B Repeat = b\(aqRpt \(aq .UNINDENT .INDENT 7.0 .TP .B RepeatEdgePixels = b\(aqRptE\(aq .UNINDENT .INDENT 7.0 .TP .B RevealAll = b\(aqRvlA\(aq .UNINDENT .INDENT 7.0 .TP .B RevealSelection = b\(aqRvlS\(aq .UNINDENT .INDENT 7.0 .TP .B Revert = b\(aqRvrt\(aq .UNINDENT .INDENT 7.0 .TP .B Right = b\(aqRght\(aq .UNINDENT .INDENT 7.0 .TP .B Rotate = b\(aqRtte\(aq .UNINDENT .INDENT 7.0 .TP .B RotoscopingPreferences = b\(aqRtsP\(aq .UNINDENT .INDENT 7.0 .TP .B Round = b\(aqRnd \(aq .UNINDENT .INDENT 7.0 .TP .B RulerCm = b\(aqRrCm\(aq .UNINDENT .INDENT 7.0 .TP .B RulerInches = b\(aqRrIn\(aq .UNINDENT .INDENT 7.0 .TP .B RulerPercent = b\(aqRrPr\(aq .UNINDENT .INDENT 7.0 .TP .B RulerPicas = b\(aqRrPi\(aq .UNINDENT .INDENT 7.0 .TP .B RulerPixels = b\(aqRrPx\(aq .UNINDENT .INDENT 7.0 .TP .B RulerPoints = b\(aqRrPt\(aq .UNINDENT .INDENT 7.0 .TP .B SMPTEC = b\(aqSMPC\(aq .UNINDENT .INDENT 7.0 .TP .B SRGB = b\(aqSRGB\(aq .UNINDENT .INDENT 7.0 .TP .B Sample3x3 = b\(aqSmp3\(aq .UNINDENT .INDENT 7.0 .TP .B Sample5x5 = b\(aqSmp5\(aq .UNINDENT .INDENT 7.0 .TP .B SamplePoint = b\(aqSmpP\(aq .UNINDENT .INDENT 7.0 .TP .B Saturate = b\(aqStr \(aq .UNINDENT .INDENT 7.0 .TP .B Saturation = b\(aqStrt\(aq .UNINDENT .INDENT 7.0 .TP .B SaveForWeb = b\(aqSvfw\(aq .UNINDENT .INDENT 7.0 .TP .B Saved = b\(aqSved\(aq .UNINDENT .INDENT 7.0 .TP .B SavingFilesPreferences = b\(aqSvnF\(aq .UNINDENT .INDENT 7.0 .TP .B Scale = b\(aqScl \(aq .UNINDENT .INDENT 7.0 .TP .B Screen = b\(aqScrn\(aq .UNINDENT .INDENT 7.0 .TP .B ScreenCircle = b\(aqScrC\(aq .UNINDENT .INDENT 7.0 .TP .B ScreenDot = b\(aqScrD\(aq .UNINDENT .INDENT 7.0 .TP .B ScreenLine = b\(aqScrL\(aq .UNINDENT .INDENT 7.0 .TP .B SelectedAreas = b\(aqSlcA\(aq .UNINDENT .INDENT 7.0 .TP .B Selection = b\(aqSlct\(aq .UNINDENT .INDENT 7.0 .TP .B Selective = b\(aqSele\(aq .UNINDENT .INDENT 7.0 .TP .B SeparationSetup = b\(aqSprS\(aq .UNINDENT .INDENT 7.0 .TP .B SeparationTables = b\(aqSprT\(aq .UNINDENT .INDENT 7.0 .TP .B Shadows = b\(aqShdw\(aq .UNINDENT .INDENT 7.0 .TP .B ShortLines = b\(aqShrL\(aq .UNINDENT .INDENT 7.0 .TP .B ShortStrokes = b\(aqShSt\(aq .UNINDENT .INDENT 7.0 .TP .B Single72Color = b\(aq72CS\(aq .UNINDENT .INDENT 7.0 .TP .B Single72Gray = b\(aq72GS\(aq .UNINDENT .INDENT 7.0 .TP .B SingleNoCompositePS = b\(aqNCmS\(aq .UNINDENT .INDENT 7.0 .TP .B Skew = b\(aqSkew\(aq .UNINDENT .INDENT 7.0 .TP .B SlopeLimitMatte = b\(aqSlmt\(aq .UNINDENT .INDENT 7.0 .TP .B Small = b\(aqSml \(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurModeEdgeOnly = b\(aqSBME\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurModeNormal = b\(aqSBMN\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurModeOverlayEdge = b\(aqSBMO\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurQualityHigh = b\(aqSBQH\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurQualityLow = b\(aqSBQL\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurQualityMedium = b\(aqSBQM\(aq .UNINDENT .INDENT 7.0 .TP .B Snapshot = b\(aqSnps\(aq .UNINDENT .INDENT 7.0 .TP .B SoftLight = b\(aqSftL\(aq .UNINDENT .INDENT 7.0 .TP .B SoftMatte = b\(aqSfBL\(aq .UNINDENT .INDENT 7.0 .TP .B SolidColor = b\(aqSClr\(aq .UNINDENT .INDENT 7.0 .TP .B Spectrum = b\(aqSpct\(aq .UNINDENT .INDENT 7.0 .TP .B Spin = b\(aqSpn \(aq .UNINDENT .INDENT 7.0 .TP .B SpotColor = b\(aqSpot\(aq .UNINDENT .INDENT 7.0 .TP .B Square = b\(aqSqr \(aq .UNINDENT .INDENT 7.0 .TP .B Stagger = b\(aqStgr\(aq .UNINDENT .INDENT 7.0 .TP .B StampIn = b\(aqIn \(aq .UNINDENT .INDENT 7.0 .TP .B StampOut = b\(aqOut \(aq .UNINDENT .INDENT 7.0 .TP .B Standard = b\(aqStd \(aq .UNINDENT .INDENT 7.0 .TP .B StdA = b\(aqStdA\(aq .UNINDENT .INDENT 7.0 .TP .B StdB = b\(aqStdB\(aq .UNINDENT .INDENT 7.0 .TP .B StdC = b\(aqStdC\(aq .UNINDENT .INDENT 7.0 .TP .B StdE = b\(aqStdE\(aq .UNINDENT .INDENT 7.0 .TP .B StretchToFit = b\(aqStrF\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeDirHorizontal = b\(aqSDHz\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeDirLeftDiag = b\(aqSDLD\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeDirRightDiag = b\(aqSDRD\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeDirVertical = b\(aqSDVt\(aq .UNINDENT .INDENT 7.0 .TP .B StylesAppend = b\(aqSlsA\(aq .UNINDENT .INDENT 7.0 .TP .B StylesDelete = b\(aqSlsf\(aq .UNINDENT .INDENT 7.0 .TP .B StylesLoad = b\(aqSlsd\(aq .UNINDENT .INDENT 7.0 .TP .B StylesNew = b\(aqSlsN\(aq .UNINDENT .INDENT 7.0 .TP .B StylesReset = b\(aqSlsR\(aq .UNINDENT .INDENT 7.0 .TP .B StylesSave = b\(aqSlsv\(aq .UNINDENT .INDENT 7.0 .TP .B Subtract = b\(aqSbtr\(aq .UNINDENT .INDENT 7.0 .TP .B SwatchesAppend = b\(aqSwtA\(aq .UNINDENT .INDENT 7.0 .TP .B SwatchesReplace = b\(aqSwtp\(aq .UNINDENT .INDENT 7.0 .TP .B SwatchesReset = b\(aqSwtR\(aq .UNINDENT .INDENT 7.0 .TP .B SwatchesSave = b\(aqSwtS\(aq .UNINDENT .INDENT 7.0 .TP .B SystemPicker = b\(aqSysP\(aq .UNINDENT .INDENT 7.0 .TP .B TIFF = b\(aqTIFF\(aq .UNINDENT .INDENT 7.0 .TP .B Tables = b\(aqTbl \(aq .UNINDENT .INDENT 7.0 .TP .B Target = b\(aqTrgt\(aq .UNINDENT .INDENT 7.0 .TP .B TargetPath = b\(aqTrgp\(aq .UNINDENT .INDENT 7.0 .TP .B TexTypeBlocks = b\(aqTxBl\(aq .UNINDENT .INDENT 7.0 .TP .B TexTypeBrick = b\(aqTxBr\(aq .UNINDENT .INDENT 7.0 .TP .B TexTypeBurlap = b\(aqTxBu\(aq .UNINDENT .INDENT 7.0 .TP .B TexTypeCanvas = b\(aqTxCa\(aq .UNINDENT .INDENT 7.0 .TP .B TexTypeFrosted = b\(aqTxFr\(aq .UNINDENT .INDENT 7.0 .TP .B TexTypeSandstone = b\(aqTxSt\(aq .UNINDENT .INDENT 7.0 .TP .B TexTypeTinyLens = b\(aqTxTL\(aq .UNINDENT .INDENT 7.0 .TP .B Threshold = b\(aqThrh\(aq .UNINDENT .INDENT 7.0 .TP .B Thumbnail = b\(aqThmb\(aq .UNINDENT .INDENT 7.0 .TP .B Tile = b\(aqTile\(aq .UNINDENT .INDENT 7.0 .TP .B Tile_PLUGIN = b\(aqTl \(aq .UNINDENT .INDENT 7.0 .TP .B ToggleActionsPalette = b\(aqTglA\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleBlackPreview = b\(aqTgBP\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleBrushesPalette = b\(aqTglB\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleCMYKPreview = b\(aqTglC\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleCMYPreview = b\(aqTgCM\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleChannelsPalette = b\(aqTglh\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleColorPalette = b\(aqTglc\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleCyanPreview = b\(aqTgCP\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleDocumentPalette = b\(aqTgDc\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleEdges = b\(aqTglE\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleGamutWarning = b\(aqTglG\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleGrid = b\(aqTgGr\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleGuides = b\(aqTgld\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleHistoryPalette = b\(aqTglH\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleInfoPalette = b\(aqTglI\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleLayerMask = b\(aqTglM\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleLayersPalette = b\(aqTgly\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleLockGuides = b\(aqTglL\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleMagentaPreview = b\(aqTgMP\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleNavigatorPalette = b\(aqTglN\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleOptionsPalette = b\(aqTglO\(aq .UNINDENT .INDENT 7.0 .TP .B TogglePaths = b\(aqTglP\(aq .UNINDENT .INDENT 7.0 .TP .B TogglePathsPalette = b\(aqTglt\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleRGBMacPreview = b\(aqTrMp\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleRGBUncompensatedPreview = b\(aqTrUp\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleRGBWindowsPreview = b\(aqTrWp\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleRulers = b\(aqTglR\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleSnapToGrid = b\(aqTgSn\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleSnapToGuides = b\(aqTglS\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleStatusBar = b\(aqTgls\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleStylesPalette = b\(aqTgSl\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleSwatchesPalette = b\(aqTglw\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleToolsPalette = b\(aqTglT\(aq .UNINDENT .INDENT 7.0 .TP .B ToggleYellowPreview = b\(aqTgYP\(aq .UNINDENT .INDENT 7.0 .TP .B Top = b\(aqTop \(aq .UNINDENT .INDENT 7.0 .TP .B Transparency = b\(aqTrsp\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyGamutPreferences = b\(aqTrnG\(aq .UNINDENT .INDENT 7.0 .TP .B Transparent = b\(aqTrns\(aq .UNINDENT .INDENT 7.0 .TP .B Trinitron = b\(aqTrnt\(aq .UNINDENT .INDENT 7.0 .TP .B Tritone = b\(aqTrtn\(aq .UNINDENT .INDENT 7.0 .TP .B UIBitmap = b\(aqUBtm\(aq .UNINDENT .INDENT 7.0 .TP .B UICMYK = b\(aqUCMY\(aq .UNINDENT .INDENT 7.0 .TP .B UIDuotone = b\(aqUDtn\(aq .UNINDENT .INDENT 7.0 .TP .B UIGrayscale = b\(aqUGry\(aq .UNINDENT .INDENT 7.0 .TP .B UIIndexed = b\(aqUInd\(aq .UNINDENT .INDENT 7.0 .TP .B UILab = b\(aqULab\(aq .UNINDENT .INDENT 7.0 .TP .B UIMultichannel = b\(aqUMlt\(aq .UNINDENT .INDENT 7.0 .TP .B UIRGB = b\(aqURGB\(aq .UNINDENT .INDENT 7.0 .TP .B Undo = b\(aqUnd \(aq .UNINDENT .INDENT 7.0 .TP .B Uniform = b\(aqUnfm\(aq .UNINDENT .INDENT 7.0 .TP .B UniformDistribution = b\(aqUnfr\(aq .UNINDENT .INDENT 7.0 .TP .B UnitsRulersPreferences = b\(aqUntR\(aq .UNINDENT .INDENT 7.0 .TP .B Upper = b\(aqUpr \(aq .UNINDENT .INDENT 7.0 .TP .B UserStop = b\(aqUsrS\(aq .UNINDENT .INDENT 7.0 .TP .B VMPreferences = b\(aqVMPr\(aq .UNINDENT .INDENT 7.0 .TP .B Vertical = b\(aqVrtc\(aq .UNINDENT .INDENT 7.0 .TP .B VerticalOnly = b\(aqVrtO\(aq .UNINDENT .INDENT 7.0 .TP .B Violet = b\(aqVlt \(aq .UNINDENT .INDENT 7.0 .TP .B WaveSine = b\(aqWvSn\(aq .UNINDENT .INDENT 7.0 .TP .B WaveSquare = b\(aqWvSq\(aq .UNINDENT .INDENT 7.0 .TP .B WaveTriangle = b\(aqWvTr\(aq .UNINDENT .INDENT 7.0 .TP .B Web = b\(aqWeb \(aq .UNINDENT .INDENT 7.0 .TP .B White = b\(aqWht \(aq .UNINDENT .INDENT 7.0 .TP .B Whites = b\(aqWhts\(aq .UNINDENT .INDENT 7.0 .TP .B WideGamutRGB = b\(aqWRGB\(aq .UNINDENT .INDENT 7.0 .TP .B WidePhosphors = b\(aqWide\(aq .UNINDENT .INDENT 7.0 .TP .B WinThumbnail = b\(aqWnTh\(aq .UNINDENT .INDENT 7.0 .TP .B Wind = b\(aqWnd \(aq .UNINDENT .INDENT 7.0 .TP .B Windows = b\(aqWin \(aq .UNINDENT .INDENT 7.0 .TP .B WindowsSystem = b\(aqWndS\(aq .UNINDENT .INDENT 7.0 .TP .B WorkPath = b\(aqWrkP\(aq .UNINDENT .INDENT 7.0 .TP .B Wrap = b\(aqWrp \(aq .UNINDENT .INDENT 7.0 .TP .B WrapAround = b\(aqWrpA\(aq .UNINDENT .INDENT 7.0 .TP .B Yellow = b\(aqYllw\(aq .UNINDENT .INDENT 7.0 .TP .B YellowColor = b\(aqYlw \(aq .UNINDENT .INDENT 7.0 .TP .B Yellows = b\(aqYlws\(aq .UNINDENT .INDENT 7.0 .TP .B Yes = b\(aqYs \(aq .UNINDENT .INDENT 7.0 .TP .B Zip = b\(aqZpEn\(aq .UNINDENT .INDENT 7.0 .TP .B Zoom = b\(aqZm \(aq .UNINDENT .INDENT 7.0 .TP .B ZoomIn = b\(aqZmIn\(aq .UNINDENT .INDENT 7.0 .TP .B ZoomOut = b\(aqZmOt\(aq .UNINDENT .INDENT 7.0 .TP .B _16BitsPerPixel = b\(aq16Bt\(aq .UNINDENT .INDENT 7.0 .TP .B _1BitPerPixel = b\(aqOnBt\(aq .UNINDENT .INDENT 7.0 .TP .B _2BitsPerPixel = b\(aq2Bts\(aq .UNINDENT .INDENT 7.0 .TP .B _32BitsPerPixel = b\(aq32Bt\(aq .UNINDENT .INDENT 7.0 .TP .B _4BitsPerPixel = b\(aq4Bts\(aq .UNINDENT .INDENT 7.0 .TP .B _5000 = b\(aq5000\(aq .UNINDENT .INDENT 7.0 .TP .B _5500 = b\(aq5500\(aq .UNINDENT .INDENT 7.0 .TP .B _6500 = b\(aq6500\(aq .UNINDENT .INDENT 7.0 .TP .B _72Color = b\(aq72Cl\(aq .UNINDENT .INDENT 7.0 .TP .B _72Gray = b\(aq72Gr\(aq .UNINDENT .INDENT 7.0 .TP .B _7500 = b\(aq7500\(aq .UNINDENT .INDENT 7.0 .TP .B _8BitsPerPixel = b\(aqEghB\(aq .UNINDENT .INDENT 7.0 .TP .B _9300 = b\(aq9300\(aq .UNINDENT .INDENT 7.0 .TP .B _None = b\(aqNone\(aq .UNINDENT .INDENT 7.0 .TP .B _generate_next_value_(start, count, last_values) Generate the next value when not given. .sp name: the name of the member start: the initial start value or None count: the number of existing members last_values: the list of values assigned .UNINDENT .INDENT 7.0 .TP .B _member_map_ = {\(aqA\(aq: Enum.A, \(aqADSBottoms\(aq: Enum.ADSBottoms, \(aqADSCentersH\(aq: Enum.ADSCentersH, \(aqADSCentersV\(aq: Enum.ADSCentersV, \(aqADSHorizontal\(aq: Enum.ADSHorizontal, \(aqADSLefts\(aq: Enum.ADSLefts, \(aqADSRights\(aq: Enum.ADSRights, \(aqADSTops\(aq: Enum.ADSTops, \(aqADSVertical\(aq: Enum.ADSVertical, \(aqASCII\(aq: Enum.ASCII, \(aqAboutApp\(aq: Enum.AboutApp, \(aqAbsColorimetric\(aq: Enum.AbsColorimetric, \(aqAbsolute\(aq: Enum.Absolute, \(aqActualPixels\(aq: Enum.ActualPixels, \(aqAdaptive\(aq: Enum.Adaptive, \(aqAdd\(aq: Enum.Add, \(aqAdjustmentOptions\(aq: Enum.AdjustmentOptions, \(aqAdobeRGB1998\(aq: Enum.AdobeRGB1998, \(aqAirbrushEraser\(aq: Enum.AirbrushEraser, \(aqAll\(aq: Enum.All, \(aqAmiga\(aq: Enum.Amiga, \(aqAmountHigh\(aq: Enum.AmountHigh, \(aqAmountLow\(aq: Enum.AmountLow, \(aqAmountMedium\(aq: Enum.AmountMedium, \(aqAngle\(aq: Enum.Angle, \(aqAntiAliasCrisp\(aq: Enum.AntiAliasCrisp, \(aqAntiAliasHigh\(aq: Enum.AntiAliasHigh, \(aqAntiAliasLow\(aq: Enum.AntiAliasLow, \(aqAntiAliasMedium\(aq: Enum.AntiAliasMedium, \(aqAntiAliasNone\(aq: Enum.AntiAliasNone, \(aqAntiAliasSmooth\(aq: Enum.AntiAliasSmooth, \(aqAntiAliasStrong\(aq: Enum.AntiAliasStrong, \(aqAny\(aq: Enum.Any, \(aqAppleRGB\(aq: Enum.AppleRGB, \(aqApplyImage\(aq: Enum.ApplyImage, \(aqAroundCenter\(aq: Enum.AroundCenter, \(aqArrange\(aq: Enum.Arrange, \(aqAsk\(aq: Enum.Ask, \(aqAskWhenOpening\(aq: Enum.AskWhenOpening, \(aqB\(aq: Enum.B, \(aqBack\(aq: Enum.Back, \(aqBackground\(aq: Enum.Background, \(aqBackgroundColor\(aq: Enum.BackgroundColor, \(aqBackward\(aq: Enum.Backward, \(aqBehind\(aq: Enum.Behind, \(aqBest\(aq: Enum.Best, \(aqBetter\(aq: Enum.Better, \(aqBicubic\(aq: Enum.Bicubic, \(aqBilinear\(aq: Enum.Bilinear, \(aqBinary\(aq: Enum.Binary, \(aqBitDepth1\(aq: Enum.BitDepth1, \(aqBitDepth16\(aq: Enum.BitDepth16, \(aqBitDepth24\(aq: Enum.BitDepth24, \(aqBitDepth32\(aq: Enum.BitDepth32, \(aqBitDepth4\(aq: Enum.BitDepth4, \(aqBitDepth8\(aq: Enum.BitDepth8, \(aqBitDepthA1R5G5B5\(aq: Enum.BitDepthA1R5G5B5, \(aqBitDepthA4R4G4B4\(aq: Enum.BitDepthA4R4G4B4, \(aqBitDepthR5G6B5\(aq: Enum.BitDepthR5G6B5, \(aqBitDepthX4R4G4B4\(aq: Enum.BitDepthX4R4G4B4, \(aqBitDepthX8R8G8B8\(aq: Enum.BitDepthX8R8G8B8, \(aqBitmap\(aq: Enum.Bitmap, \(aqBlack\(aq: Enum.Black, \(aqBlackAndWhite\(aq: Enum.BlackAndWhite, \(aqBlackBody\(aq: Enum.BlackBody, \(aqBlacks\(aq: Enum.Blacks, \(aqBlast\(aq: Enum.Blast, \(aqBlockEraser\(aq: Enum.BlockEraser, \(aqBlocks\(aq: Enum.Blacks, \(aqBlue\(aq: Enum.Blue, \(aqBlues\(aq: Enum.Blues, \(aqBottom\(aq: Enum.Bottom, \(aqBrushDarkRough\(aq: Enum.BrushDarkRough, \(aqBrushLightRough\(aq: Enum.BrushLightRough, \(aqBrushSimple\(aq: Enum.BrushSimple, \(aqBrushSize\(aq: Enum.BrushSize, \(aqBrushSparkle\(aq: Enum.BrushSparkle, \(aqBrushWideBlurry\(aq: Enum.BrushWideBlurry, \(aqBrushWideSharp\(aq: Enum.BrushWideSharp, \(aqBrushesAppend\(aq: Enum.BrushesAppend, \(aqBrushesDefine\(aq: Enum.BrushesDefine, \(aqBrushesDelete\(aq: Enum.BrushesDelete, \(aqBrushesLoad\(aq: Enum.BrushesLoad, \(aqBrushesNew\(aq: Enum.BrushesNew, \(aqBrushesOptions\(aq: Enum.BrushesOptions, \(aqBrushesReset\(aq: Enum.BrushesReset, \(aqBrushesSave\(aq: Enum.BrushesSave, \(aqBuiltin\(aq: Enum.Builtin, \(aqBurnInH\(aq: Enum.BurnInH, \(aqBurnInM\(aq: Enum.BurnInM, \(aqBurnInS\(aq: Enum.BurnInS, \(aqButtonMode\(aq: Enum.ButtonMode, \(aqCIERGB\(aq: Enum.CIERGB, \(aqCMYK\(aq: Enum.CMYK, \(aqCMYK64\(aq: Enum.CMYK64, \(aqCMYKColor\(aq: Enum.CMYKColor, \(aqCalculations\(aq: Enum.Calculations, \(aqCascade\(aq: Enum.Cascade, \(aqCenter\(aq: Enum.Center, \(aqCenterGlow\(aq: Enum.CenterGlow, \(aqCenteredFrame\(aq: Enum.CenteredFrame, \(aqChannelOptions\(aq: Enum.ChannelOptions, \(aqChannelsPaletteOptions\(aq: Enum.ChannelsPaletteOptions, \(aqCheckerboardLarge\(aq: Enum.CheckerboardLarge, \(aqCheckerboardMedium\(aq: Enum.CheckerboardMedium, \(aqCheckerboardNone\(aq: Enum.CheckerboardNone, \(aqCheckerboardSmall\(aq: Enum.CheckerboardSmall, \(aqClear\(aq: Enum.Clear, \(aqClearGuides\(aq: Enum.ClearGuides, \(aqClipboard\(aq: Enum.Clipboard, \(aqClippingPath\(aq: Enum.ClippingPath, \(aqCloseAll\(aq: Enum.CloseAll, \(aqCoarseDots\(aq: Enum.CoarseDots, \(aqColor\(aq: Enum.Color, \(aqColorBurn\(aq: Enum.ColorBurn, \(aqColorDodge\(aq: Enum.ColorDodge, \(aqColorMatch\(aq: Enum.ColorMatch, \(aqColorNoise\(aq: Enum.ColorNoise, \(aqColorimetric\(aq: Enum.Colorimetric, \(aqComposite\(aq: Enum.Composite, \(aqContourCustom\(aq: Enum.ContourCustom, \(aqContourDouble\(aq: Enum.ContourDouble, \(aqContourGaussian\(aq: Enum.ContourGaussian, \(aqContourLinear\(aq: Enum.ContourLinear, \(aqContourSingle\(aq: Enum.ContourSingle, \(aqContourTriple\(aq: Enum.ContourTriple, \(aqConvertToCMYK\(aq: Enum.ConvertToCMYK, \(aqConvertToGray\(aq: Enum.ConvertToGray, \(aqConvertToLab\(aq: Enum.ConvertToLab, \(aqConvertToRGB\(aq: Enum.ConvertToRGB, \(aqCreateDuplicate\(aq: Enum.CreateDuplicate, \(aqCreateInterpolation\(aq: Enum.CreateInterpolation, \(aqCross\(aq: Enum.Cross, \(aqCurrentLayer\(aq: Enum.CurrentLayer, \(aqCustom\(aq: Enum.Custom, \(aqCustomPattern\(aq: Enum.CustomPattern, \(aqCustomStops\(aq: Enum.CustomStops, \(aqCyan\(aq: Enum.Cyan, \(aqCyans\(aq: Enum.Cyans, \(aqDark\(aq: Enum.Dark, \(aqDarken\(aq: Enum.Darken, \(aqDarkenOnly\(aq: Enum.DarkenOnly, \(aqDashedLines\(aq: Enum.DashedLines, \(aqDesaturate\(aq: Enum.Desaturate, \(aqDiamond\(aq: Enum.Diamond, \(aqDifference\(aq: Enum.Difference, \(aqDiffusion\(aq: Enum.Diffusion, \(aqDiffusionDither\(aq: Enum.DiffusionDither, \(aqDisplayCursorsPreferences\(aq: Enum.DisplayCursorsPreferences, \(aqDissolve\(aq: Enum.Dissolve, \(aqDistort\(aq: Enum.Distort, \(aqDodgeH\(aq: Enum.DodgeH, \(aqDodgeM\(aq: Enum.DodgeM, \(aqDodgeS\(aq: Enum.DodgeS, \(aqDots\(aq: Enum.Dots, \(aqDraft\(aq: Enum.Draft, \(aqDuotone\(aq: Enum.Duotone, \(aqEBUITU\(aq: Enum.EBUITU, \(aqEdgeGlow\(aq: Enum.EdgeGlow, \(aqEliminateEvenFields\(aq: Enum.EliminateEvenFields, \(aqEliminateOddFields\(aq: Enum.EliminateOddFields, \(aqEllipse\(aq: Enum.Ellipse, \(aqEmboss\(aq: Enum.Emboss, \(aqExact\(aq: Enum.Exact, \(aqExclusion\(aq: Enum.Exclusion, \(aqFPXCompressLossyJPEG\(aq: Enum.FPXCompressLossyJPEG, \(aqFPXCompressNone\(aq: Enum.FPXCompressNone, \(aqFaster\(aq: Enum.Faster, \(aqFile\(aq: Enum.File, \(aqFileInfo\(aq: Enum.FileInfo, \(aqFillBack\(aq: Enum.FillBack, \(aqFillFore\(aq: Enum.FillFore, \(aqFillInverse\(aq: Enum.FileInfo, \(aqFillSame\(aq: Enum.FillSame, \(aqFineDots\(aq: Enum.FineDots, \(aqFirst\(aq: Enum.First, \(aqFirstIdle\(aq: Enum.FirstIdle, \(aqFitOnScreen\(aq: Enum.FitOnScreen, \(aqForegroundColor\(aq: Enum.ForegroundColor, \(aqForward\(aq: Enum.Forward, \(aqFreeTransform\(aq: Enum.FreeTransform, \(aqFront\(aq: Enum.Front, \(aqFullDocument\(aq: Enum.FullDocument, \(aqFullSize\(aq: Enum.FullSize, \(aqGIFColorFileColorTable\(aq: Enum.GIFColorFileColorTable, \(aqGIFColorFileColors\(aq: Enum.GIFColorFileColors, \(aqGIFColorFileMicrosoftPalette\(aq: Enum.GIFColorFileMicrosoftPalette, \(aqGIFPaletteAdaptive\(aq: Enum.GIFPaletteAdaptive, \(aqGIFPaletteExact\(aq: Enum.GIFPaletteExact, \(aqGIFPaletteOther\(aq: Enum.GIFPaletteOther, \(aqGIFPaletteSystem\(aq: Enum.GIFPaletteSystem, \(aqGIFRequiredColorSpaceIndexed\(aq: Enum.GIFRequiredColorSpaceIndexed, \(aqGIFRequiredColorSpaceRGB\(aq: Enum.GIFRequiredColorSpaceRGB, \(aqGIFRowOrderInterlaced\(aq: Enum.GIFRowOrderInterlaced, \(aqGIFRowOrderNormal\(aq: Enum.GIFRowOrderNormal, \(aqGaussianDistribution\(aq: Enum.GaussianDistribution, \(aqGeneralPreferences\(aq: Enum.GeneralPreferences, \(aqGood\(aq: Enum.Good, \(aqGradientFill\(aq: Enum.GradientFill, \(aqGrainClumped\(aq: Enum.GrainClumped, \(aqGrainContrasty\(aq: Enum.GrainContrasty, \(aqGrainEnlarged\(aq: Enum.GrainEnlarged, \(aqGrainHorizontal\(aq: Enum.GrainHorizontal, \(aqGrainRegular\(aq: Enum.GrainRegular, \(aqGrainSoft\(aq: Enum.GrainSoft, \(aqGrainSpeckle\(aq: Enum.GrainSpeckle, \(aqGrainSprinkles\(aq: Enum.GrainSprinkles, \(aqGrainStippled\(aq: Enum.GrainStippled, \(aqGrainVertical\(aq: Enum.GrainVertical, \(aqGrainyDots\(aq: Enum.GrainyDots, \(aqGraphics\(aq: Enum.Graphics, \(aqGray\(aq: Enum.Gray, \(aqGray16\(aq: Enum.Gray16, \(aqGray18\(aq: Enum.Gray18, \(aqGray22\(aq: Enum.Gray22, \(aqGray50\(aq: Enum.Gray50, \(aqGrayScale\(aq: Enum.GrayScale, \(aqGrayscale\(aq: Enum.Grayscale, \(aqGreen\(aq: Enum.Green, \(aqGreens\(aq: Enum.Greens, \(aqGuidesGridPreferences\(aq: Enum.GuidesGridPreferences, \(aqHDTV\(aq: Enum.HDTV, \(aqHSBColor\(aq: Enum.HSBColor, \(aqHSLColor\(aq: Enum.HSLColor, \(aqHalftoneFile\(aq: Enum.HalftoneFile, \(aqHalftoneScreen\(aq: Enum.HalftoneScreen, \(aqHardLight\(aq: Enum.HardLight, \(aqHeavy\(aq: Enum.Heavy, \(aqHideAll\(aq: Enum.HideAll, \(aqHideSelection\(aq: Enum.HideSelection, \(aqHigh\(aq: Enum.High, \(aqHighQuality\(aq: Enum.HighQuality, \(aqHighlights\(aq: Enum.Highlights, \(aqHistogram\(aq: Enum.Histogram, \(aqHistory\(aq: Enum.History, \(aqHistoryPaletteOptions\(aq: Enum.HistoryPaletteOptions, \(aqHistoryPreferences\(aq: Enum.HistoryPreferences, \(aqHorizontal\(aq: Enum.Horizontal, \(aqHorizontalOnly\(aq: Enum.HorizontalOnly, \(aqHue\(aq: Enum.Hue, \(aqIBMPC\(aq: Enum.IBMPC, \(aqICC\(aq: Enum.ICC, \(aqIcon\(aq: Enum.Icon, \(aqIdleVM\(aq: Enum.IdleVM, \(aqIgnore\(aq: Enum.Ignore, \(aqImage\(aq: Enum.Image, \(aqImageCachePreferences\(aq: Enum.ImageCachePreferences, \(aqIndexedColor\(aq: Enum.IndexedColor, \(aqInfoPaletteOptions\(aq: Enum.InfoPaletteOptions, \(aqInfoPaletteToggleSamplers\(aq: Enum.InfoPaletteToggleSamplers, \(aqInnerBevel\(aq: Enum.InnerBevel, \(aqInsetFrame\(aq: Enum.InsetFrame, \(aqInside\(aq: Enum.Inside, \(aqJPEG\(aq: Enum.JPEG, \(aqJustifyAll\(aq: Enum.JustifyAll, \(aqJustifyFull\(aq: Enum.JustifyFull, \(aqKeepProfile\(aq: Enum.KeepProfile, \(aqKeyboardPreferences\(aq: Enum.KeyboardPreferences, \(aqLab\(aq: Enum.Lab, \(aqLab48\(aq: Enum.Lab48, \(aqLabColor\(aq: Enum.LabColor, \(aqLarge\(aq: Enum.Large, \(aqLast\(aq: Enum.Last, \(aqLastFilter\(aq: Enum.LastFilter, \(aqLayerOptions\(aq: Enum.LayerOptions, \(aqLayersPaletteOptions\(aq: Enum.LayersPaletteOptions, \(aqLeft\(aq: Enum.Left, \(aqLeft_PLUGIN\(aq: Enum.Left_PLUGIN, \(aqLevelBased\(aq: Enum.LevelBased, \(aqLight\(aq: Enum.Light, \(aqLightBlue\(aq: Enum.LightBlue, \(aqLightDirBottom\(aq: Enum.LightDirBottom, \(aqLightDirBottomLeft\(aq: Enum.LightDirBottomLeft, \(aqLightDirBottomRight\(aq: Enum.LightDirBottomRight, \(aqLightDirLeft\(aq: Enum.LightDirLeft, \(aqLightDirRight\(aq: Enum.LightDirRight, \(aqLightDirTop\(aq: Enum.LightDirTop, \(aqLightDirTopLeft\(aq: Enum.LightDirTopLeft, \(aqLightDirTopRight\(aq: Enum.LightDirTopRight, \(aqLightDirectional\(aq: Enum.LightDirectional, \(aqLightGray\(aq: Enum.LightGray, \(aqLightOmni\(aq: Enum.LightenOnly, \(aqLightPosBottom\(aq: Enum.LightPosBottom, \(aqLightPosBottomLeft\(aq: Enum.LightPosBottomLeft, \(aqLightPosBottomRight\(aq: Enum.LightPosBottomRight, \(aqLightPosLeft\(aq: Enum.LightPosLeft, \(aqLightPosRight\(aq: Enum.LightPosRight, \(aqLightPosTop\(aq: Enum.LightPosTop, \(aqLightPosTopLeft\(aq: Enum.LightPosTopLeft, \(aqLightPosTopRight\(aq: Enum.LightPosTopRight, \(aqLightRed\(aq: Enum.LightRed, \(aqLightSpot\(aq: Enum.LightSpot, \(aqLighten\(aq: Enum.Lighten, \(aqLightenOnly\(aq: Enum.LightenOnly, \(aqLightness\(aq: Enum.Lightness, \(aqLine\(aq: Enum.Line, \(aqLinear\(aq: Enum.Linear, \(aqLines\(aq: Enum.Lines, \(aqLinked\(aq: Enum.Linked, \(aqLongLines\(aq: Enum.LongLines, \(aqLongStrokes\(aq: Enum.LongStrokes, \(aqLow\(aq: Enum.Low, \(aqLowQuality\(aq: Enum.LowQuality, \(aqLower\(aq: Enum.Lower, \(aqLuminosity\(aq: Enum.Luminosity, \(aqMacThumbnail\(aq: Enum.MacThumbnail, \(aqMacintosh\(aq: Enum.Macintosh, \(aqMacintoshSystem\(aq: Enum.MacintoshSystem, \(aqMagenta\(aq: Enum.Magenta, \(aqMagentas\(aq: Enum.Magenta, \(aqMask\(aq: Enum.Mask, \(aqMaskedAreas\(aq: Enum.MaskedAreas, \(aqMasterAdaptive\(aq: Enum.MasterAdaptive, \(aqMasterPerceptual\(aq: Enum.MasterPerceptual, \(aqMasterSelective\(aq: Enum.MasterSelective, \(aqMaximum\(aq: Enum.Maximum, \(aqMaximumQuality\(aq: Enum.MaximumQuality, \(aqMaya\(aq: Enum.Maya, \(aqMedium\(aq: Enum.Medium, \(aqMediumBlue\(aq: Enum.MediumBlue, \(aqMediumDots\(aq: Enum.MediumDots, \(aqMediumLines\(aq: Enum.MediumLines, \(aqMediumQuality\(aq: Enum.MediumQuality, \(aqMediumStrokes\(aq: Enum.MediumStrokes, \(aqMemoryPreferences\(aq: Enum.MemoryPreferences, \(aqMergeChannels\(aq: Enum.MergeChannels, \(aqMerged\(aq: Enum.Merged, \(aqMergedLayers\(aq: Enum.MergedLayers, \(aqMergedLayersOld\(aq: Enum.MergedLayersOld, \(aqMiddle\(aq: Enum.Middle, \(aqMidtones\(aq: Enum.Midtones, \(aqModeGray\(aq: Enum.ModeGray, \(aqModeRGB\(aq: Enum.ModeRGB, \(aqMonitor\(aq: Enum.Monitor, \(aqMonitorSetup\(aq: Enum.MonitorSetup, \(aqMonotone\(aq: Enum.Monotone, \(aqMulti72Color\(aq: Enum.Multi72Color, \(aqMulti72Gray\(aq: Enum.Multi72Gray, \(aqMultiNoCompositePS\(aq: Enum.MultiNoCompositePS, \(aqMultichannel\(aq: Enum.Multichannel, \(aqMultiply\(aq: Enum.Multiply, \(aqNTSC\(aq: Enum.NTSC, \(aqNavigatorPaletteOptions\(aq: Enum.NavigatorPaletteOptions, \(aqNearestNeighbor\(aq: Enum.NearestNeighbor, \(aqNetscapeGray\(aq: Enum.NetscapeGray, \(aqNeutrals\(aq: Enum.Neutrals, \(aqNewView\(aq: Enum.NewView, \(aqNext\(aq: Enum.Next, \(aqNikon\(aq: Enum.Nikon, \(aqNikon105\(aq: Enum.Nikon105, \(aqNo\(aq: Enum.No, \(aqNoCompositePS\(aq: Enum.NoCompositePS, \(aqNormal\(aq: Enum.Normal, \(aqNormalPath\(aq: Enum.NormalPath, \(aqNull\(aq: Enum.Null, \(aqOS2\(aq: Enum.OS2, \(aqOff\(aq: Enum.Off, \(aqOn\(aq: Enum.On, \(aqOpenAs\(aq: Enum.OpenAs, \(aqOrange\(aq: Enum.Orange, \(aqOutFromCenter\(aq: Enum.OutFromCenter, \(aqOutOfGamut\(aq: Enum.OutOfGamut, \(aqOuterBevel\(aq: Enum.OuterBevel, \(aqOutsetFrame\(aq: Enum.OutsetFrame, \(aqOutside\(aq: Enum.Outside, \(aqOverlay\(aq: Enum.Overlay, \(aqP22EBU\(aq: Enum.P22EBU, \(aqPNGFilterAdaptive\(aq: Enum.PNGFilterAdaptive, \(aqPNGFilterAverage\(aq: Enum.PNGFilterAverage, \(aqPNGFilterNone\(aq: Enum.PNGFilterNone, \(aqPNGFilterPaeth\(aq: Enum.PNGFilterPaeth, \(aqPNGFilterSub\(aq: Enum.PNGFilterSub, \(aqPNGFilterUp\(aq: Enum.PNGFilterUp, \(aqPNGInterlaceAdam7\(aq: Enum.PNGInterlaceAdam7, \(aqPNGInterlaceNone\(aq: Enum.PNGInterlaceNone, \(aqPagePosCentered\(aq: Enum.PagePosCentered, \(aqPagePosTopLeft\(aq: Enum.PagePosTopLeft, \(aqPageSetup\(aq: Enum.PageSetup, \(aqPaintbrushEraser\(aq: Enum.PaintbrushEraser, \(aqPalSecam\(aq: Enum.PalSecam, \(aqPanaVision\(aq: Enum.PanaVision, \(aqPathsPaletteOptions\(aq: Enum.PathsPaletteOptions, \(aqPattern\(aq: Enum.Pattern, \(aqPatternDither\(aq: Enum.PatternDither, \(aqPencilEraser\(aq: Enum.PencilEraser, \(aqPerceptual\(aq: Enum.Perceptual, \(aqPerspective\(aq: Enum.Perspective, \(aqPhotoshopPicker\(aq: Enum.PhotoshopPicker, \(aqPickCMYK\(aq: Enum.PickCMYK, \(aqPickGray\(aq: Enum.PickGray, \(aqPickHSB\(aq: Enum.PickHSB, \(aqPickLab\(aq: Enum.PickLab, \(aqPickOptions\(aq: Enum.PickOptions, \(aqPickRGB\(aq: Enum.PickRGB, \(aqPillowEmboss\(aq: Enum.PillowEmboss, \(aqPixelPaintSize1\(aq: Enum.PixelPaintSize1, \(aqPixelPaintSize2\(aq: Enum.PixelPaintSize2, \(aqPixelPaintSize3\(aq: Enum.PixelPaintSize3, \(aqPixelPaintSize4\(aq: Enum.PixelPaintSize4, \(aqPlace\(aq: Enum.Place, \(aqPlaybackOptions\(aq: Enum.PlaybackOptions, \(aqPluginPicker\(aq: Enum.PluginPicker, \(aqPluginsScratchDiskPreferences\(aq: Enum.PluginsScratchDiskPreferences, \(aqPolarToRect\(aq: Enum.PolarToRect, \(aqPondRipples\(aq: Enum.PondRipples, \(aqPrecise\(aq: Enum.Precise, \(aqPreciseMatte\(aq: Enum.PreciseMatte, \(aqPreviewBlack\(aq: Enum.PreviewBlack, \(aqPreviewCMY\(aq: Enum.PreviewCMY, \(aqPreviewCMYK\(aq: Enum.PreviewCMYK, \(aqPreviewCyan\(aq: Enum.PreviewCyan, \(aqPreviewMagenta\(aq: Enum.PreviewMagenta, \(aqPreviewOff\(aq: Enum.PreviewOff, \(aqPreviewYellow\(aq: Enum.PreviewYellow, \(aqPrevious\(aq: Enum.Previous, \(aqPrimaries\(aq: Enum.Primaries, \(aqPrintSize\(aq: Enum.PrintSize, \(aqPrintingInksSetup\(aq: Enum.PrintingInksSetup, \(aqPurple\(aq: Enum.Purple, \(aqPyramids\(aq: Enum.Pyramids, \(aqQCSAverage\(aq: Enum.QCSAverage, \(aqQCSCorner0\(aq: Enum.QCSCorner0, \(aqQCSCorner1\(aq: Enum.QCSCorner1, \(aqQCSCorner2\(aq: Enum.QCSCorner2, \(aqQCSCorner3\(aq: Enum.QCSCorner3, \(aqQCSIndependent\(aq: Enum.QCSIndependent, \(aqQCSSide0\(aq: Enum.QCSSide0, \(aqQCSSide1\(aq: Enum.QCSSide1, \(aqQCSSide2\(aq: Enum.QCSSide2, \(aqQCSSide3\(aq: Enum.QCSSide3, \(aqQuadtone\(aq: Enum.Quadtone, \(aqQueryAlways\(aq: Enum.QueryAlways, \(aqQueryAsk\(aq: Enum.QueryAsk, \(aqQueryNever\(aq: Enum.QueryNever, \(aqRGB\(aq: Enum.RGB, \(aqRGB48\(aq: Enum.RGB48, \(aqRGBColor\(aq: Enum.RGBColor, \(aqRadial\(aq: Enum.Radial, \(aqRandom\(aq: Enum.Random, \(aqRectToPolar\(aq: Enum.RectToPolar, \(aqRed\(aq: Enum.Red, \(aqRedrawComplete\(aq: Enum.RedrawComplete, \(aqReds\(aq: Enum.Reds, \(aqReflected\(aq: Enum.Reflected, \(aqRelative\(aq: Enum.Relative, \(aqRepeat\(aq: Enum.Repeat, \(aqRepeatEdgePixels\(aq: Enum.RepeatEdgePixels, \(aqRevealAll\(aq: Enum.RevealAll, \(aqRevealSelection\(aq: Enum.RevealSelection, \(aqRevert\(aq: Enum.Revert, \(aqRight\(aq: Enum.Right, \(aqRotate\(aq: Enum.Rotate, \(aqRotoscopingPreferences\(aq: Enum.RotoscopingPreferences, \(aqRound\(aq: Enum.Round, \(aqRulerCm\(aq: Enum.RulerCm, \(aqRulerInches\(aq: Enum.RulerInches, \(aqRulerPercent\(aq: Enum.RulerPercent, \(aqRulerPicas\(aq: Enum.RulerPicas, \(aqRulerPixels\(aq: Enum.RulerPixels, \(aqRulerPoints\(aq: Enum.RulerPoints, \(aqSMPTEC\(aq: Enum.SMPTEC, \(aqSRGB\(aq: Enum.SRGB, \(aqSample3x3\(aq: Enum.Sample3x3, \(aqSample5x5\(aq: Enum.Sample5x5, \(aqSamplePoint\(aq: Enum.SamplePoint, \(aqSaturate\(aq: Enum.Saturate, \(aqSaturation\(aq: Enum.Saturation, \(aqSaveForWeb\(aq: Enum.SaveForWeb, \(aqSaved\(aq: Enum.Saved, \(aqSavingFilesPreferences\(aq: Enum.SavingFilesPreferences, \(aqScale\(aq: Enum.Scale, \(aqScreen\(aq: Enum.Screen, \(aqScreenCircle\(aq: Enum.ScreenCircle, \(aqScreenDot\(aq: Enum.ScreenDot, \(aqScreenLine\(aq: Enum.ScreenLine, \(aqSelectedAreas\(aq: Enum.SelectedAreas, \(aqSelection\(aq: Enum.Selection, \(aqSelective\(aq: Enum.Selective, \(aqSeparationSetup\(aq: Enum.SeparationSetup, \(aqSeparationTables\(aq: Enum.SeparationTables, \(aqShadows\(aq: Enum.Shadows, \(aqShortLines\(aq: Enum.ShortLines, \(aqShortStrokes\(aq: Enum.ShortStrokes, \(aqSingle72Color\(aq: Enum.Single72Color, \(aqSingle72Gray\(aq: Enum.Single72Gray, \(aqSingleNoCompositePS\(aq: Enum.SingleNoCompositePS, \(aqSkew\(aq: Enum.Skew, \(aqSlopeLimitMatte\(aq: Enum.SlopeLimitMatte, \(aqSmall\(aq: Enum.Small, \(aqSmartBlurModeEdgeOnly\(aq: Enum.SmartBlurModeEdgeOnly, \(aqSmartBlurModeNormal\(aq: Enum.SmartBlurModeNormal, \(aqSmartBlurModeOverlayEdge\(aq: Enum.SmartBlurModeOverlayEdge, \(aqSmartBlurQualityHigh\(aq: Enum.SmartBlurQualityHigh, \(aqSmartBlurQualityLow\(aq: Enum.SmartBlurQualityLow, \(aqSmartBlurQualityMedium\(aq: Enum.SmartBlurQualityMedium, \(aqSnapshot\(aq: Enum.Snapshot, \(aqSoftLight\(aq: Enum.SoftLight, \(aqSoftMatte\(aq: Enum.SoftMatte, \(aqSolidColor\(aq: Enum.SolidColor, \(aqSpectrum\(aq: Enum.Spectrum, \(aqSpin\(aq: Enum.Spin, \(aqSpotColor\(aq: Enum.SpotColor, \(aqSquare\(aq: Enum.Square, \(aqStagger\(aq: Enum.Stagger, \(aqStampIn\(aq: Enum.StampIn, \(aqStampOut\(aq: Enum.StampOut, \(aqStandard\(aq: Enum.Standard, \(aqStdA\(aq: Enum.StdA, \(aqStdB\(aq: Enum.StdB, \(aqStdC\(aq: Enum.StdC, \(aqStdE\(aq: Enum.StdE, \(aqStretchToFit\(aq: Enum.StretchToFit, \(aqStrokeDirHorizontal\(aq: Enum.StrokeDirHorizontal, \(aqStrokeDirLeftDiag\(aq: Enum.StrokeDirLeftDiag, \(aqStrokeDirRightDiag\(aq: Enum.StrokeDirRightDiag, \(aqStrokeDirVertical\(aq: Enum.StrokeDirVertical, \(aqStylesAppend\(aq: Enum.StylesAppend, \(aqStylesDelete\(aq: Enum.StylesDelete, \(aqStylesLoad\(aq: Enum.StylesLoad, \(aqStylesNew\(aq: Enum.StylesNew, \(aqStylesReset\(aq: Enum.StylesReset, \(aqStylesSave\(aq: Enum.StylesSave, \(aqSubtract\(aq: Enum.Subtract, \(aqSwatchesAppend\(aq: Enum.SwatchesAppend, \(aqSwatchesReplace\(aq: Enum.SwatchesReplace, \(aqSwatchesReset\(aq: Enum.SwatchesReset, \(aqSwatchesSave\(aq: Enum.SwatchesSave, \(aqSystemPicker\(aq: Enum.SystemPicker, \(aqTIFF\(aq: Enum.TIFF, \(aqTables\(aq: Enum.Tables, \(aqTarget\(aq: Enum.Target, \(aqTargetPath\(aq: Enum.TargetPath, \(aqTexTypeBlocks\(aq: Enum.TexTypeBlocks, \(aqTexTypeBrick\(aq: Enum.TexTypeBrick, \(aqTexTypeBurlap\(aq: Enum.TexTypeBurlap, \(aqTexTypeCanvas\(aq: Enum.TexTypeCanvas, \(aqTexTypeFrosted\(aq: Enum.TexTypeFrosted, \(aqTexTypeSandstone\(aq: Enum.TexTypeSandstone, \(aqTexTypeTinyLens\(aq: Enum.TexTypeTinyLens, \(aqThreshold\(aq: Enum.Threshold, \(aqThumbnail\(aq: Enum.Thumbnail, \(aqTile\(aq: Enum.Tile, \(aqTile_PLUGIN\(aq: Enum.Tile_PLUGIN, \(aqToggleActionsPalette\(aq: Enum.ToggleActionsPalette, \(aqToggleBlackPreview\(aq: Enum.ToggleBlackPreview, \(aqToggleBrushesPalette\(aq: Enum.ToggleBrushesPalette, \(aqToggleCMYKPreview\(aq: Enum.ToggleCMYKPreview, \(aqToggleCMYPreview\(aq: Enum.ToggleCMYPreview, \(aqToggleChannelsPalette\(aq: Enum.ToggleChannelsPalette, \(aqToggleColorPalette\(aq: Enum.ToggleColorPalette, \(aqToggleCyanPreview\(aq: Enum.ToggleCyanPreview, \(aqToggleDocumentPalette\(aq: Enum.ToggleDocumentPalette, \(aqToggleEdges\(aq: Enum.ToggleEdges, \(aqToggleGamutWarning\(aq: Enum.ToggleGamutWarning, \(aqToggleGrid\(aq: Enum.ToggleGrid, \(aqToggleGuides\(aq: Enum.ToggleGuides, \(aqToggleHistoryPalette\(aq: Enum.ToggleHistoryPalette, \(aqToggleInfoPalette\(aq: Enum.ToggleInfoPalette, \(aqToggleLayerMask\(aq: Enum.ToggleLayerMask, \(aqToggleLayersPalette\(aq: Enum.ToggleLayersPalette, \(aqToggleLockGuides\(aq: Enum.ToggleLockGuides, \(aqToggleMagentaPreview\(aq: Enum.ToggleMagentaPreview, \(aqToggleNavigatorPalette\(aq: Enum.ToggleNavigatorPalette, \(aqToggleOptionsPalette\(aq: Enum.ToggleOptionsPalette, \(aqTogglePaths\(aq: Enum.TogglePaths, \(aqTogglePathsPalette\(aq: Enum.TogglePathsPalette, \(aqToggleRGBMacPreview\(aq: Enum.ToggleRGBMacPreview, \(aqToggleRGBUncompensatedPreview\(aq: Enum.ToggleRGBUncompensatedPreview, \(aqToggleRGBWindowsPreview\(aq: Enum.ToggleRGBWindowsPreview, \(aqToggleRulers\(aq: Enum.ToggleRulers, \(aqToggleSnapToGrid\(aq: Enum.ToggleSnapToGrid, \(aqToggleSnapToGuides\(aq: Enum.ToggleSnapToGuides, \(aqToggleStatusBar\(aq: Enum.ToggleStatusBar, \(aqToggleStylesPalette\(aq: Enum.ToggleStylesPalette, \(aqToggleSwatchesPalette\(aq: Enum.ToggleSwatchesPalette, \(aqToggleToolsPalette\(aq: Enum.ToggleToolsPalette, \(aqToggleYellowPreview\(aq: Enum.ToggleYellowPreview, \(aqTop\(aq: Enum.Top, \(aqTransparency\(aq: Enum.Transparency, \(aqTransparencyGamutPreferences\(aq: Enum.TransparencyGamutPreferences, \(aqTransparent\(aq: Enum.Transparent, \(aqTrinitron\(aq: Enum.Trinitron, \(aqTritone\(aq: Enum.Tritone, \(aqUIBitmap\(aq: Enum.UIBitmap, \(aqUICMYK\(aq: Enum.UICMYK, \(aqUIDuotone\(aq: Enum.UIDuotone, \(aqUIGrayscale\(aq: Enum.UIGrayscale, \(aqUIIndexed\(aq: Enum.UIIndexed, \(aqUILab\(aq: Enum.UILab, \(aqUIMultichannel\(aq: Enum.UIMultichannel, \(aqUIRGB\(aq: Enum.UIRGB, \(aqUndo\(aq: Enum.Undo, \(aqUniform\(aq: Enum.Uniform, \(aqUniformDistribution\(aq: Enum.UniformDistribution, \(aqUnitsRulersPreferences\(aq: Enum.UnitsRulersPreferences, \(aqUpper\(aq: Enum.Upper, \(aqUserStop\(aq: Enum.UserStop, \(aqVMPreferences\(aq: Enum.VMPreferences, \(aqVertical\(aq: Enum.Vertical, \(aqVerticalOnly\(aq: Enum.VerticalOnly, \(aqViolet\(aq: Enum.Violet, \(aqWaveSine\(aq: Enum.WaveSine, \(aqWaveSquare\(aq: Enum.WaveSquare, \(aqWaveTriangle\(aq: Enum.WaveTriangle, \(aqWeb\(aq: Enum.Web, \(aqWhite\(aq: Enum.White, \(aqWhites\(aq: Enum.Whites, \(aqWideGamutRGB\(aq: Enum.WideGamutRGB, \(aqWidePhosphors\(aq: Enum.WidePhosphors, \(aqWinThumbnail\(aq: Enum.WinThumbnail, \(aqWind\(aq: Enum.Wind, \(aqWindows\(aq: Enum.Windows, \(aqWindowsSystem\(aq: Enum.WindowsSystem, \(aqWorkPath\(aq: Enum.WorkPath, \(aqWrap\(aq: Enum.Wrap, \(aqWrapAround\(aq: Enum.WrapAround, \(aqYellow\(aq: Enum.Yellow, \(aqYellowColor\(aq: Enum.YellowColor, \(aqYellows\(aq: Enum.Yellows, \(aqYes\(aq: Enum.Yes, \(aqZip\(aq: Enum.Zip, \(aqZoom\(aq: Enum.Zoom, \(aqZoomIn\(aq: Enum.ZoomIn, \(aqZoomOut\(aq: Enum.ZoomOut, \(aq_16BitsPerPixel\(aq: Enum._16BitsPerPixel, \(aq_1BitPerPixel\(aq: Enum._1BitPerPixel, \(aq_2BitsPerPixel\(aq: Enum._2BitsPerPixel, \(aq_32BitsPerPixel\(aq: Enum._32BitsPerPixel, \(aq_4BitsPerPixel\(aq: Enum._4BitsPerPixel, \(aq_5000\(aq: Enum._5000, \(aq_5500\(aq: Enum._5500, \(aq_6500\(aq: Enum._6500, \(aq_72Color\(aq: Enum._72Color, \(aq_72Gray\(aq: Enum._72Gray, \(aq_7500\(aq: Enum._7500, \(aq_8BitsPerPixel\(aq: Enum._8BitsPerPixel, \(aq_9300\(aq: Enum._9300, \(aq_None\(aq: Enum._None} .UNINDENT .INDENT 7.0 .TP .B _member_names_ = [\(aqAdd\(aq, \(aqAmountHigh\(aq, \(aqAmountLow\(aq, \(aqAmountMedium\(aq, \(aqAntiAliasNone\(aq, \(aqAntiAliasLow\(aq, \(aqAntiAliasMedium\(aq, \(aqAntiAliasHigh\(aq, \(aqAntiAliasCrisp\(aq, \(aqAntiAliasStrong\(aq, \(aqAntiAliasSmooth\(aq, \(aqAppleRGB\(aq, \(aqASCII\(aq, \(aqAskWhenOpening\(aq, \(aqBicubic\(aq, \(aqBinary\(aq, \(aqMonitorSetup\(aq, \(aq_16BitsPerPixel\(aq, \(aq_1BitPerPixel\(aq, \(aq_2BitsPerPixel\(aq, \(aq_32BitsPerPixel\(aq, \(aq_4BitsPerPixel\(aq, \(aq_5000\(aq, \(aq_5500\(aq, \(aq_6500\(aq, \(aq_72Color\(aq, \(aq_72Gray\(aq, \(aq_7500\(aq, \(aq_8BitsPerPixel\(aq, \(aq_9300\(aq, \(aqA\(aq, \(aqAbsColorimetric\(aq, \(aqADSBottoms\(aq, \(aqADSCentersH\(aq, \(aqADSCentersV\(aq, \(aqADSHorizontal\(aq, \(aqADSLefts\(aq, \(aqADSRights\(aq, \(aqADSTops\(aq, \(aqADSVertical\(aq, \(aqAboutApp\(aq, \(aqAbsolute\(aq, \(aqActualPixels\(aq, \(aqAdaptive\(aq, \(aqAdjustmentOptions\(aq, \(aqAirbrushEraser\(aq, \(aqAll\(aq, \(aqAmiga\(aq, \(aqAngle\(aq, \(aqAny\(aq, \(aqApplyImage\(aq, \(aqAroundCenter\(aq, \(aqArrange\(aq, \(aqAsk\(aq, \(aqB\(aq, \(aqBack\(aq, \(aqBackground\(aq, \(aqBackgroundColor\(aq, \(aqBackward\(aq, \(aqBehind\(aq, \(aqBest\(aq, \(aqBetter\(aq, \(aqBilinear\(aq, \(aqBitDepth1\(aq, \(aqBitDepth16\(aq, \(aqBitDepth24\(aq, \(aqBitDepth32\(aq, \(aqBitDepth4\(aq, \(aqBitDepth8\(aq, \(aqBitDepthA1R5G5B5\(aq, \(aqBitDepthR5G6B5\(aq, \(aqBitDepthX4R4G4B4\(aq, \(aqBitDepthA4R4G4B4\(aq, \(aqBitDepthX8R8G8B8\(aq, \(aqBitmap\(aq, \(aqBlack\(aq, \(aqBlackAndWhite\(aq, \(aqBlackBody\(aq, \(aqBlacks\(aq, \(aqBlockEraser\(aq, \(aqBlast\(aq, \(aqBlue\(aq, \(aqBlues\(aq, \(aqBottom\(aq, \(aqBrushDarkRough\(aq, \(aqBrushesAppend\(aq, \(aqBrushesDefine\(aq, \(aqBrushesDelete\(aq, \(aqBrushesLoad\(aq, \(aqBrushesNew\(aq, \(aqBrushesOptions\(aq, \(aqBrushesReset\(aq, \(aqBrushesSave\(aq, \(aqBrushLightRough\(aq, \(aqBrushSimple\(aq, \(aqBrushSize\(aq, \(aqBrushSparkle\(aq, \(aqBrushWideBlurry\(aq, \(aqBrushWideSharp\(aq, \(aqBuiltin\(aq, \(aqBurnInH\(aq, \(aqBurnInM\(aq, \(aqBurnInS\(aq, \(aqButtonMode\(aq, \(aqCIERGB\(aq, \(aqWidePhosphors\(aq, \(aqWideGamutRGB\(aq, \(aqCMYK\(aq, \(aqCMYK64\(aq, \(aqCMYKColor\(aq, \(aqCalculations\(aq, \(aqCascade\(aq, \(aqCenter\(aq, \(aqCenterGlow\(aq, \(aqCenteredFrame\(aq, \(aqChannelOptions\(aq, \(aqChannelsPaletteOptions\(aq, \(aqCheckerboardNone\(aq, \(aqCheckerboardSmall\(aq, \(aqCheckerboardMedium\(aq, \(aqCheckerboardLarge\(aq, \(aqClear\(aq, \(aqClearGuides\(aq, \(aqClipboard\(aq, \(aqClippingPath\(aq, \(aqCloseAll\(aq, \(aqCoarseDots\(aq, \(aqColor\(aq, \(aqColorBurn\(aq, \(aqColorDodge\(aq, \(aqColorMatch\(aq, \(aqColorNoise\(aq, \(aqColorimetric\(aq, \(aqComposite\(aq, \(aqConvertToCMYK\(aq, \(aqConvertToGray\(aq, \(aqConvertToLab\(aq, \(aqConvertToRGB\(aq, \(aqCreateDuplicate\(aq, \(aqCreateInterpolation\(aq, \(aqCross\(aq, \(aqCurrentLayer\(aq, \(aqCustom\(aq, \(aqCustomPattern\(aq, \(aqCustomStops\(aq, \(aqCyan\(aq, \(aqCyans\(aq, \(aqDark\(aq, \(aqDarken\(aq, \(aqDarkenOnly\(aq, \(aqDashedLines\(aq, \(aqDesaturate\(aq, \(aqDiamond\(aq, \(aqDifference\(aq, \(aqDiffusion\(aq, \(aqDiffusionDither\(aq, \(aqDisplayCursorsPreferences\(aq, \(aqDissolve\(aq, \(aqDistort\(aq, \(aqDodgeH\(aq, \(aqDodgeM\(aq, \(aqDodgeS\(aq, \(aqDots\(aq, \(aqDraft\(aq, \(aqDuotone\(aq, \(aqEBUITU\(aq, \(aqEdgeGlow\(aq, \(aqEliminateEvenFields\(aq, \(aqEliminateOddFields\(aq, \(aqEllipse\(aq, \(aqEmboss\(aq, \(aqExact\(aq, \(aqExclusion\(aq, \(aqFPXCompressLossyJPEG\(aq, \(aqFPXCompressNone\(aq, \(aqFaster\(aq, \(aqFile\(aq, \(aqFileInfo\(aq, \(aqFillBack\(aq, \(aqFillFore\(aq, \(aqFillSame\(aq, \(aqFineDots\(aq, \(aqFirst\(aq, \(aqFirstIdle\(aq, \(aqFitOnScreen\(aq, \(aqForegroundColor\(aq, \(aqForward\(aq, \(aqFreeTransform\(aq, \(aqFront\(aq, \(aqFullDocument\(aq, \(aqFullSize\(aq, \(aqGaussianDistribution\(aq, \(aqGIFColorFileColorTable\(aq, \(aqGIFColorFileColors\(aq, \(aqGIFColorFileMicrosoftPalette\(aq, \(aqGIFPaletteAdaptive\(aq, \(aqGIFPaletteExact\(aq, \(aqGIFPaletteOther\(aq, \(aqGIFPaletteSystem\(aq, \(aqGIFRequiredColorSpaceIndexed\(aq, \(aqGIFRequiredColorSpaceRGB\(aq, \(aqGIFRowOrderInterlaced\(aq, \(aqGIFRowOrderNormal\(aq, \(aqGeneralPreferences\(aq, \(aqGood\(aq, \(aqGradientFill\(aq, \(aqGrainClumped\(aq, \(aqGrainContrasty\(aq, \(aqGrainEnlarged\(aq, \(aqGrainHorizontal\(aq, \(aqGrainRegular\(aq, \(aqGrainSoft\(aq, \(aqGrainSpeckle\(aq, \(aqGrainSprinkles\(aq, \(aqGrainStippled\(aq, \(aqGrainVertical\(aq, \(aqGrainyDots\(aq, \(aqGraphics\(aq, \(aqGray\(aq, \(aqGray16\(aq, \(aqGray18\(aq, \(aqGray22\(aq, \(aqGray50\(aq, \(aqGrayScale\(aq, \(aqGrayscale\(aq, \(aqGreen\(aq, \(aqGreens\(aq, \(aqGuidesGridPreferences\(aq, \(aqHDTV\(aq, \(aqHSBColor\(aq, \(aqHSLColor\(aq, \(aqHalftoneFile\(aq, \(aqHalftoneScreen\(aq, \(aqHardLight\(aq, \(aqHeavy\(aq, \(aqHideAll\(aq, \(aqHideSelection\(aq, \(aqHigh\(aq, \(aqHighQuality\(aq, \(aqHighlights\(aq, \(aqHistogram\(aq, \(aqHistory\(aq, \(aqHistoryPaletteOptions\(aq, \(aqHistoryPreferences\(aq, \(aqHorizontal\(aq, \(aqHorizontalOnly\(aq, \(aqHue\(aq, \(aqIBMPC\(aq, \(aqICC\(aq, \(aqIcon\(aq, \(aqIdleVM\(aq, \(aqIgnore\(aq, \(aqImage\(aq, \(aqImageCachePreferences\(aq, \(aqIndexedColor\(aq, \(aqInfoPaletteOptions\(aq, \(aqInfoPaletteToggleSamplers\(aq, \(aqInnerBevel\(aq, \(aqInsetFrame\(aq, \(aqInside\(aq, \(aqJPEG\(aq, \(aqJustifyAll\(aq, \(aqJustifyFull\(aq, \(aqKeepProfile\(aq, \(aqKeyboardPreferences\(aq, \(aqLab\(aq, \(aqLab48\(aq, \(aqLabColor\(aq, \(aqLarge\(aq, \(aqLast\(aq, \(aqLastFilter\(aq, \(aqLayerOptions\(aq, \(aqLayersPaletteOptions\(aq, \(aqLeft\(aq, \(aqLeft_PLUGIN\(aq, \(aqLevelBased\(aq, \(aqLight\(aq, \(aqLightBlue\(aq, \(aqLightDirBottom\(aq, \(aqLightDirBottomLeft\(aq, \(aqLightDirBottomRight\(aq, \(aqLightDirLeft\(aq, \(aqLightDirRight\(aq, \(aqLightDirTop\(aq, \(aqLightDirTopLeft\(aq, \(aqLightDirTopRight\(aq, \(aqLightGray\(aq, \(aqLightDirectional\(aq, \(aqLightenOnly\(aq, \(aqLightPosBottom\(aq, \(aqLightPosBottomLeft\(aq, \(aqLightPosBottomRight\(aq, \(aqLightPosLeft\(aq, \(aqLightPosRight\(aq, \(aqLightPosTop\(aq, \(aqLightPosTopLeft\(aq, \(aqLightPosTopRight\(aq, \(aqLightRed\(aq, \(aqLightSpot\(aq, \(aqLighten\(aq, \(aqLightness\(aq, \(aqLine\(aq, \(aqLines\(aq, \(aqLinear\(aq, \(aqLinked\(aq, \(aqLongLines\(aq, \(aqLongStrokes\(aq, \(aqLow\(aq, \(aqLower\(aq, \(aqLowQuality\(aq, \(aqLuminosity\(aq, \(aqMaya\(aq, \(aqMacThumbnail\(aq, \(aqMacintosh\(aq, \(aqMacintoshSystem\(aq, \(aqMagenta\(aq, \(aqMask\(aq, \(aqMaskedAreas\(aq, \(aqMasterAdaptive\(aq, \(aqMasterPerceptual\(aq, \(aqMasterSelective\(aq, \(aqMaximum\(aq, \(aqMaximumQuality\(aq, \(aqMedium\(aq, \(aqMediumBlue\(aq, \(aqMediumQuality\(aq, \(aqMediumDots\(aq, \(aqMediumLines\(aq, \(aqMediumStrokes\(aq, \(aqMemoryPreferences\(aq, \(aqMergeChannels\(aq, \(aqMerged\(aq, \(aqMergedLayers\(aq, \(aqMergedLayersOld\(aq, \(aqMiddle\(aq, \(aqMidtones\(aq, \(aqModeGray\(aq, \(aqModeRGB\(aq, \(aqMonitor\(aq, \(aqMonotone\(aq, \(aqMulti72Color\(aq, \(aqMulti72Gray\(aq, \(aqMultichannel\(aq, \(aqMultiNoCompositePS\(aq, \(aqMultiply\(aq, \(aqNavigatorPaletteOptions\(aq, \(aqNearestNeighbor\(aq, \(aqNetscapeGray\(aq, \(aqNeutrals\(aq, \(aqNewView\(aq, \(aqNext\(aq, \(aqNikon\(aq, \(aqNikon105\(aq, \(aqNo\(aq, \(aqNoCompositePS\(aq, \(aq_None\(aq, \(aqNormal\(aq, \(aqNormalPath\(aq, \(aqNTSC\(aq, \(aqNull\(aq, \(aqOS2\(aq, \(aqOff\(aq, \(aqOn\(aq, \(aqOpenAs\(aq, \(aqOrange\(aq, \(aqOutFromCenter\(aq, \(aqOutOfGamut\(aq, \(aqOuterBevel\(aq, \(aqOutside\(aq, \(aqOutsetFrame\(aq, \(aqOverlay\(aq, \(aqPaintbrushEraser\(aq, \(aqPencilEraser\(aq, \(aqP22EBU\(aq, \(aqPNGFilterAdaptive\(aq, \(aqPNGFilterAverage\(aq, \(aqPNGFilterNone\(aq, \(aqPNGFilterPaeth\(aq, \(aqPNGFilterSub\(aq, \(aqPNGFilterUp\(aq, \(aqPNGInterlaceAdam7\(aq, \(aqPNGInterlaceNone\(aq, \(aqPagePosCentered\(aq, \(aqPagePosTopLeft\(aq, \(aqPageSetup\(aq, \(aqPalSecam\(aq, \(aqPanaVision\(aq, \(aqPathsPaletteOptions\(aq, \(aqPattern\(aq, \(aqPatternDither\(aq, \(aqPerceptual\(aq, \(aqPerspective\(aq, \(aqPhotoshopPicker\(aq, \(aqPickCMYK\(aq, \(aqPickGray\(aq, \(aqPickHSB\(aq, \(aqPickLab\(aq, \(aqPickOptions\(aq, \(aqPickRGB\(aq, \(aqPillowEmboss\(aq, \(aqPixelPaintSize1\(aq, \(aqPixelPaintSize2\(aq, \(aqPixelPaintSize3\(aq, \(aqPixelPaintSize4\(aq, \(aqPlace\(aq, \(aqPlaybackOptions\(aq, \(aqPluginPicker\(aq, \(aqPluginsScratchDiskPreferences\(aq, \(aqPolarToRect\(aq, \(aqPondRipples\(aq, \(aqPrecise\(aq, \(aqPreciseMatte\(aq, \(aqPreviewOff\(aq, \(aqPreviewCMYK\(aq, \(aqPreviewCyan\(aq, \(aqPreviewMagenta\(aq, \(aqPreviewYellow\(aq, \(aqPreviewBlack\(aq, \(aqPreviewCMY\(aq, \(aqPrevious\(aq, \(aqPrimaries\(aq, \(aqPrintSize\(aq, \(aqPrintingInksSetup\(aq, \(aqPurple\(aq, \(aqPyramids\(aq, \(aqQCSAverage\(aq, \(aqQCSCorner0\(aq, \(aqQCSCorner1\(aq, \(aqQCSCorner2\(aq, \(aqQCSCorner3\(aq, \(aqQCSIndependent\(aq, \(aqQCSSide0\(aq, \(aqQCSSide1\(aq, \(aqQCSSide2\(aq, \(aqQCSSide3\(aq, \(aqQuadtone\(aq, \(aqQueryAlways\(aq, \(aqQueryAsk\(aq, \(aqQueryNever\(aq, \(aqRepeat\(aq, \(aqRGB\(aq, \(aqRGB48\(aq, \(aqRGBColor\(aq, \(aqRadial\(aq, \(aqRandom\(aq, \(aqRectToPolar\(aq, \(aqRed\(aq, \(aqRedrawComplete\(aq, \(aqReds\(aq, \(aqReflected\(aq, \(aqRelative\(aq, \(aqRepeatEdgePixels\(aq, \(aqRevealAll\(aq, \(aqRevealSelection\(aq, \(aqRevert\(aq, \(aqRight\(aq, \(aqRotate\(aq, \(aqRotoscopingPreferences\(aq, \(aqRound\(aq, \(aqRulerCm\(aq, \(aqRulerInches\(aq, \(aqRulerPercent\(aq, \(aqRulerPicas\(aq, \(aqRulerPixels\(aq, \(aqRulerPoints\(aq, \(aqAdobeRGB1998\(aq, \(aqSMPTEC\(aq, \(aqSRGB\(aq, \(aqSample3x3\(aq, \(aqSample5x5\(aq, \(aqSamplePoint\(aq, \(aqSaturate\(aq, \(aqSaturation\(aq, \(aqSaved\(aq, \(aqSaveForWeb\(aq, \(aqSavingFilesPreferences\(aq, \(aqScale\(aq, \(aqScreen\(aq, \(aqScreenCircle\(aq, \(aqScreenDot\(aq, \(aqScreenLine\(aq, \(aqSelectedAreas\(aq, \(aqSelection\(aq, \(aqSelective\(aq, \(aqSeparationSetup\(aq, \(aqSeparationTables\(aq, \(aqShadows\(aq, \(aqContourLinear\(aq, \(aqContourGaussian\(aq, \(aqContourSingle\(aq, \(aqContourDouble\(aq, \(aqContourTriple\(aq, \(aqContourCustom\(aq, \(aqShortLines\(aq, \(aqShortStrokes\(aq, \(aqSingle72Color\(aq, \(aqSingle72Gray\(aq, \(aqSingleNoCompositePS\(aq, \(aqSkew\(aq, \(aqSlopeLimitMatte\(aq, \(aqSmall\(aq, \(aqSmartBlurModeEdgeOnly\(aq, \(aqSmartBlurModeNormal\(aq, \(aqSmartBlurModeOverlayEdge\(aq, \(aqSmartBlurQualityHigh\(aq, \(aqSmartBlurQualityLow\(aq, \(aqSmartBlurQualityMedium\(aq, \(aqSnapshot\(aq, \(aqSolidColor\(aq, \(aqSoftLight\(aq, \(aqSoftMatte\(aq, \(aqSpectrum\(aq, \(aqSpin\(aq, \(aqSpotColor\(aq, \(aqSquare\(aq, \(aqStagger\(aq, \(aqStampIn\(aq, \(aqStampOut\(aq, \(aqStandard\(aq, \(aqStdA\(aq, \(aqStdB\(aq, \(aqStdC\(aq, \(aqStdE\(aq, \(aqStretchToFit\(aq, \(aqStrokeDirHorizontal\(aq, \(aqStrokeDirLeftDiag\(aq, \(aqStrokeDirRightDiag\(aq, \(aqStrokeDirVertical\(aq, \(aqStylesAppend\(aq, \(aqStylesDelete\(aq, \(aqStylesLoad\(aq, \(aqStylesNew\(aq, \(aqStylesReset\(aq, \(aqStylesSave\(aq, \(aqSubtract\(aq, \(aqSwatchesAppend\(aq, \(aqSwatchesReplace\(aq, \(aqSwatchesReset\(aq, \(aqSwatchesSave\(aq, \(aqSystemPicker\(aq, \(aqTables\(aq, \(aqTarget\(aq, \(aqTargetPath\(aq, \(aqTexTypeBlocks\(aq, \(aqTexTypeBrick\(aq, \(aqTexTypeBurlap\(aq, \(aqTexTypeCanvas\(aq, \(aqTexTypeFrosted\(aq, \(aqTexTypeSandstone\(aq, \(aqTexTypeTinyLens\(aq, \(aqThreshold\(aq, \(aqThumbnail\(aq, \(aqTIFF\(aq, \(aqTile\(aq, \(aqTile_PLUGIN\(aq, \(aqToggleActionsPalette\(aq, \(aqToggleBlackPreview\(aq, \(aqToggleBrushesPalette\(aq, \(aqToggleCMYKPreview\(aq, \(aqToggleCMYPreview\(aq, \(aqToggleChannelsPalette\(aq, \(aqToggleColorPalette\(aq, \(aqToggleCyanPreview\(aq, \(aqToggleEdges\(aq, \(aqToggleGamutWarning\(aq, \(aqToggleGrid\(aq, \(aqToggleGuides\(aq, \(aqToggleHistoryPalette\(aq, \(aqToggleInfoPalette\(aq, \(aqToggleLayerMask\(aq, \(aqToggleLayersPalette\(aq, \(aqToggleLockGuides\(aq, \(aqToggleMagentaPreview\(aq, \(aqToggleNavigatorPalette\(aq, \(aqToggleOptionsPalette\(aq, \(aqTogglePaths\(aq, \(aqTogglePathsPalette\(aq, \(aqToggleRGBMacPreview\(aq, \(aqToggleRGBWindowsPreview\(aq, \(aqToggleRGBUncompensatedPreview\(aq, \(aqToggleRulers\(aq, \(aqToggleSnapToGrid\(aq, \(aqToggleSnapToGuides\(aq, \(aqToggleStatusBar\(aq, \(aqToggleStylesPalette\(aq, \(aqToggleSwatchesPalette\(aq, \(aqToggleToolsPalette\(aq, \(aqToggleYellowPreview\(aq, \(aqToggleDocumentPalette\(aq, \(aqTop\(aq, \(aqTransparency\(aq, \(aqTransparencyGamutPreferences\(aq, \(aqTransparent\(aq, \(aqTrinitron\(aq, \(aqTritone\(aq, \(aqUIBitmap\(aq, \(aqUICMYK\(aq, \(aqUIDuotone\(aq, \(aqUIGrayscale\(aq, \(aqUIIndexed\(aq, \(aqUILab\(aq, \(aqUIMultichannel\(aq, \(aqUIRGB\(aq, \(aqUndo\(aq, \(aqUniform\(aq, \(aqUniformDistribution\(aq, \(aqUnitsRulersPreferences\(aq, \(aqUpper\(aq, \(aqUserStop\(aq, \(aqVMPreferences\(aq, \(aqVertical\(aq, \(aqVerticalOnly\(aq, \(aqViolet\(aq, \(aqWaveSine\(aq, \(aqWaveSquare\(aq, \(aqWaveTriangle\(aq, \(aqWeb\(aq, \(aqWhite\(aq, \(aqWhites\(aq, \(aqWinThumbnail\(aq, \(aqWind\(aq, \(aqWindows\(aq, \(aqWindowsSystem\(aq, \(aqWrap\(aq, \(aqWrapAround\(aq, \(aqWorkPath\(aq, \(aqYellow\(aq, \(aqYellowColor\(aq, \(aqYellows\(aq, \(aqYes\(aq, \(aqZip\(aq, \(aqZoom\(aq, \(aqZoomIn\(aq, \(aqZoomOut\(aq] .UNINDENT .INDENT 7.0 .TP .B _member_type_ alias of \fBbytes\fP .UNINDENT .INDENT 7.0 .TP .B _new_member_(**kwargs) Create and return a new object. See help(type) for accurate signature. .UNINDENT .INDENT 7.0 .TP .B _unhashable_values_ = [] .UNINDENT .INDENT 7.0 .TP .B _use_args_ = True .UNINDENT .INDENT 7.0 .TP .B _value2member_map_ = {b\(aq1565\(aq: Enum.BitDepthA1R5G5B5, b\(aq16Bt\(aq: Enum._16BitsPerPixel, b\(aq2Bts\(aq: Enum._2BitsPerPixel, b\(aq32Bt\(aq: Enum._32BitsPerPixel, b\(aq4444\(aq: Enum.BitDepthA4R4G4B4, b\(aq4Bts\(aq: Enum._4BitsPerPixel, b\(aq5000\(aq: Enum._5000, b\(aq5500\(aq: Enum._5500, b\(aq6500\(aq: Enum._6500, b\(aq72CM\(aq: Enum.Multi72Color, b\(aq72CS\(aq: Enum.Single72Color, b\(aq72Cl\(aq: Enum._72Color, b\(aq72GM\(aq: Enum.Multi72Gray, b\(aq72GS\(aq: Enum.Single72Gray, b\(aq72Gr\(aq: Enum._72Gray, b\(aq7500\(aq: Enum._7500, b\(aq9300\(aq: Enum._9300, b\(aqA \(aq: Enum.A, b\(aqAClr\(aq: Enum.AbsColorimetric, b\(aqASCI\(aq: Enum.ASCII, b\(aqAbAp\(aq: Enum.AboutApp, b\(aqAbsl\(aq: Enum.Absolute, b\(aqActP\(aq: Enum.ActualPixels, b\(aqAdBt\(aq: Enum.ADSBottoms, b\(aqAdCH\(aq: Enum.ADSCentersH, b\(aqAdCV\(aq: Enum.ADSCentersV, b\(aqAdHr\(aq: Enum.ADSHorizontal, b\(aqAdLf\(aq: Enum.ADSLefts, b\(aqAdRg\(aq: Enum.ADSRights, b\(aqAdTp\(aq: Enum.ADSTops, b\(aqAdVr\(aq: Enum.ADSVertical, b\(aqAdd \(aq: Enum.Add, b\(aqAdjO\(aq: Enum.AdjustmentOptions, b\(aqAdpt\(aq: Enum.Adaptive, b\(aqAl \(aq: Enum.All, b\(aqAmga\(aq: Enum.Amiga, b\(aqAnCr\(aq: Enum.AntiAliasCrisp, b\(aqAnHi\(aq: Enum.AntiAliasHigh, b\(aqAnLo\(aq: Enum.AntiAliasLow, b\(aqAnMd\(aq: Enum.AntiAliasMedium, b\(aqAnSm\(aq: Enum.AntiAliasSmooth, b\(aqAnSt\(aq: Enum.AntiAliasStrong, b\(aqAngl\(aq: Enum.Angle, b\(aqAnno\(aq: Enum.AntiAliasNone, b\(aqAny \(aq: Enum.Any, b\(aqAplI\(aq: Enum.ApplyImage, b\(aqAppR\(aq: Enum.AppleRGB, b\(aqArbs\(aq: Enum.AirbrushEraser, b\(aqArnC\(aq: Enum.AroundCenter, b\(aqArng\(aq: Enum.Arrange, b\(aqAsk \(aq: Enum.Ask, b\(aqAskW\(aq: Enum.AskWhenOpening, b\(aqB \(aq: Enum.B, b\(aqBD1 \(aq: Enum.BitDepth1, b\(aqBD16\(aq: Enum.BitDepth16, b\(aqBD24\(aq: Enum.BitDepth24, b\(aqBD32\(aq: Enum.BitDepth32, b\(aqBD4 \(aq: Enum.BitDepth4, b\(aqBD8 \(aq: Enum.BitDepth8, b\(aqBack\(aq: Enum.Back, b\(aqBanW\(aq: Enum.BlackAndWhite, b\(aqBcbc\(aq: Enum.Bicubic, b\(aqBckC\(aq: Enum.BackgroundColor, b\(aqBckg\(aq: Enum.Background, b\(aqBckw\(aq: Enum.Backward, b\(aqBhnd\(aq: Enum.Behind, b\(aqBl \(aq: Enum.Blue, b\(aqBlcB\(aq: Enum.BlackBody, b\(aqBlck\(aq: Enum.Black, b\(aqBlk \(aq: Enum.BlockEraser, b\(aqBlks\(aq: Enum.Blacks, b\(aqBlnr\(aq: Enum.Bilinear, b\(aqBls \(aq: Enum.Blues, b\(aqBlst\(aq: Enum.Blast, b\(aqBltn\(aq: Enum.Builtin, b\(aqBnry\(aq: Enum.Binary, b\(aqBrDR\(aq: Enum.BrushDarkRough, b\(aqBrSm\(aq: Enum.BrushSimple, b\(aqBrSp\(aq: Enum.BrushSparkle, b\(aqBrbW\(aq: Enum.BrushWideBlurry, b\(aqBrnH\(aq: Enum.BurnInH, b\(aqBrnM\(aq: Enum.BurnInM, b\(aqBrnS\(aq: Enum.BurnInS, b\(aqBrsA\(aq: Enum.BrushesAppend, b\(aqBrsD\(aq: Enum.BrushesDefine, b\(aqBrsL\(aq: Enum.BrushLightRough, b\(aqBrsN\(aq: Enum.BrushesNew, b\(aqBrsO\(aq: Enum.BrushesOptions, b\(aqBrsR\(aq: Enum.BrushesReset, b\(aqBrsS\(aq: Enum.BrushSize, b\(aqBrsW\(aq: Enum.BrushWideSharp, b\(aqBrsd\(aq: Enum.BrushesLoad, b\(aqBrsf\(aq: Enum.BrushesDelete, b\(aqBrsv\(aq: Enum.BrushesSave, b\(aqBst \(aq: Enum.Best, b\(aqBtmp\(aq: Enum.Bitmap, b\(aqBtnM\(aq: Enum.ButtonMode, b\(aqBttm\(aq: Enum.Bottom, b\(aqCBrn\(aq: Enum.ColorBurn, b\(aqCDdg\(aq: Enum.ColorDodge, b\(aqCMSF\(aq: Enum.CMYK64, b\(aqCMYK\(aq: Enum.CMYK, b\(aqCRGB\(aq: Enum.CIERGB, b\(aqChcL\(aq: Enum.CheckerboardLarge, b\(aqChcM\(aq: Enum.CheckerboardMedium, b\(aqChcN\(aq: Enum.CheckerboardNone, b\(aqChcS\(aq: Enum.CheckerboardSmall, b\(aqChnO\(aq: Enum.ChannelOptions, b\(aqChnP\(aq: Enum.ChannelsPaletteOptions, b\(aqClMt\(aq: Enum.ColorMatch, b\(aqClNs\(aq: Enum.ColorNoise, b\(aqClar\(aq: Enum.Clear, b\(aqClcl\(aq: Enum.Calculations, b\(aqClpP\(aq: Enum.ClippingPath, b\(aqClpb\(aq: Enum.Clipboard, b\(aqClr \(aq: Enum.Color, b\(aqClrG\(aq: Enum.ClearGuides, b\(aqClrm\(aq: Enum.Colorimetric, b\(aqClsA\(aq: Enum.CloseAll, b\(aqCmps\(aq: Enum.Composite, b\(aqCntr\(aq: Enum.Center, b\(aqCnvC\(aq: Enum.ConvertToCMYK, b\(aqCnvG\(aq: Enum.ConvertToGray, b\(aqCnvL\(aq: Enum.ConvertToLab, b\(aqCnvR\(aq: Enum.ConvertToRGB, b\(aqCrrL\(aq: Enum.CurrentLayer, b\(aqCrs \(aq: Enum.Cross, b\(aqCrsD\(aq: Enum.CoarseDots, b\(aqCrtD\(aq: Enum.CreateDuplicate, b\(aqCrtI\(aq: Enum.CreateInterpolation, b\(aqCscd\(aq: Enum.Cascade, b\(aqCst \(aq: Enum.Custom, b\(aqCstS\(aq: Enum.CustomStops, b\(aqCstm\(aq: Enum.CustomPattern, b\(aqCtrF\(aq: Enum.CenteredFrame, b\(aqCyn \(aq: Enum.Cyan, b\(aqCyns\(aq: Enum.Cyans, b\(aqDdgH\(aq: Enum.DodgeH, b\(aqDdgM\(aq: Enum.DodgeM, b\(aqDdgS\(aq: Enum.DodgeS, b\(aqDfnD\(aq: Enum.DiffusionDither, b\(aqDfrn\(aq: Enum.Difference, b\(aqDfsn\(aq: Enum.Diffusion, b\(aqDmnd\(aq: Enum.Diamond, b\(aqDrft\(aq: Enum.Draft, b\(aqDrk \(aq: Enum.Dark, b\(aqDrkO\(aq: Enum.DarkenOnly, b\(aqDrkn\(aq: Enum.Darken, b\(aqDshL\(aq: Enum.DashedLines, b\(aqDslv\(aq: Enum.Dissolve, b\(aqDspC\(aq: Enum.DisplayCursorsPreferences, b\(aqDstr\(aq: Enum.Distort, b\(aqDstt\(aq: Enum.Desaturate, b\(aqDthb\(aq: Enum.Better, b\(aqDthf\(aq: Enum.Faster, b\(aqDtn \(aq: Enum.Duotone, b\(aqDts \(aq: Enum.Dots, b\(aqEBT \(aq: Enum.EBUITU, b\(aqECMY\(aq: Enum.CMYKColor, b\(aqEghB\(aq: Enum._8BitsPerPixel, b\(aqElmE\(aq: Enum.EliminateEvenFields, b\(aqElmO\(aq: Enum.EliminateOddFields, b\(aqElps\(aq: Enum.Ellipse, b\(aqEmbs\(aq: Enum.Emboss, b\(aqExct\(aq: Enum.Exact, b\(aqFlBc\(aq: Enum.FillBack, b\(aqFlFr\(aq: Enum.FillFore, b\(aqFlIn\(aq: Enum.FileInfo, b\(aqFlSm\(aq: Enum.FillSame, b\(aqFlSz\(aq: Enum.FullSize, b\(aqFle \(aq: Enum.File, b\(aqFllD\(aq: Enum.FullDocument, b\(aqFnDt\(aq: Enum.FineDots, b\(aqFrId\(aq: Enum.FirstIdle, b\(aqFrTr\(aq: Enum.FreeTransform, b\(aqFrgC\(aq: Enum.ForegroundColor, b\(aqFrnt\(aq: Enum.Front, b\(aqFrst\(aq: Enum.First, b\(aqFrwr\(aq: Enum.Forward, b\(aqFtOn\(aq: Enum.FitOnScreen, b\(aqFxJP\(aq: Enum.FPXCompressLossyJPEG, b\(aqFxNo\(aq: Enum.FPXCompressNone, b\(aqGFCF\(aq: Enum.GIFColorFileColors, b\(aqGFCI\(aq: Enum.GIFRequiredColorSpaceIndexed, b\(aqGFCT\(aq: Enum.GIFColorFileColorTable, b\(aqGFIN\(aq: Enum.GIFRowOrderInterlaced, b\(aqGFMS\(aq: Enum.GIFColorFileMicrosoftPalette, b\(aqGFNI\(aq: Enum.GIFRowOrderNormal, b\(aqGFPA\(aq: Enum.GIFPaletteAdaptive, b\(aqGFPE\(aq: Enum.GIFPaletteExact, b\(aqGFPO\(aq: Enum.GIFPaletteOther, b\(aqGFPS\(aq: Enum.GIFPaletteSystem, b\(aqGFRG\(aq: Enum.GIFRequiredColorSpaceRGB, b\(aqGd \(aq: Enum.Good, b\(aqGnrP\(aq: Enum.GeneralPreferences, b\(aqGr18\(aq: Enum.Gray18, b\(aqGr22\(aq: Enum.Gray22, b\(aqGr50\(aq: Enum.Gray50, b\(aqGrCn\(aq: Enum.GrainContrasty, b\(aqGrFl\(aq: Enum.GradientFill, b\(aqGrSf\(aq: Enum.GrainSoft, b\(aqGrSp\(aq: Enum.GrainSpeckle, b\(aqGrSr\(aq: Enum.GrainSprinkles, b\(aqGrSt\(aq: Enum.GrainStippled, b\(aqGrn \(aq: Enum.Green, b\(aqGrnC\(aq: Enum.GrainClumped, b\(aqGrnD\(aq: Enum.GrainyDots, b\(aqGrnE\(aq: Enum.GrainEnlarged, b\(aqGrnH\(aq: Enum.GrainHorizontal, b\(aqGrnR\(aq: Enum.GrainRegular, b\(aqGrnV\(aq: Enum.GrainVertical, b\(aqGrns\(aq: Enum.Greens, b\(aqGrp \(aq: Enum.Graphics, b\(aqGry \(aq: Enum.Gray, b\(aqGryX\(aq: Enum.Gray16, b\(aqGryc\(aq: Enum.GrayScale, b\(aqGrys\(aq: Enum.Grayscale, b\(aqGsn \(aq: Enum.GaussianDistribution, b\(aqGudG\(aq: Enum.GuidesGridPreferences, b\(aqH \(aq: Enum.Hue, b\(aqHDTV\(aq: Enum.HDTV, b\(aqHSBl\(aq: Enum.HSBColor, b\(aqHSLC\(aq: Enum.HSLColor, b\(aqHdAl\(aq: Enum.HideAll, b\(aqHdSl\(aq: Enum.HideSelection, b\(aqHgh \(aq: Enum.HighQuality, b\(aqHghl\(aq: Enum.Highlights, b\(aqHigh\(aq: Enum.High, b\(aqHlfF\(aq: Enum.HalftoneFile, b\(aqHlfS\(aq: Enum.HalftoneScreen, b\(aqHrdL\(aq: Enum.HardLight, b\(aqHrzO\(aq: Enum.HorizontalOnly, b\(aqHrzn\(aq: Enum.Horizontal, b\(aqHstO\(aq: Enum.HistoryPaletteOptions, b\(aqHstP\(aq: Enum.HistoryPreferences, b\(aqHstg\(aq: Enum.Histogram, b\(aqHsty\(aq: Enum.History, b\(aqHvy \(aq: Enum.Heavy, b\(aqIBMP\(aq: Enum.IBMPC, b\(aqICC \(aq: Enum.ICC, b\(aqIcn \(aq: Enum.Icon, b\(aqIdVM\(aq: Enum.IdleVM, b\(aqIgnr\(aq: Enum.Ignore, b\(aqImg \(aq: Enum.Image, b\(aqImgP\(aq: Enum.ImageCachePreferences, b\(aqIn \(aq: Enum.StampIn, b\(aqIndl\(aq: Enum.IndexedColor, b\(aqInfP\(aq: Enum.InfoPaletteOptions, b\(aqInfT\(aq: Enum.InfoPaletteToggleSamplers, b\(aqInrB\(aq: Enum.InnerBevel, b\(aqInsF\(aq: Enum.InsetFrame, b\(aqInsd\(aq: Enum.Inside, b\(aqJPEG\(aq: Enum.JPEG, b\(aqJstA\(aq: Enum.JustifyAll, b\(aqJstF\(aq: Enum.JustifyFull, b\(aqKPro\(aq: Enum.KeepProfile, b\(aqKybP\(aq: Enum.KeyboardPreferences, b\(aqLDBL\(aq: Enum.LightDirBottomLeft, b\(aqLDBR\(aq: Enum.LightDirBottomRight, b\(aqLDBt\(aq: Enum.LightDirBottom, b\(aqLDLf\(aq: Enum.LightDirLeft, b\(aqLDRg\(aq: Enum.LightDirRight, b\(aqLDTL\(aq: Enum.LightDirTopLeft, b\(aqLDTR\(aq: Enum.LightDirTopRight, b\(aqLDTp\(aq: Enum.LightDirTop, b\(aqLPBL\(aq: Enum.LightPosBottomLeft, b\(aqLPBr\(aq: Enum.LightPosBottomRight, b\(aqLPBt\(aq: Enum.LightPosBottom, b\(aqLPLf\(aq: Enum.LightPosLeft, b\(aqLPRg\(aq: Enum.LightPosRight, b\(aqLPTL\(aq: Enum.LightPosTopLeft, b\(aqLPTR\(aq: Enum.LightPosTopRight, b\(aqLPTp\(aq: Enum.LightPosTop, b\(aqLab \(aq: Enum.Lab, b\(aqLbCF\(aq: Enum.Lab48, b\(aqLbCl\(aq: Enum.LabColor, b\(aqLeft\(aq: Enum.Left, b\(aqLft \(aq: Enum.Left_PLUGIN, b\(aqLghD\(aq: Enum.LightDirectional, b\(aqLghO\(aq: Enum.LightenOnly, b\(aqLghS\(aq: Enum.LightSpot, b\(aqLghn\(aq: Enum.Lighten, b\(aqLght\(aq: Enum.Lightness, b\(aqLgt \(aq: Enum.Light, b\(aqLgtB\(aq: Enum.LightBlue, b\(aqLgtG\(aq: Enum.LightGray, b\(aqLgtR\(aq: Enum.LightRed, b\(aqLmns\(aq: Enum.Luminosity, b\(aqLn \(aq: Enum.Line, b\(aqLngL\(aq: Enum.LongLines, b\(aqLngS\(aq: Enum.LongStrokes, b\(aqLnkd\(aq: Enum.Linked, b\(aqLnr \(aq: Enum.Linear, b\(aqLns \(aq: Enum.Lines, b\(aqLow \(aq: Enum.Low, b\(aqLrg \(aq: Enum.Large, b\(aqLst \(aq: Enum.Last, b\(aqLstF\(aq: Enum.LastFilter, b\(aqLvlB\(aq: Enum.LevelBased, b\(aqLw \(aq: Enum.LowQuality, b\(aqLwr \(aq: Enum.Lower, b\(aqLyrO\(aq: Enum.LayerOptions, b\(aqLyrP\(aq: Enum.LayersPaletteOptions, b\(aqMAdp\(aq: Enum.MasterAdaptive, b\(aqMPer\(aq: Enum.MasterPerceptual, b\(aqMSel\(aq: Enum.MasterSelective, b\(aqMaya\(aq: Enum.Maya, b\(aqMcTh\(aq: Enum.MacThumbnail, b\(aqMcnS\(aq: Enum.MacintoshSystem, b\(aqMcnt\(aq: Enum.Macintosh, b\(aqMdGr\(aq: Enum.ModeGray, b\(aqMdRG\(aq: Enum.ModeRGB, b\(aqMddl\(aq: Enum.Middle, b\(aqMdim\(aq: Enum.Medium, b\(aqMdm \(aq: Enum.MediumQuality, b\(aqMdmB\(aq: Enum.MediumBlue, b\(aqMdmD\(aq: Enum.MediumDots, b\(aqMdmL\(aq: Enum.MediumLines, b\(aqMdmS\(aq: Enum.MediumStrokes, b\(aqMdtn\(aq: Enum.Midtones, b\(aqMgnt\(aq: Enum.Magenta, b\(aqMlth\(aq: Enum.Multichannel, b\(aqMltp\(aq: Enum.Multiply, b\(aqMmrP\(aq: Enum.MemoryPreferences, b\(aqMntS\(aq: Enum.MonitorSetup, b\(aqMntn\(aq: Enum.Monotone, b\(aqMoni\(aq: Enum.Monitor, b\(aqMrg2\(aq: Enum.MergedLayers, b\(aqMrgC\(aq: Enum.MergeChannels, b\(aqMrgL\(aq: Enum.MergedLayersOld, b\(aqMrgd\(aq: Enum.Merged, b\(aqMsk \(aq: Enum.Mask, b\(aqMskA\(aq: Enum.MaskedAreas, b\(aqMxm \(aq: Enum.MaximumQuality, b\(aqMxmm\(aq: Enum.Maximum, b\(aqN \(aq: Enum.No, b\(aqNCmM\(aq: Enum.MultiNoCompositePS, b\(aqNCmS\(aq: Enum.SingleNoCompositePS, b\(aqNCmp\(aq: Enum.NoCompositePS, b\(aqNTSC\(aq: Enum.NTSC, b\(aqNkn \(aq: Enum.Nikon, b\(aqNkn1\(aq: Enum.Nikon105, b\(aqNone\(aq: Enum._None, b\(aqNrmP\(aq: Enum.NormalPath, b\(aqNrml\(aq: Enum.Normal, b\(aqNrst\(aq: Enum.NearestNeighbor, b\(aqNsGr\(aq: Enum.NetscapeGray, b\(aqNtrl\(aq: Enum.Neutrals, b\(aqNvgP\(aq: Enum.NavigatorPaletteOptions, b\(aqNwVw\(aq: Enum.NewView, b\(aqNxt \(aq: Enum.Next, b\(aqOS2 \(aq: Enum.OS2, b\(aqOff \(aq: Enum.Off, b\(aqOn \(aq: Enum.On, b\(aqOnBt\(aq: Enum._1BitPerPixel, b\(aqOpAs\(aq: Enum.OpenAs, b\(aqOrng\(aq: Enum.Orange, b\(aqOtFr\(aq: Enum.OutFromCenter, b\(aqOtOf\(aq: Enum.OutOfGamut, b\(aqOtrB\(aq: Enum.OuterBevel, b\(aqOtsd\(aq: Enum.Outside, b\(aqOut \(aq: Enum.StampOut, b\(aqOutF\(aq: Enum.OutsetFrame, b\(aqOvrl\(aq: Enum.Overlay, b\(aqP22B\(aq: Enum.P22EBU, b\(aqPGAd\(aq: Enum.PNGFilterAdaptive, b\(aqPGAv\(aq: Enum.PNGFilterAverage, b\(aqPGIA\(aq: Enum.PNGInterlaceAdam7, b\(aqPGIN\(aq: Enum.PNGInterlaceNone, b\(aqPGNo\(aq: Enum.PNGFilterNone, b\(aqPGPt\(aq: Enum.PNGFilterPaeth, b\(aqPGSb\(aq: Enum.PNGFilterSub, b\(aqPGUp\(aq: Enum.PNGFilterUp, b\(aqPbkO\(aq: Enum.PlaybackOptions, b\(aqPckC\(aq: Enum.PickCMYK, b\(aqPckG\(aq: Enum.PickGray, b\(aqPckH\(aq: Enum.PickHSB, b\(aqPckL\(aq: Enum.PickLab, b\(aqPckO\(aq: Enum.PickOptions, b\(aqPckR\(aq: Enum.PickRGB, b\(aqPerc\(aq: Enum.Perceptual, b\(aqPgPC\(aq: Enum.PagePosCentered, b\(aqPgSt\(aq: Enum.PageSetup, b\(aqPgTL\(aq: Enum.PagePosTopLeft, b\(aqPhtk\(aq: Enum.PhotoshopPicker, b\(aqPlEb\(aq: Enum.PillowEmboss, b\(aqPlSc\(aq: Enum.PalSecam, b\(aqPlce\(aq: Enum.Place, b\(aqPlgP\(aq: Enum.PluginPicker, b\(aqPlgS\(aq: Enum.PluginsScratchDiskPreferences, b\(aqPlrR\(aq: Enum.PolarToRect, b\(aqPnVs\(aq: Enum.PanaVision, b\(aqPncl\(aq: Enum.PencilEraser, b\(aqPndR\(aq: Enum.PondRipples, b\(aqPntb\(aq: Enum.PaintbrushEraser, b\(aqPrBL\(aq: Enum.PreciseMatte, b\(aqPrc \(aq: Enum.Precise, b\(aqPrim\(aq: Enum.Primaries, b\(aqPrnI\(aq: Enum.PrintingInksSetup, b\(aqPrnS\(aq: Enum.PrintSize, b\(aqPrp \(aq: Enum.Purple, b\(aqPrsp\(aq: Enum.Perspective, b\(aqPrvB\(aq: Enum.PreviewBlack, b\(aqPrvC\(aq: Enum.PreviewCMYK, b\(aqPrvM\(aq: Enum.PreviewMagenta, b\(aqPrvN\(aq: Enum.PreviewCMY, b\(aqPrvO\(aq: Enum.PreviewOff, b\(aqPrvY\(aq: Enum.PreviewYellow, b\(aqPrvs\(aq: Enum.Previous, b\(aqPrvy\(aq: Enum.PreviewCyan, b\(aqPthP\(aq: Enum.PathsPaletteOptions, b\(aqPtnD\(aq: Enum.PatternDither, b\(aqPtrn\(aq: Enum.Pattern, b\(aqPxS1\(aq: Enum.PixelPaintSize1, b\(aqPxS2\(aq: Enum.PixelPaintSize2, b\(aqPxS3\(aq: Enum.PixelPaintSize3, b\(aqPxS4\(aq: Enum.PixelPaintSize4, b\(aqPyrm\(aq: Enum.Pyramids, b\(aqQcs0\(aq: Enum.QCSCorner0, b\(aqQcs1\(aq: Enum.QCSCorner1, b\(aqQcs2\(aq: Enum.QCSCorner2, b\(aqQcs3\(aq: Enum.QCSCorner3, b\(aqQcs4\(aq: Enum.QCSSide0, b\(aqQcs5\(aq: Enum.QCSSide1, b\(aqQcs6\(aq: Enum.QCSSide2, b\(aqQcs7\(aq: Enum.QCSSide3, b\(aqQcsa\(aq: Enum.QCSAverage, b\(aqQcsi\(aq: Enum.QCSIndependent, b\(aqQdtn\(aq: Enum.Quadtone, b\(aqQurA\(aq: Enum.QueryAlways, b\(aqQurN\(aq: Enum.QueryNever, b\(aqQurl\(aq: Enum.QueryAsk, b\(aqRGB \(aq: Enum.RGB, b\(aqRGBC\(aq: Enum.RGBColor, b\(aqRGBF\(aq: Enum.RGB48, b\(aqRctP\(aq: Enum.RectToPolar, b\(aqRd \(aq: Enum.Red, b\(aqRdCm\(aq: Enum.RedrawComplete, b\(aqRdl \(aq: Enum.Radial, b\(aqRds \(aq: Enum.Reds, b\(aqRflc\(aq: Enum.Reflected, b\(aqRght\(aq: Enum.Right, b\(aqRltv\(aq: Enum.Relative, b\(aqRnd \(aq: Enum.Round, b\(aqRndm\(aq: Enum.Random, b\(aqRpt \(aq: Enum.Repeat, b\(aqRptE\(aq: Enum.RepeatEdgePixels, b\(aqRrCm\(aq: Enum.RulerCm, b\(aqRrIn\(aq: Enum.RulerInches, b\(aqRrPi\(aq: Enum.RulerPicas, b\(aqRrPr\(aq: Enum.RulerPercent, b\(aqRrPt\(aq: Enum.RulerPoints, b\(aqRrPx\(aq: Enum.RulerPixels, b\(aqRtsP\(aq: Enum.RotoscopingPreferences, b\(aqRtte\(aq: Enum.Rotate, b\(aqRvlA\(aq: Enum.RevealAll, b\(aqRvlS\(aq: Enum.RevealSelection, b\(aqRvrt\(aq: Enum.Revert, b\(aqSBME\(aq: Enum.SmartBlurModeEdgeOnly, b\(aqSBMN\(aq: Enum.SmartBlurModeNormal, b\(aqSBMO\(aq: Enum.SmartBlurModeOverlayEdge, b\(aqSBQH\(aq: Enum.SmartBlurQualityHigh, b\(aqSBQL\(aq: Enum.SmartBlurQualityLow, b\(aqSBQM\(aq: Enum.SmartBlurQualityMedium, b\(aqSClr\(aq: Enum.SolidColor, b\(aqSDHz\(aq: Enum.StrokeDirHorizontal, b\(aqSDLD\(aq: Enum.StrokeDirLeftDiag, b\(aqSDRD\(aq: Enum.StrokeDirRightDiag, b\(aqSDVt\(aq: Enum.StrokeDirVertical, b\(aqSMPC\(aq: Enum.SMPTEC, b\(aqSMPT\(aq: Enum.AdobeRGB1998, b\(aqSRGB\(aq: Enum.SRGB, b\(aqSbtr\(aq: Enum.Subtract, b\(aqScl \(aq: Enum.Scale, b\(aqScrC\(aq: Enum.ScreenCircle, b\(aqScrD\(aq: Enum.ScreenDot, b\(aqScrL\(aq: Enum.ScreenLine, b\(aqScrn\(aq: Enum.Screen, b\(aqSele\(aq: Enum.Selective, b\(aqSfBL\(aq: Enum.SoftMatte, b\(aqSftL\(aq: Enum.SoftLight, b\(aqShSt\(aq: Enum.ShortStrokes, b\(aqShdw\(aq: Enum.Shadows, b\(aqShrL\(aq: Enum.ShortLines, b\(aqSkew\(aq: Enum.Skew, b\(aqSlcA\(aq: Enum.SelectedAreas, b\(aqSlct\(aq: Enum.Selection, b\(aqSlmt\(aq: Enum.SlopeLimitMatte, b\(aqSlsA\(aq: Enum.StylesAppend, b\(aqSlsN\(aq: Enum.StylesNew, b\(aqSlsR\(aq: Enum.StylesReset, b\(aqSlsd\(aq: Enum.StylesLoad, b\(aqSlsf\(aq: Enum.StylesDelete, b\(aqSlsv\(aq: Enum.StylesSave, b\(aqSml \(aq: Enum.Small, b\(aqSmp3\(aq: Enum.Sample3x3, b\(aqSmp5\(aq: Enum.Sample5x5, b\(aqSmpP\(aq: Enum.SamplePoint, b\(aqSnps\(aq: Enum.Snapshot, b\(aqSpct\(aq: Enum.Spectrum, b\(aqSpn \(aq: Enum.Spin, b\(aqSpot\(aq: Enum.SpotColor, b\(aqSprS\(aq: Enum.SeparationSetup, b\(aqSprT\(aq: Enum.SeparationTables, b\(aqSqr \(aq: Enum.Square, b\(aqSrcC\(aq: Enum.CenterGlow, b\(aqSrcE\(aq: Enum.EdgeGlow, b\(aqStd \(aq: Enum.Standard, b\(aqStdA\(aq: Enum.StdA, b\(aqStdB\(aq: Enum.StdB, b\(aqStdC\(aq: Enum.StdC, b\(aqStdE\(aq: Enum.StdE, b\(aqStgr\(aq: Enum.Stagger, b\(aqStr \(aq: Enum.Saturate, b\(aqStrF\(aq: Enum.StretchToFit, b\(aqStrt\(aq: Enum.Saturation, b\(aqSved\(aq: Enum.Saved, b\(aqSvfw\(aq: Enum.SaveForWeb, b\(aqSvnF\(aq: Enum.SavingFilesPreferences, b\(aqSwtA\(aq: Enum.SwatchesAppend, b\(aqSwtR\(aq: Enum.SwatchesReset, b\(aqSwtS\(aq: Enum.SwatchesSave, b\(aqSwtp\(aq: Enum.SwatchesReplace, b\(aqSysP\(aq: Enum.SystemPicker, b\(aqTIFF\(aq: Enum.TIFF, b\(aqTbl \(aq: Enum.Tables, b\(aqTgBP\(aq: Enum.ToggleBlackPreview, b\(aqTgCM\(aq: Enum.ToggleCMYPreview, b\(aqTgCP\(aq: Enum.ToggleCyanPreview, b\(aqTgDc\(aq: Enum.ToggleDocumentPalette, b\(aqTgGr\(aq: Enum.ToggleGrid, b\(aqTgMP\(aq: Enum.ToggleMagentaPreview, b\(aqTgSl\(aq: Enum.ToggleStylesPalette, b\(aqTgSn\(aq: Enum.ToggleSnapToGrid, b\(aqTgYP\(aq: Enum.ToggleYellowPreview, b\(aqTglA\(aq: Enum.ToggleActionsPalette, b\(aqTglB\(aq: Enum.ToggleBrushesPalette, b\(aqTglC\(aq: Enum.ToggleCMYKPreview, b\(aqTglE\(aq: Enum.ToggleEdges, b\(aqTglG\(aq: Enum.ToggleGamutWarning, b\(aqTglH\(aq: Enum.ToggleHistoryPalette, b\(aqTglI\(aq: Enum.ToggleInfoPalette, b\(aqTglL\(aq: Enum.ToggleLockGuides, b\(aqTglM\(aq: Enum.ToggleLayerMask, b\(aqTglN\(aq: Enum.ToggleNavigatorPalette, b\(aqTglO\(aq: Enum.ToggleOptionsPalette, b\(aqTglP\(aq: Enum.TogglePaths, b\(aqTglR\(aq: Enum.ToggleRulers, b\(aqTglS\(aq: Enum.ToggleSnapToGuides, b\(aqTglT\(aq: Enum.ToggleToolsPalette, b\(aqTglc\(aq: Enum.ToggleColorPalette, b\(aqTgld\(aq: Enum.ToggleGuides, b\(aqTglh\(aq: Enum.ToggleChannelsPalette, b\(aqTgls\(aq: Enum.ToggleStatusBar, b\(aqTglt\(aq: Enum.TogglePathsPalette, b\(aqTglw\(aq: Enum.ToggleSwatchesPalette, b\(aqTgly\(aq: Enum.ToggleLayersPalette, b\(aqThmb\(aq: Enum.Thumbnail, b\(aqThrh\(aq: Enum.Threshold, b\(aqTile\(aq: Enum.Tile, b\(aqTl \(aq: Enum.Tile_PLUGIN, b\(aqTop \(aq: Enum.Top, b\(aqTrMp\(aq: Enum.ToggleRGBMacPreview, b\(aqTrUp\(aq: Enum.ToggleRGBUncompensatedPreview, b\(aqTrWp\(aq: Enum.ToggleRGBWindowsPreview, b\(aqTrgp\(aq: Enum.TargetPath, b\(aqTrgt\(aq: Enum.Target, b\(aqTrnG\(aq: Enum.TransparencyGamutPreferences, b\(aqTrns\(aq: Enum.Transparent, b\(aqTrnt\(aq: Enum.Trinitron, b\(aqTrsp\(aq: Enum.Transparency, b\(aqTrtn\(aq: Enum.Tritone, b\(aqTxBl\(aq: Enum.TexTypeBlocks, b\(aqTxBr\(aq: Enum.TexTypeBrick, b\(aqTxBu\(aq: Enum.TexTypeBurlap, b\(aqTxCa\(aq: Enum.TexTypeCanvas, b\(aqTxFr\(aq: Enum.TexTypeFrosted, b\(aqTxSt\(aq: Enum.TexTypeSandstone, b\(aqTxTL\(aq: Enum.TexTypeTinyLens, b\(aqUBtm\(aq: Enum.UIBitmap, b\(aqUCMY\(aq: Enum.UICMYK, b\(aqUDtn\(aq: Enum.UIDuotone, b\(aqUGry\(aq: Enum.UIGrayscale, b\(aqUInd\(aq: Enum.UIIndexed, b\(aqULab\(aq: Enum.UILab, b\(aqUMlt\(aq: Enum.UIMultichannel, b\(aqURGB\(aq: Enum.UIRGB, b\(aqUnd \(aq: Enum.Undo, b\(aqUnfm\(aq: Enum.Uniform, b\(aqUnfr\(aq: Enum.UniformDistribution, b\(aqUntR\(aq: Enum.UnitsRulersPreferences, b\(aqUpr \(aq: Enum.Upper, b\(aqUsrS\(aq: Enum.UserStop, b\(aqVMPr\(aq: Enum.VMPreferences, b\(aqVlt \(aq: Enum.Violet, b\(aqVrtO\(aq: Enum.VerticalOnly, b\(aqVrtc\(aq: Enum.Vertical, b\(aqWRGB\(aq: Enum.WideGamutRGB, b\(aqWeb \(aq: Enum.Web, b\(aqWht \(aq: Enum.White, b\(aqWhts\(aq: Enum.Whites, b\(aqWide\(aq: Enum.WidePhosphors, b\(aqWin \(aq: Enum.Windows, b\(aqWnTh\(aq: Enum.WinThumbnail, b\(aqWnd \(aq: Enum.Wind, b\(aqWndS\(aq: Enum.WindowsSystem, b\(aqWrkP\(aq: Enum.WorkPath, b\(aqWrp \(aq: Enum.Wrap, b\(aqWrpA\(aq: Enum.WrapAround, b\(aqWvSn\(aq: Enum.WaveSine, b\(aqWvSq\(aq: Enum.WaveSquare, b\(aqWvTr\(aq: Enum.WaveTriangle, b\(aqXclu\(aq: Enum.Exclusion, b\(aqYllw\(aq: Enum.Yellow, b\(aqYlw \(aq: Enum.YellowColor, b\(aqYlws\(aq: Enum.Yellows, b\(aqYs \(aq: Enum.Yes, b\(aqZm \(aq: Enum.Zoom, b\(aqZmIn\(aq: Enum.ZoomIn, b\(aqZmOt\(aq: Enum.ZoomOut, b\(aqZpEn\(aq: Enum.Zip, b\(aqamHi\(aq: Enum.AmountHigh, b\(aqamLo\(aq: Enum.AmountLow, b\(aqamMd\(aq: Enum.AmountMedium, b\(aqnull\(aq: Enum.Null, b\(aqsp01\(aq: Enum.ContourLinear, b\(aqsp02\(aq: Enum.ContourGaussian, b\(aqsp03\(aq: Enum.ContourSingle, b\(aqsp04\(aq: Enum.ContourDouble, b\(aqsp05\(aq: Enum.ContourTriple, b\(aqsp06\(aq: Enum.ContourCustom, b\(aqx444\(aq: Enum.BitDepthX4R4G4B4, b\(aqx565\(aq: Enum.BitDepthR5G6B5, b\(aqx888\(aq: Enum.BitDepthX8R8G8B8} .UNINDENT .INDENT 7.0 .TP .B _value_repr_() Return repr(self). .UNINDENT .UNINDENT .SS Event .INDENT 0.0 .TP .B class psd_tools.terminology.Event(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Event definitions extracted from PITerminology.h. .sp See \fI\%https://www.adobe.com/devnet/photoshop/sdk.html\fP .INDENT 7.0 .TP .B AccentedEdges = b\(aqAccE\(aq .UNINDENT .INDENT 7.0 .TP .B Add = b\(aqAdd \(aq .UNINDENT .INDENT 7.0 .TP .B AddNoise = b\(aqAdNs\(aq .UNINDENT .INDENT 7.0 .TP .B AddTo = b\(aqAddT\(aq .UNINDENT .INDENT 7.0 .TP .B Align = b\(aqAlgn\(aq .UNINDENT .INDENT 7.0 .TP .B All = b\(aqAll \(aq .UNINDENT .INDENT 7.0 .TP .B AngledStrokes = b\(aqAngS\(aq .UNINDENT .INDENT 7.0 .TP .B ApplyImage = b\(aqAppI\(aq .UNINDENT .INDENT 7.0 .TP .B ApplyStyle = b\(aqASty\(aq .UNINDENT .INDENT 7.0 .TP .B Assert = b\(aqAsrt\(aq .UNINDENT .INDENT 7.0 .TP .B Average = b\(aqAvrg\(aq .UNINDENT .INDENT 7.0 .TP .B BackLight = b\(aqBacL\(aq .UNINDENT .INDENT 7.0 .TP .B BasRelief = b\(aqBsRl\(aq .UNINDENT .INDENT 7.0 .TP .B Batch = b\(aqBtch\(aq .UNINDENT .INDENT 7.0 .TP .B BatchFromDroplet = b\(aqBtcF\(aq .UNINDENT .INDENT 7.0 .TP .B Blur = b\(aqBlr \(aq .UNINDENT .INDENT 7.0 .TP .B BlurMore = b\(aqBlrM\(aq .UNINDENT .INDENT 7.0 .TP .B Border = b\(aqBrdr\(aq .UNINDENT .INDENT 7.0 .TP .B Brightness = b\(aqBrgC\(aq .UNINDENT .INDENT 7.0 .TP .B CanvasSize = b\(aqCnvS\(aq .UNINDENT .INDENT 7.0 .TP .B ChalkCharcoal = b\(aqChlC\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelMixer = b\(aqChnM\(aq .UNINDENT .INDENT 7.0 .TP .B Charcoal = b\(aqChrc\(aq .UNINDENT .INDENT 7.0 .TP .B Chrome = b\(aqChrm\(aq .UNINDENT .INDENT 7.0 .TP .B Clear = b\(aqCler\(aq .UNINDENT .INDENT 7.0 .TP .B Close = b\(aqCls \(aq .UNINDENT .INDENT 7.0 .TP .B Clouds = b\(aqClds\(aq .UNINDENT .INDENT 7.0 .TP .B ColorBalance = b\(aqClrB\(aq .UNINDENT .INDENT 7.0 .TP .B ColorCast = b\(aqColE\(aq .UNINDENT .INDENT 7.0 .TP .B ColorHalftone = b\(aqClrH\(aq .UNINDENT .INDENT 7.0 .TP .B ColorRange = b\(aqClrR\(aq .UNINDENT .INDENT 7.0 .TP .B ColoredPencil = b\(aqClrP\(aq .UNINDENT .INDENT 7.0 .TP .B ConteCrayon = b\(aqCntC\(aq .UNINDENT .INDENT 7.0 .TP .B Contract = b\(aqCntc\(aq .UNINDENT .INDENT 7.0 .TP .B ConvertMode = b\(aqCnvM\(aq .UNINDENT .INDENT 7.0 .TP .B Copy = b\(aqcopy\(aq .UNINDENT .INDENT 7.0 .TP .B CopyEffects = b\(aqCpFX\(aq .UNINDENT .INDENT 7.0 .TP .B CopyMerged = b\(aqCpyM\(aq .UNINDENT .INDENT 7.0 .TP .B CopyToLayer = b\(aqCpTL\(aq .UNINDENT .INDENT 7.0 .TP .B Craquelure = b\(aqCrql\(aq .UNINDENT .INDENT 7.0 .TP .B CreateDroplet = b\(aqCrtD\(aq .UNINDENT .INDENT 7.0 .TP .B Crop = b\(aqCrop\(aq .UNINDENT .INDENT 7.0 .TP .B Crosshatch = b\(aqCrsh\(aq .UNINDENT .INDENT 7.0 .TP .B Crystallize = b\(aqCrst\(aq .UNINDENT .INDENT 7.0 .TP .B Curves = b\(aqCrvs\(aq .UNINDENT .INDENT 7.0 .TP .B Custom = b\(aqCstm\(aq .UNINDENT .INDENT 7.0 .TP .B Cut = b\(aqcut \(aq .UNINDENT .INDENT 7.0 .TP .B CutToLayer = b\(aqCtTL\(aq .UNINDENT .INDENT 7.0 .TP .B Cutout = b\(aqCt \(aq .UNINDENT .INDENT 7.0 .TP .B DarkStrokes = b\(aqDrkS\(aq .UNINDENT .INDENT 7.0 .TP .B DeInterlace = b\(aqDntr\(aq .UNINDENT .INDENT 7.0 .TP .B DefinePattern = b\(aqDfnP\(aq .UNINDENT .INDENT 7.0 .TP .B Defringe = b\(aqDfrg\(aq .UNINDENT .INDENT 7.0 .TP .B Delete = b\(aqDlt \(aq .UNINDENT .INDENT 7.0 .TP .B Desaturate = b\(aqDstt\(aq .UNINDENT .INDENT 7.0 .TP .B Deselect = b\(aqDslc\(aq .UNINDENT .INDENT 7.0 .TP .B Despeckle = b\(aqDspc\(aq .UNINDENT .INDENT 7.0 .TP .B DifferenceClouds = b\(aqDfrC\(aq .UNINDENT .INDENT 7.0 .TP .B Diffuse = b\(aqDfs \(aq .UNINDENT .INDENT 7.0 .TP .B DiffuseGlow = b\(aqDfsG\(aq .UNINDENT .INDENT 7.0 .TP .B DisableLayerFX = b\(aqdlfx\(aq .UNINDENT .INDENT 7.0 .TP .B Displace = b\(aqDspl\(aq .UNINDENT .INDENT 7.0 .TP .B Distribute = b\(aqDstr\(aq .UNINDENT .INDENT 7.0 .TP .B Draw = b\(aqDraw\(aq .UNINDENT .INDENT 7.0 .TP .B DryBrush = b\(aqDryB\(aq .UNINDENT .INDENT 7.0 .TP .B Duplicate = b\(aqDplc\(aq .UNINDENT .INDENT 7.0 .TP .B DustAndScratches = b\(aqDstS\(aq .UNINDENT .INDENT 7.0 .TP .B Emboss = b\(aqEmbs\(aq .UNINDENT .INDENT 7.0 .TP .B Equalize = b\(aqEqlz\(aq .UNINDENT .INDENT 7.0 .TP .B Exchange = b\(aqExch\(aq .UNINDENT .INDENT 7.0 .TP .B Expand = b\(aqExpn\(aq .UNINDENT .INDENT 7.0 .TP .B Export = b\(aqExpr\(aq .UNINDENT .INDENT 7.0 .TP .B Extrude = b\(aqExtr\(aq .UNINDENT .INDENT 7.0 .TP .B Facet = b\(aqFct \(aq .UNINDENT .INDENT 7.0 .TP .B Fade = b\(aqFade\(aq .UNINDENT .INDENT 7.0 .TP .B Feather = b\(aqFthr\(aq .UNINDENT .INDENT 7.0 .TP .B Fibers = b\(aqFbrs\(aq .UNINDENT .INDENT 7.0 .TP .B Fill = b\(aqFl \(aq .UNINDENT .INDENT 7.0 .TP .B FilmGrain = b\(aqFlmG\(aq .UNINDENT .INDENT 7.0 .TP .B Filter = b\(aqFltr\(aq .UNINDENT .INDENT 7.0 .TP .B FindEdges = b\(aqFndE\(aq .UNINDENT .INDENT 7.0 .TP .B FlattenImage = b\(aqFltI\(aq .UNINDENT .INDENT 7.0 .TP .B Flip = b\(aqFlip\(aq .UNINDENT .INDENT 7.0 .TP .B Fragment = b\(aqFrgm\(aq .UNINDENT .INDENT 7.0 .TP .B Fresco = b\(aqFrsc\(aq .UNINDENT .INDENT 7.0 .TP .B GaussianBlur = b\(aqGsnB\(aq .UNINDENT .INDENT 7.0 .TP .B Get = b\(aqgetd\(aq .UNINDENT .INDENT 7.0 .TP .B Glass = b\(aqGls \(aq .UNINDENT .INDENT 7.0 .TP .B GlowingEdges = b\(aqGlwE\(aq .UNINDENT .INDENT 7.0 .TP .B Gradient = b\(aqGrdn\(aq .UNINDENT .INDENT 7.0 .TP .B GradientMap = b\(aqGrMp\(aq .UNINDENT .INDENT 7.0 .TP .B Grain = b\(aqGrn \(aq .UNINDENT .INDENT 7.0 .TP .B GraphicPen = b\(aqGraP\(aq .UNINDENT .INDENT 7.0 .TP .B Group = b\(aqGrpL\(aq .UNINDENT .INDENT 7.0 .TP .B Grow = b\(aqGrow\(aq .UNINDENT .INDENT 7.0 .TP .B HSBHSL = b\(aqHsbP\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneScreen = b\(aqHlfS\(aq .UNINDENT .INDENT 7.0 .TP .B Hide = b\(aqHd \(aq .UNINDENT .INDENT 7.0 .TP .B HighPass = b\(aqHghP\(aq .UNINDENT .INDENT 7.0 .TP .B HueSaturation = b\(aqHStr\(aq .UNINDENT .INDENT 7.0 .TP .B ImageSize = b\(aqImgS\(aq .UNINDENT .INDENT 7.0 .TP .B Import = b\(aqImpr\(aq .UNINDENT .INDENT 7.0 .TP .B InkOutlines = b\(aqInkO\(aq .UNINDENT .INDENT 7.0 .TP .B Intersect = b\(aqIntr\(aq .UNINDENT .INDENT 7.0 .TP .B IntersectWith = b\(aqIntW\(aq .UNINDENT .INDENT 7.0 .TP .B Inverse = b\(aqInvs\(aq .UNINDENT .INDENT 7.0 .TP .B Invert = b\(aqInvr\(aq .UNINDENT .INDENT 7.0 .TP .B LensFlare = b\(aqLnsF\(aq .UNINDENT .INDENT 7.0 .TP .B Levels = b\(aqLvls\(aq .UNINDENT .INDENT 7.0 .TP .B LightingEffects = b\(aqLghE\(aq .UNINDENT .INDENT 7.0 .TP .B Link = b\(aqLnk \(aq .UNINDENT .INDENT 7.0 .TP .B Make = b\(aqMk \(aq .UNINDENT .INDENT 7.0 .TP .B Maximum = b\(aqMxm \(aq .UNINDENT .INDENT 7.0 .TP .B Median = b\(aqMdn \(aq .UNINDENT .INDENT 7.0 .TP .B MergeLayers = b\(aqMrg2\(aq .UNINDENT .INDENT 7.0 .TP .B MergeLayersOld = b\(aqMrgL\(aq .UNINDENT .INDENT 7.0 .TP .B MergeSpotChannel = b\(aqMSpt\(aq .UNINDENT .INDENT 7.0 .TP .B MergeVisible = b\(aqMrgV\(aq .UNINDENT .INDENT 7.0 .TP .B Mezzotint = b\(aqMztn\(aq .UNINDENT .INDENT 7.0 .TP .B Minimum = b\(aqMnm \(aq .UNINDENT .INDENT 7.0 .TP .B Mosaic = b\(aqMsc \(aq .UNINDENT .INDENT 7.0 .TP .B Mosaic_PLUGIN = b\(aqMscT\(aq .UNINDENT .INDENT 7.0 .TP .B MotionBlur = b\(aqMtnB\(aq .UNINDENT .INDENT 7.0 .TP .B Move = b\(aqmove\(aq .UNINDENT .INDENT 7.0 .TP .B NTSCColors = b\(aqNTSC\(aq .UNINDENT .INDENT 7.0 .TP .B NeonGlow = b\(aqNGlw\(aq .UNINDENT .INDENT 7.0 .TP .B Next = b\(aqNxt \(aq .UNINDENT .INDENT 7.0 .TP .B NotePaper = b\(aqNtPr\(aq .UNINDENT .INDENT 7.0 .TP .B Notify = b\(aqNtfy\(aq .UNINDENT .INDENT 7.0 .TP .B Null = b\(aqnull\(aq .UNINDENT .INDENT 7.0 .TP .B OceanRipple = b\(aqOcnR\(aq .UNINDENT .INDENT 7.0 .TP .B Offset = b\(aqOfst\(aq .UNINDENT .INDENT 7.0 .TP .B Open = b\(aqOpn \(aq .UNINDENT .INDENT 7.0 .TP .B OpenUntitled = b\(aqOpnU\(aq .UNINDENT .INDENT 7.0 .TP .B PaintDaubs = b\(aqPntD\(aq .UNINDENT .INDENT 7.0 .TP .B PaletteKnife = b\(aqPltK\(aq .UNINDENT .INDENT 7.0 .TP .B Paste = b\(aqpast\(aq .UNINDENT .INDENT 7.0 .TP .B PasteEffects = b\(aqPaFX\(aq .UNINDENT .INDENT 7.0 .TP .B PasteInto = b\(aqPstI\(aq .UNINDENT .INDENT 7.0 .TP .B PasteOutside = b\(aqPstO\(aq .UNINDENT .INDENT 7.0 .TP .B Patchwork = b\(aqPtch\(aq .UNINDENT .INDENT 7.0 .TP .B Photocopy = b\(aqPhtc\(aq .UNINDENT .INDENT 7.0 .TP .B Pinch = b\(aqPnch\(aq .UNINDENT .INDENT 7.0 .TP .B Place = b\(aqPlc \(aq .UNINDENT .INDENT 7.0 .TP .B Plaster = b\(aqPlst\(aq .UNINDENT .INDENT 7.0 .TP .B PlasticWrap = b\(aqPlsW\(aq .UNINDENT .INDENT 7.0 .TP .B Play = b\(aqPly \(aq .UNINDENT .INDENT 7.0 .TP .B Pointillize = b\(aqPntl\(aq .UNINDENT .INDENT 7.0 .TP .B Polar = b\(aqPlr \(aq .UNINDENT .INDENT 7.0 .TP .B PosterEdges = b\(aqPstE\(aq .UNINDENT .INDENT 7.0 .TP .B Posterize = b\(aqPstr\(aq .UNINDENT .INDENT 7.0 .TP .B Previous = b\(aqPrvs\(aq .UNINDENT .INDENT 7.0 .TP .B Print = b\(aqPrnt\(aq .UNINDENT .INDENT 7.0 .TP .B ProfileToProfile = b\(aqPrfT\(aq .UNINDENT .INDENT 7.0 .TP .B Purge = b\(aqPrge\(aq .UNINDENT .INDENT 7.0 .TP .B Quit = b\(aqquit\(aq .UNINDENT .INDENT 7.0 .TP .B RadialBlur = b\(aqRdlB\(aq .UNINDENT .INDENT 7.0 .TP .B Rasterize = b\(aqRstr\(aq .UNINDENT .INDENT 7.0 .TP .B RasterizeTypeSheet = b\(aqRstT\(aq .UNINDENT .INDENT 7.0 .TP .B RemoveBlackMatte = b\(aqRmvB\(aq .UNINDENT .INDENT 7.0 .TP .B RemoveLayerMask = b\(aqRmvL\(aq .UNINDENT .INDENT 7.0 .TP .B RemoveWhiteMatte = b\(aqRmvW\(aq .UNINDENT .INDENT 7.0 .TP .B Rename = b\(aqRnm \(aq .UNINDENT .INDENT 7.0 .TP .B ReplaceColor = b\(aqRplC\(aq .UNINDENT .INDENT 7.0 .TP .B Reset = b\(aqRset\(aq .UNINDENT .INDENT 7.0 .TP .B Reticulation = b\(aqRtcl\(aq .UNINDENT .INDENT 7.0 .TP .B Revert = b\(aqRvrt\(aq .UNINDENT .INDENT 7.0 .TP .B Ripple = b\(aqRple\(aq .UNINDENT .INDENT 7.0 .TP .B Rotate = b\(aqRtte\(aq .UNINDENT .INDENT 7.0 .TP .B RoughPastels = b\(aqRghP\(aq .UNINDENT .INDENT 7.0 .TP .B Save = b\(aqsave\(aq .UNINDENT .INDENT 7.0 .TP .B Select = b\(aqslct\(aq .UNINDENT .INDENT 7.0 .TP .B SelectiveColor = b\(aqSlcC\(aq .UNINDENT .INDENT 7.0 .TP .B Set = b\(aqsetd\(aq .UNINDENT .INDENT 7.0 .TP .B Sharpen = b\(aqShrp\(aq .UNINDENT .INDENT 7.0 .TP .B SharpenEdges = b\(aqShrE\(aq .UNINDENT .INDENT 7.0 .TP .B SharpenMore = b\(aqShrM\(aq .UNINDENT .INDENT 7.0 .TP .B Shear = b\(aqShr \(aq .UNINDENT .INDENT 7.0 .TP .B Show = b\(aqShw \(aq .UNINDENT .INDENT 7.0 .TP .B Similar = b\(aqSmlr\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlur = b\(aqSmrB\(aq .UNINDENT .INDENT 7.0 .TP .B Smooth = b\(aqSmth\(aq .UNINDENT .INDENT 7.0 .TP .B SmudgeStick = b\(aqSmdS\(aq .UNINDENT .INDENT 7.0 .TP .B Solarize = b\(aqSlrz\(aq .UNINDENT .INDENT 7.0 .TP .B Spatter = b\(aqSpt \(aq .UNINDENT .INDENT 7.0 .TP .B Spherize = b\(aqSphr\(aq .UNINDENT .INDENT 7.0 .TP .B SplitChannels = b\(aqSplC\(aq .UNINDENT .INDENT 7.0 .TP .B Sponge = b\(aqSpng\(aq .UNINDENT .INDENT 7.0 .TP .B SprayedStrokes = b\(aqSprS\(aq .UNINDENT .INDENT 7.0 .TP .B StainedGlass = b\(aqStnG\(aq .UNINDENT .INDENT 7.0 .TP .B Stamp = b\(aqStmp\(aq .UNINDENT .INDENT 7.0 .TP .B Stop = b\(aqStop\(aq .UNINDENT .INDENT 7.0 .TP .B Stroke = b\(aqStrk\(aq .UNINDENT .INDENT 7.0 .TP .B Subtract = b\(aqSbtr\(aq .UNINDENT .INDENT 7.0 .TP .B SubtractFrom = b\(aqSbtF\(aq .UNINDENT .INDENT 7.0 .TP .B Sumie = b\(aqSmie\(aq .UNINDENT .INDENT 7.0 .TP .B TakeMergedSnapshot = b\(aqTkMr\(aq .UNINDENT .INDENT 7.0 .TP .B TakeSnapshot = b\(aqTkSn\(aq .UNINDENT .INDENT 7.0 .TP .B TextureFill = b\(aqTxtF\(aq .UNINDENT .INDENT 7.0 .TP .B Texturizer = b\(aqTxtz\(aq .UNINDENT .INDENT 7.0 .TP .B Threshold = b\(aqThrs\(aq .UNINDENT .INDENT 7.0 .TP .B Tiles = b\(aqTls \(aq .UNINDENT .INDENT 7.0 .TP .B TornEdges = b\(aqTrnE\(aq .UNINDENT .INDENT 7.0 .TP .B TraceContour = b\(aqTrcC\(aq .UNINDENT .INDENT 7.0 .TP .B Transform = b\(aqTrnf\(aq .UNINDENT .INDENT 7.0 .TP .B Trap = b\(aqTrap\(aq .UNINDENT .INDENT 7.0 .TP .B Twirl = b\(aqTwrl\(aq .UNINDENT .INDENT 7.0 .TP .B Underpainting = b\(aqUndr\(aq .UNINDENT .INDENT 7.0 .TP .B Undo = b\(aqundo\(aq .UNINDENT .INDENT 7.0 .TP .B Ungroup = b\(aqUngr\(aq .UNINDENT .INDENT 7.0 .TP .B Unlink = b\(aqUnlk\(aq .UNINDENT .INDENT 7.0 .TP .B UnsharpMask = b\(aqUnsM\(aq .UNINDENT .INDENT 7.0 .TP .B Variations = b\(aqVrtn\(aq .UNINDENT .INDENT 7.0 .TP .B Wait = b\(aqWait\(aq .UNINDENT .INDENT 7.0 .TP .B WaterPaper = b\(aqWtrP\(aq .UNINDENT .INDENT 7.0 .TP .B Watercolor = b\(aqWtrc\(aq .UNINDENT .INDENT 7.0 .TP .B Wave = b\(aqWave\(aq .UNINDENT .INDENT 7.0 .TP .B Wind = b\(aqWnd \(aq .UNINDENT .INDENT 7.0 .TP .B ZigZag = b\(aqZgZg\(aq .UNINDENT .INDENT 7.0 .TP .B _3DTransform = b\(aqTdT \(aq .UNINDENT .INDENT 7.0 .TP .B _generate_next_value_(start, count, last_values) Generate the next value when not given. .sp name: the name of the member start: the initial start value or None count: the number of existing members last_values: the list of values assigned .UNINDENT .INDENT 7.0 .TP .B _member_map_ = {\(aqAccentedEdges\(aq: Event.AccentedEdges, \(aqAdd\(aq: Event.Add, \(aqAddNoise\(aq: Event.AddNoise, \(aqAddTo\(aq: Event.AddTo, \(aqAlign\(aq: Event.Align, \(aqAll\(aq: Event.All, \(aqAngledStrokes\(aq: Event.AngledStrokes, \(aqApplyImage\(aq: Event.ApplyImage, \(aqApplyStyle\(aq: Event.ApplyStyle, \(aqAssert\(aq: Event.Assert, \(aqAverage\(aq: Event.Average, \(aqBackLight\(aq: Event.BackLight, \(aqBasRelief\(aq: Event.BasRelief, \(aqBatch\(aq: Event.Batch, \(aqBatchFromDroplet\(aq: Event.BatchFromDroplet, \(aqBlur\(aq: Event.Blur, \(aqBlurMore\(aq: Event.BlurMore, \(aqBorder\(aq: Event.Border, \(aqBrightness\(aq: Event.Brightness, \(aqCanvasSize\(aq: Event.CanvasSize, \(aqChalkCharcoal\(aq: Event.ChalkCharcoal, \(aqChannelMixer\(aq: Event.ChannelMixer, \(aqCharcoal\(aq: Event.Charcoal, \(aqChrome\(aq: Event.Chrome, \(aqClear\(aq: Event.Clear, \(aqClose\(aq: Event.Close, \(aqClouds\(aq: Event.Clouds, \(aqColorBalance\(aq: Event.ColorBalance, \(aqColorCast\(aq: Event.ColorCast, \(aqColorHalftone\(aq: Event.ColorHalftone, \(aqColorRange\(aq: Event.ColorRange, \(aqColoredPencil\(aq: Event.ColoredPencil, \(aqConteCrayon\(aq: Event.ConteCrayon, \(aqContract\(aq: Event.Contract, \(aqConvertMode\(aq: Event.ConvertMode, \(aqCopy\(aq: Event.Copy, \(aqCopyEffects\(aq: Event.CopyEffects, \(aqCopyMerged\(aq: Event.CopyMerged, \(aqCopyToLayer\(aq: Event.CopyToLayer, \(aqCraquelure\(aq: Event.Craquelure, \(aqCreateDroplet\(aq: Event.CreateDroplet, \(aqCrop\(aq: Event.Crop, \(aqCrosshatch\(aq: Event.Crosshatch, \(aqCrystallize\(aq: Event.Crystallize, \(aqCurves\(aq: Event.Curves, \(aqCustom\(aq: Event.Custom, \(aqCut\(aq: Event.Cut, \(aqCutToLayer\(aq: Event.CutToLayer, \(aqCutout\(aq: Event.Cutout, \(aqDarkStrokes\(aq: Event.DarkStrokes, \(aqDeInterlace\(aq: Event.DeInterlace, \(aqDefinePattern\(aq: Event.DefinePattern, \(aqDefringe\(aq: Event.Defringe, \(aqDelete\(aq: Event.Delete, \(aqDesaturate\(aq: Event.Desaturate, \(aqDeselect\(aq: Event.Deselect, \(aqDespeckle\(aq: Event.Despeckle, \(aqDifferenceClouds\(aq: Event.DifferenceClouds, \(aqDiffuse\(aq: Event.Diffuse, \(aqDiffuseGlow\(aq: Event.DiffuseGlow, \(aqDisableLayerFX\(aq: Event.DisableLayerFX, \(aqDisplace\(aq: Event.Displace, \(aqDistribute\(aq: Event.Distribute, \(aqDraw\(aq: Event.Draw, \(aqDryBrush\(aq: Event.DryBrush, \(aqDuplicate\(aq: Event.Duplicate, \(aqDustAndScratches\(aq: Event.DustAndScratches, \(aqEmboss\(aq: Event.Emboss, \(aqEqualize\(aq: Event.Equalize, \(aqExchange\(aq: Event.Exchange, \(aqExpand\(aq: Event.Expand, \(aqExport\(aq: Event.Export, \(aqExtrude\(aq: Event.Extrude, \(aqFacet\(aq: Event.Facet, \(aqFade\(aq: Event.Fade, \(aqFeather\(aq: Event.Feather, \(aqFibers\(aq: Event.Fibers, \(aqFill\(aq: Event.Fill, \(aqFilmGrain\(aq: Event.FilmGrain, \(aqFilter\(aq: Event.Filter, \(aqFindEdges\(aq: Event.FindEdges, \(aqFlattenImage\(aq: Event.FlattenImage, \(aqFlip\(aq: Event.Flip, \(aqFragment\(aq: Event.Fragment, \(aqFresco\(aq: Event.Fresco, \(aqGaussianBlur\(aq: Event.GaussianBlur, \(aqGet\(aq: Event.Get, \(aqGlass\(aq: Event.Glass, \(aqGlowingEdges\(aq: Event.GlowingEdges, \(aqGradient\(aq: Event.Gradient, \(aqGradientMap\(aq: Event.GradientMap, \(aqGrain\(aq: Event.Grain, \(aqGraphicPen\(aq: Event.GraphicPen, \(aqGroup\(aq: Event.Group, \(aqGrow\(aq: Event.Grow, \(aqHSBHSL\(aq: Event.HSBHSL, \(aqHalftoneScreen\(aq: Event.HalftoneScreen, \(aqHide\(aq: Event.Hide, \(aqHighPass\(aq: Event.HighPass, \(aqHueSaturation\(aq: Event.HueSaturation, \(aqImageSize\(aq: Event.ImageSize, \(aqImport\(aq: Event.Import, \(aqInkOutlines\(aq: Event.InkOutlines, \(aqIntersect\(aq: Event.Intersect, \(aqIntersectWith\(aq: Event.IntersectWith, \(aqInverse\(aq: Event.Inverse, \(aqInvert\(aq: Event.Invert, \(aqLensFlare\(aq: Event.LensFlare, \(aqLevels\(aq: Event.Levels, \(aqLightingEffects\(aq: Event.LightingEffects, \(aqLink\(aq: Event.Link, \(aqMake\(aq: Event.Make, \(aqMaximum\(aq: Event.Maximum, \(aqMedian\(aq: Event.Median, \(aqMergeLayers\(aq: Event.MergeLayers, \(aqMergeLayersOld\(aq: Event.MergeLayersOld, \(aqMergeSpotChannel\(aq: Event.MergeSpotChannel, \(aqMergeVisible\(aq: Event.MergeVisible, \(aqMezzotint\(aq: Event.Mezzotint, \(aqMinimum\(aq: Event.Minimum, \(aqMosaic\(aq: Event.Mosaic, \(aqMosaic_PLUGIN\(aq: Event.Mosaic_PLUGIN, \(aqMotionBlur\(aq: Event.MotionBlur, \(aqMove\(aq: Event.Move, \(aqNTSCColors\(aq: Event.NTSCColors, \(aqNeonGlow\(aq: Event.NeonGlow, \(aqNext\(aq: Event.Next, \(aqNotePaper\(aq: Event.NotePaper, \(aqNotify\(aq: Event.Notify, \(aqNull\(aq: Event.Null, \(aqOceanRipple\(aq: Event.OceanRipple, \(aqOffset\(aq: Event.Offset, \(aqOpen\(aq: Event.Open, \(aqOpenUntitled\(aq: Event.OpenUntitled, \(aqPaintDaubs\(aq: Event.PaintDaubs, \(aqPaletteKnife\(aq: Event.PaletteKnife, \(aqPaste\(aq: Event.Paste, \(aqPasteEffects\(aq: Event.PasteEffects, \(aqPasteInto\(aq: Event.PasteInto, \(aqPasteOutside\(aq: Event.PasteOutside, \(aqPatchwork\(aq: Event.Patchwork, \(aqPhotocopy\(aq: Event.Photocopy, \(aqPinch\(aq: Event.Pinch, \(aqPlace\(aq: Event.Place, \(aqPlaster\(aq: Event.Plaster, \(aqPlasticWrap\(aq: Event.PlasticWrap, \(aqPlay\(aq: Event.Play, \(aqPointillize\(aq: Event.Pointillize, \(aqPolar\(aq: Event.Polar, \(aqPosterEdges\(aq: Event.PosterEdges, \(aqPosterize\(aq: Event.Posterize, \(aqPrevious\(aq: Event.Previous, \(aqPrint\(aq: Event.Print, \(aqProfileToProfile\(aq: Event.ProfileToProfile, \(aqPurge\(aq: Event.Purge, \(aqQuit\(aq: Event.Quit, \(aqRadialBlur\(aq: Event.RadialBlur, \(aqRasterize\(aq: Event.Rasterize, \(aqRasterizeTypeSheet\(aq: Event.RasterizeTypeSheet, \(aqRemoveBlackMatte\(aq: Event.RemoveBlackMatte, \(aqRemoveLayerMask\(aq: Event.RemoveLayerMask, \(aqRemoveWhiteMatte\(aq: Event.RemoveWhiteMatte, \(aqRename\(aq: Event.Rename, \(aqReplaceColor\(aq: Event.ReplaceColor, \(aqReset\(aq: Event.Reset, \(aqReticulation\(aq: Event.Reticulation, \(aqRevert\(aq: Event.Revert, \(aqRipple\(aq: Event.Ripple, \(aqRotate\(aq: Event.Rotate, \(aqRoughPastels\(aq: Event.RoughPastels, \(aqSave\(aq: Event.Save, \(aqSelect\(aq: Event.Select, \(aqSelectiveColor\(aq: Event.SelectiveColor, \(aqSet\(aq: Event.Set, \(aqSharpen\(aq: Event.Sharpen, \(aqSharpenEdges\(aq: Event.SharpenEdges, \(aqSharpenMore\(aq: Event.SharpenMore, \(aqShear\(aq: Event.Shear, \(aqShow\(aq: Event.Show, \(aqSimilar\(aq: Event.Similar, \(aqSmartBlur\(aq: Event.SmartBlur, \(aqSmooth\(aq: Event.Smooth, \(aqSmudgeStick\(aq: Event.SmudgeStick, \(aqSolarize\(aq: Event.Solarize, \(aqSpatter\(aq: Event.Spatter, \(aqSpherize\(aq: Event.Spherize, \(aqSplitChannels\(aq: Event.SplitChannels, \(aqSponge\(aq: Event.Sponge, \(aqSprayedStrokes\(aq: Event.SprayedStrokes, \(aqStainedGlass\(aq: Event.StainedGlass, \(aqStamp\(aq: Event.Stamp, \(aqStop\(aq: Event.Stop, \(aqStroke\(aq: Event.Stroke, \(aqSubtract\(aq: Event.Subtract, \(aqSubtractFrom\(aq: Event.SubtractFrom, \(aqSumie\(aq: Event.Sumie, \(aqTakeMergedSnapshot\(aq: Event.TakeMergedSnapshot, \(aqTakeSnapshot\(aq: Event.TakeSnapshot, \(aqTextureFill\(aq: Event.TextureFill, \(aqTexturizer\(aq: Event.Texturizer, \(aqThreshold\(aq: Event.Threshold, \(aqTiles\(aq: Event.Tiles, \(aqTornEdges\(aq: Event.TornEdges, \(aqTraceContour\(aq: Event.TraceContour, \(aqTransform\(aq: Event.Transform, \(aqTrap\(aq: Event.Trap, \(aqTwirl\(aq: Event.Twirl, \(aqUnderpainting\(aq: Event.Underpainting, \(aqUndo\(aq: Event.Undo, \(aqUngroup\(aq: Event.Ungroup, \(aqUnlink\(aq: Event.Unlink, \(aqUnsharpMask\(aq: Event.UnsharpMask, \(aqVariations\(aq: Event.Variations, \(aqWait\(aq: Event.Wait, \(aqWaterPaper\(aq: Event.WaterPaper, \(aqWatercolor\(aq: Event.Watercolor, \(aqWave\(aq: Event.Wave, \(aqWind\(aq: Event.Wind, \(aqZigZag\(aq: Event.ZigZag, \(aq_3DTransform\(aq: Event._3DTransform} .UNINDENT .INDENT 7.0 .TP .B _member_names_ = [\(aq_3DTransform\(aq, \(aqAverage\(aq, \(aqApplyStyle\(aq, \(aqAssert\(aq, \(aqAccentedEdges\(aq, \(aqAdd\(aq, \(aqAddNoise\(aq, \(aqAddTo\(aq, \(aqAlign\(aq, \(aqAll\(aq, \(aqAngledStrokes\(aq, \(aqApplyImage\(aq, \(aqBasRelief\(aq, \(aqBatch\(aq, \(aqBatchFromDroplet\(aq, \(aqBlur\(aq, \(aqBlurMore\(aq, \(aqBorder\(aq, \(aqBrightness\(aq, \(aqCanvasSize\(aq, \(aqChalkCharcoal\(aq, \(aqChannelMixer\(aq, \(aqCharcoal\(aq, \(aqChrome\(aq, \(aqClear\(aq, \(aqClose\(aq, \(aqClouds\(aq, \(aqColorBalance\(aq, \(aqColorHalftone\(aq, \(aqColorRange\(aq, \(aqColoredPencil\(aq, \(aqConteCrayon\(aq, \(aqContract\(aq, \(aqConvertMode\(aq, \(aqCopy\(aq, \(aqCopyEffects\(aq, \(aqCopyMerged\(aq, \(aqCopyToLayer\(aq, \(aqCraquelure\(aq, \(aqCreateDroplet\(aq, \(aqCrop\(aq, \(aqCrosshatch\(aq, \(aqCrystallize\(aq, \(aqCurves\(aq, \(aqCustom\(aq, \(aqCut\(aq, \(aqCutToLayer\(aq, \(aqCutout\(aq, \(aqDarkStrokes\(aq, \(aqDeInterlace\(aq, \(aqDefinePattern\(aq, \(aqDefringe\(aq, \(aqDelete\(aq, \(aqDesaturate\(aq, \(aqDeselect\(aq, \(aqDespeckle\(aq, \(aqDifferenceClouds\(aq, \(aqDiffuse\(aq, \(aqDiffuseGlow\(aq, \(aqDisableLayerFX\(aq, \(aqDisplace\(aq, \(aqDistribute\(aq, \(aqDraw\(aq, \(aqDryBrush\(aq, \(aqDuplicate\(aq, \(aqDustAndScratches\(aq, \(aqEmboss\(aq, \(aqEqualize\(aq, \(aqExchange\(aq, \(aqExpand\(aq, \(aqExport\(aq, \(aqExtrude\(aq, \(aqFacet\(aq, \(aqFade\(aq, \(aqFeather\(aq, \(aqFibers\(aq, \(aqFill\(aq, \(aqFilmGrain\(aq, \(aqFilter\(aq, \(aqFindEdges\(aq, \(aqFlattenImage\(aq, \(aqFlip\(aq, \(aqFragment\(aq, \(aqFresco\(aq, \(aqGaussianBlur\(aq, \(aqGet\(aq, \(aqGlass\(aq, \(aqGlowingEdges\(aq, \(aqGradient\(aq, \(aqGradientMap\(aq, \(aqGrain\(aq, \(aqGraphicPen\(aq, \(aqGroup\(aq, \(aqGrow\(aq, \(aqHalftoneScreen\(aq, \(aqHide\(aq, \(aqHighPass\(aq, \(aqHSBHSL\(aq, \(aqHueSaturation\(aq, \(aqImageSize\(aq, \(aqImport\(aq, \(aqInkOutlines\(aq, \(aqIntersect\(aq, \(aqIntersectWith\(aq, \(aqInverse\(aq, \(aqInvert\(aq, \(aqLensFlare\(aq, \(aqLevels\(aq, \(aqLightingEffects\(aq, \(aqLink\(aq, \(aqMake\(aq, \(aqMaximum\(aq, \(aqMedian\(aq, \(aqMergeLayers\(aq, \(aqMergeLayersOld\(aq, \(aqMergeSpotChannel\(aq, \(aqMergeVisible\(aq, \(aqMezzotint\(aq, \(aqMinimum\(aq, \(aqMosaic\(aq, \(aqMosaic_PLUGIN\(aq, \(aqMotionBlur\(aq, \(aqMove\(aq, \(aqNTSCColors\(aq, \(aqNeonGlow\(aq, \(aqNext\(aq, \(aqNotePaper\(aq, \(aqNotify\(aq, \(aqNull\(aq, \(aqOceanRipple\(aq, \(aqOffset\(aq, \(aqOpen\(aq, \(aqPaintDaubs\(aq, \(aqPaletteKnife\(aq, \(aqPaste\(aq, \(aqPasteEffects\(aq, \(aqPasteInto\(aq, \(aqPasteOutside\(aq, \(aqPatchwork\(aq, \(aqPhotocopy\(aq, \(aqPinch\(aq, \(aqPlace\(aq, \(aqPlaster\(aq, \(aqPlasticWrap\(aq, \(aqPlay\(aq, \(aqPointillize\(aq, \(aqPolar\(aq, \(aqPosterEdges\(aq, \(aqPosterize\(aq, \(aqPrevious\(aq, \(aqPrint\(aq, \(aqProfileToProfile\(aq, \(aqPurge\(aq, \(aqQuit\(aq, \(aqRadialBlur\(aq, \(aqRasterize\(aq, \(aqRasterizeTypeSheet\(aq, \(aqRemoveBlackMatte\(aq, \(aqRemoveLayerMask\(aq, \(aqRemoveWhiteMatte\(aq, \(aqRename\(aq, \(aqReplaceColor\(aq, \(aqReset\(aq, \(aqReticulation\(aq, \(aqRevert\(aq, \(aqRipple\(aq, \(aqRotate\(aq, \(aqRoughPastels\(aq, \(aqSave\(aq, \(aqSelect\(aq, \(aqSelectiveColor\(aq, \(aqSet\(aq, \(aqSharpenEdges\(aq, \(aqSharpen\(aq, \(aqSharpenMore\(aq, \(aqShear\(aq, \(aqShow\(aq, \(aqSimilar\(aq, \(aqSmartBlur\(aq, \(aqSmooth\(aq, \(aqSmudgeStick\(aq, \(aqSolarize\(aq, \(aqSpatter\(aq, \(aqSpherize\(aq, \(aqSplitChannels\(aq, \(aqSponge\(aq, \(aqSprayedStrokes\(aq, \(aqStainedGlass\(aq, \(aqStamp\(aq, \(aqStop\(aq, \(aqStroke\(aq, \(aqSubtract\(aq, \(aqSubtractFrom\(aq, \(aqSumie\(aq, \(aqTakeMergedSnapshot\(aq, \(aqTakeSnapshot\(aq, \(aqTextureFill\(aq, \(aqTexturizer\(aq, \(aqThreshold\(aq, \(aqTiles\(aq, \(aqTornEdges\(aq, \(aqTraceContour\(aq, \(aqTransform\(aq, \(aqTrap\(aq, \(aqTwirl\(aq, \(aqUnderpainting\(aq, \(aqUndo\(aq, \(aqUngroup\(aq, \(aqUnlink\(aq, \(aqUnsharpMask\(aq, \(aqVariations\(aq, \(aqWait\(aq, \(aqWaterPaper\(aq, \(aqWatercolor\(aq, \(aqWave\(aq, \(aqWind\(aq, \(aqZigZag\(aq, \(aqBackLight\(aq, \(aqColorCast\(aq, \(aqOpenUntitled\(aq] .UNINDENT .INDENT 7.0 .TP .B _member_type_ alias of \fBbytes\fP .UNINDENT .INDENT 7.0 .TP .B _new_member_(**kwargs) Create and return a new object. See help(type) for accurate signature. .UNINDENT .INDENT 7.0 .TP .B _unhashable_values_ = [] .UNINDENT .INDENT 7.0 .TP .B _use_args_ = True .UNINDENT .INDENT 7.0 .TP .B _value2member_map_ = {b\(aqASty\(aq: Event.ApplyStyle, b\(aqAccE\(aq: Event.AccentedEdges, b\(aqAdNs\(aq: Event.AddNoise, b\(aqAdd \(aq: Event.Add, b\(aqAddT\(aq: Event.AddTo, b\(aqAlgn\(aq: Event.Align, b\(aqAll \(aq: Event.All, b\(aqAngS\(aq: Event.AngledStrokes, b\(aqAppI\(aq: Event.ApplyImage, b\(aqAsrt\(aq: Event.Assert, b\(aqAvrg\(aq: Event.Average, b\(aqBacL\(aq: Event.BackLight, b\(aqBlr \(aq: Event.Blur, b\(aqBlrM\(aq: Event.BlurMore, b\(aqBrdr\(aq: Event.Border, b\(aqBrgC\(aq: Event.Brightness, b\(aqBsRl\(aq: Event.BasRelief, b\(aqBtcF\(aq: Event.BatchFromDroplet, b\(aqBtch\(aq: Event.Batch, b\(aqChlC\(aq: Event.ChalkCharcoal, b\(aqChnM\(aq: Event.ChannelMixer, b\(aqChrc\(aq: Event.Charcoal, b\(aqChrm\(aq: Event.Chrome, b\(aqClds\(aq: Event.Clouds, b\(aqCler\(aq: Event.Clear, b\(aqClrB\(aq: Event.ColorBalance, b\(aqClrH\(aq: Event.ColorHalftone, b\(aqClrP\(aq: Event.ColoredPencil, b\(aqClrR\(aq: Event.ColorRange, b\(aqCls \(aq: Event.Close, b\(aqCntC\(aq: Event.ConteCrayon, b\(aqCntc\(aq: Event.Contract, b\(aqCnvM\(aq: Event.ConvertMode, b\(aqCnvS\(aq: Event.CanvasSize, b\(aqColE\(aq: Event.ColorCast, b\(aqCpFX\(aq: Event.CopyEffects, b\(aqCpTL\(aq: Event.CopyToLayer, b\(aqCpyM\(aq: Event.CopyMerged, b\(aqCrop\(aq: Event.Crop, b\(aqCrql\(aq: Event.Craquelure, b\(aqCrsh\(aq: Event.Crosshatch, b\(aqCrst\(aq: Event.Crystallize, b\(aqCrtD\(aq: Event.CreateDroplet, b\(aqCrvs\(aq: Event.Curves, b\(aqCstm\(aq: Event.Custom, b\(aqCt \(aq: Event.Cutout, b\(aqCtTL\(aq: Event.CutToLayer, b\(aqDfnP\(aq: Event.DefinePattern, b\(aqDfrC\(aq: Event.DifferenceClouds, b\(aqDfrg\(aq: Event.Defringe, b\(aqDfs \(aq: Event.Diffuse, b\(aqDfsG\(aq: Event.DiffuseGlow, b\(aqDlt \(aq: Event.Delete, b\(aqDntr\(aq: Event.DeInterlace, b\(aqDplc\(aq: Event.Duplicate, b\(aqDraw\(aq: Event.Draw, b\(aqDrkS\(aq: Event.DarkStrokes, b\(aqDryB\(aq: Event.DryBrush, b\(aqDslc\(aq: Event.Deselect, b\(aqDspc\(aq: Event.Despeckle, b\(aqDspl\(aq: Event.Displace, b\(aqDstS\(aq: Event.DustAndScratches, b\(aqDstr\(aq: Event.Distribute, b\(aqDstt\(aq: Event.Desaturate, b\(aqEmbs\(aq: Event.Emboss, b\(aqEqlz\(aq: Event.Equalize, b\(aqExch\(aq: Event.Exchange, b\(aqExpn\(aq: Event.Expand, b\(aqExpr\(aq: Event.Export, b\(aqExtr\(aq: Event.Extrude, b\(aqFade\(aq: Event.Fade, b\(aqFbrs\(aq: Event.Fibers, b\(aqFct \(aq: Event.Facet, b\(aqFl \(aq: Event.Fill, b\(aqFlip\(aq: Event.Flip, b\(aqFlmG\(aq: Event.FilmGrain, b\(aqFltI\(aq: Event.FlattenImage, b\(aqFltr\(aq: Event.Filter, b\(aqFndE\(aq: Event.FindEdges, b\(aqFrgm\(aq: Event.Fragment, b\(aqFrsc\(aq: Event.Fresco, b\(aqFthr\(aq: Event.Feather, b\(aqGls \(aq: Event.Glass, b\(aqGlwE\(aq: Event.GlowingEdges, b\(aqGrMp\(aq: Event.GradientMap, b\(aqGraP\(aq: Event.GraphicPen, b\(aqGrdn\(aq: Event.Gradient, b\(aqGrn \(aq: Event.Grain, b\(aqGrow\(aq: Event.Grow, b\(aqGrpL\(aq: Event.Group, b\(aqGsnB\(aq: Event.GaussianBlur, b\(aqHStr\(aq: Event.HueSaturation, b\(aqHd \(aq: Event.Hide, b\(aqHghP\(aq: Event.HighPass, b\(aqHlfS\(aq: Event.HalftoneScreen, b\(aqHsbP\(aq: Event.HSBHSL, b\(aqImgS\(aq: Event.ImageSize, b\(aqImpr\(aq: Event.Import, b\(aqInkO\(aq: Event.InkOutlines, b\(aqIntW\(aq: Event.IntersectWith, b\(aqIntr\(aq: Event.Intersect, b\(aqInvr\(aq: Event.Invert, b\(aqInvs\(aq: Event.Inverse, b\(aqLghE\(aq: Event.LightingEffects, b\(aqLnk \(aq: Event.Link, b\(aqLnsF\(aq: Event.LensFlare, b\(aqLvls\(aq: Event.Levels, b\(aqMSpt\(aq: Event.MergeSpotChannel, b\(aqMdn \(aq: Event.Median, b\(aqMk \(aq: Event.Make, b\(aqMnm \(aq: Event.Minimum, b\(aqMrg2\(aq: Event.MergeLayers, b\(aqMrgL\(aq: Event.MergeLayersOld, b\(aqMrgV\(aq: Event.MergeVisible, b\(aqMsc \(aq: Event.Mosaic, b\(aqMscT\(aq: Event.Mosaic_PLUGIN, b\(aqMtnB\(aq: Event.MotionBlur, b\(aqMxm \(aq: Event.Maximum, b\(aqMztn\(aq: Event.Mezzotint, b\(aqNGlw\(aq: Event.NeonGlow, b\(aqNTSC\(aq: Event.NTSCColors, b\(aqNtPr\(aq: Event.NotePaper, b\(aqNtfy\(aq: Event.Notify, b\(aqNxt \(aq: Event.Next, b\(aqOcnR\(aq: Event.OceanRipple, b\(aqOfst\(aq: Event.Offset, b\(aqOpn \(aq: Event.Open, b\(aqOpnU\(aq: Event.OpenUntitled, b\(aqPaFX\(aq: Event.PasteEffects, b\(aqPhtc\(aq: Event.Photocopy, b\(aqPlc \(aq: Event.Place, b\(aqPlr \(aq: Event.Polar, b\(aqPlsW\(aq: Event.PlasticWrap, b\(aqPlst\(aq: Event.Plaster, b\(aqPltK\(aq: Event.PaletteKnife, b\(aqPly \(aq: Event.Play, b\(aqPnch\(aq: Event.Pinch, b\(aqPntD\(aq: Event.PaintDaubs, b\(aqPntl\(aq: Event.Pointillize, b\(aqPrfT\(aq: Event.ProfileToProfile, b\(aqPrge\(aq: Event.Purge, b\(aqPrnt\(aq: Event.Print, b\(aqPrvs\(aq: Event.Previous, b\(aqPstE\(aq: Event.PosterEdges, b\(aqPstI\(aq: Event.PasteInto, b\(aqPstO\(aq: Event.PasteOutside, b\(aqPstr\(aq: Event.Posterize, b\(aqPtch\(aq: Event.Patchwork, b\(aqRdlB\(aq: Event.RadialBlur, b\(aqRghP\(aq: Event.RoughPastels, b\(aqRmvB\(aq: Event.RemoveBlackMatte, b\(aqRmvL\(aq: Event.RemoveLayerMask, b\(aqRmvW\(aq: Event.RemoveWhiteMatte, b\(aqRnm \(aq: Event.Rename, b\(aqRplC\(aq: Event.ReplaceColor, b\(aqRple\(aq: Event.Ripple, b\(aqRset\(aq: Event.Reset, b\(aqRstT\(aq: Event.RasterizeTypeSheet, b\(aqRstr\(aq: Event.Rasterize, b\(aqRtcl\(aq: Event.Reticulation, b\(aqRtte\(aq: Event.Rotate, b\(aqRvrt\(aq: Event.Revert, b\(aqSbtF\(aq: Event.SubtractFrom, b\(aqSbtr\(aq: Event.Subtract, b\(aqShr \(aq: Event.Shear, b\(aqShrE\(aq: Event.SharpenEdges, b\(aqShrM\(aq: Event.SharpenMore, b\(aqShrp\(aq: Event.Sharpen, b\(aqShw \(aq: Event.Show, b\(aqSlcC\(aq: Event.SelectiveColor, b\(aqSlrz\(aq: Event.Solarize, b\(aqSmdS\(aq: Event.SmudgeStick, b\(aqSmie\(aq: Event.Sumie, b\(aqSmlr\(aq: Event.Similar, b\(aqSmrB\(aq: Event.SmartBlur, b\(aqSmth\(aq: Event.Smooth, b\(aqSphr\(aq: Event.Spherize, b\(aqSplC\(aq: Event.SplitChannels, b\(aqSpng\(aq: Event.Sponge, b\(aqSprS\(aq: Event.SprayedStrokes, b\(aqSpt \(aq: Event.Spatter, b\(aqStmp\(aq: Event.Stamp, b\(aqStnG\(aq: Event.StainedGlass, b\(aqStop\(aq: Event.Stop, b\(aqStrk\(aq: Event.Stroke, b\(aqTdT \(aq: Event._3DTransform, b\(aqThrs\(aq: Event.Threshold, b\(aqTkMr\(aq: Event.TakeMergedSnapshot, b\(aqTkSn\(aq: Event.TakeSnapshot, b\(aqTls \(aq: Event.Tiles, b\(aqTrap\(aq: Event.Trap, b\(aqTrcC\(aq: Event.TraceContour, b\(aqTrnE\(aq: Event.TornEdges, b\(aqTrnf\(aq: Event.Transform, b\(aqTwrl\(aq: Event.Twirl, b\(aqTxtF\(aq: Event.TextureFill, b\(aqTxtz\(aq: Event.Texturizer, b\(aqUndr\(aq: Event.Underpainting, b\(aqUngr\(aq: Event.Ungroup, b\(aqUnlk\(aq: Event.Unlink, b\(aqUnsM\(aq: Event.UnsharpMask, b\(aqVrtn\(aq: Event.Variations, b\(aqWait\(aq: Event.Wait, b\(aqWave\(aq: Event.Wave, b\(aqWnd \(aq: Event.Wind, b\(aqWtrP\(aq: Event.WaterPaper, b\(aqWtrc\(aq: Event.Watercolor, b\(aqZgZg\(aq: Event.ZigZag, b\(aqcopy\(aq: Event.Copy, b\(aqcut \(aq: Event.Cut, b\(aqdlfx\(aq: Event.DisableLayerFX, b\(aqgetd\(aq: Event.Get, b\(aqmove\(aq: Event.Move, b\(aqnull\(aq: Event.Null, b\(aqpast\(aq: Event.Paste, b\(aqquit\(aq: Event.Quit, b\(aqsave\(aq: Event.Save, b\(aqsetd\(aq: Event.Set, b\(aqslct\(aq: Event.Select, b\(aqundo\(aq: Event.Undo} .UNINDENT .INDENT 7.0 .TP .B _value_repr_() Return repr(self). .UNINDENT .UNINDENT .SS Form .INDENT 0.0 .TP .B class psd_tools.terminology.Form(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Form definitions extracted from PITerminology.h. .sp See \fI\%https://www.adobe.com/devnet/photoshop/sdk.html\fP .INDENT 7.0 .TP .B Class = b\(aqClss\(aq .UNINDENT .INDENT 7.0 .TP .B Enumerated = b\(aqEnmr\(aq .UNINDENT .INDENT 7.0 .TP .B Identifier = b\(aqIdnt\(aq .UNINDENT .INDENT 7.0 .TP .B Index = b\(aqindx\(aq .UNINDENT .INDENT 7.0 .TP .B Offset = b\(aqrele\(aq .UNINDENT .INDENT 7.0 .TP .B Property = b\(aqprop\(aq .UNINDENT .INDENT 7.0 .TP .B _generate_next_value_(start, count, last_values) Generate the next value when not given. .sp name: the name of the member start: the initial start value or None count: the number of existing members last_values: the list of values assigned .UNINDENT .INDENT 7.0 .TP .B _member_map_ = {\(aqClass\(aq: Form.Class, \(aqEnumerated\(aq: Form.Enumerated, \(aqIdentifier\(aq: Form.Identifier, \(aqIndex\(aq: Form.Index, \(aqOffset\(aq: Form.Offset, \(aqProperty\(aq: Form.Property} .UNINDENT .INDENT 7.0 .TP .B _member_names_ = [\(aqClass\(aq, \(aqEnumerated\(aq, \(aqIdentifier\(aq, \(aqIndex\(aq, \(aqOffset\(aq, \(aqProperty\(aq] .UNINDENT .INDENT 7.0 .TP .B _member_type_ alias of \fBbytes\fP .UNINDENT .INDENT 7.0 .TP .B _new_member_(**kwargs) Create and return a new object. See help(type) for accurate signature. .UNINDENT .INDENT 7.0 .TP .B _unhashable_values_ = [] .UNINDENT .INDENT 7.0 .TP .B _use_args_ = True .UNINDENT .INDENT 7.0 .TP .B _value2member_map_ = {b\(aqClss\(aq: Form.Class, b\(aqEnmr\(aq: Form.Enumerated, b\(aqIdnt\(aq: Form.Identifier, b\(aqindx\(aq: Form.Index, b\(aqprop\(aq: Form.Property, b\(aqrele\(aq: Form.Offset} .UNINDENT .INDENT 7.0 .TP .B _value_repr_() Return repr(self). .UNINDENT .UNINDENT .SS Key .INDENT 0.0 .TP .B class psd_tools.terminology.Key(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Key definitions extracted from PITerminology.h. .sp See \fI\%https://www.adobe.com/devnet/photoshop/sdk.html\fP .INDENT 7.0 .TP .B A = b\(aqA \(aq .UNINDENT .INDENT 7.0 .TP .B Adjustment = b\(aqAdjs\(aq .UNINDENT .INDENT 7.0 .TP .B Aligned = b\(aqAlgd\(aq .UNINDENT .INDENT 7.0 .TP .B Alignment = b\(aqAlgn\(aq .UNINDENT .INDENT 7.0 .TP .B AllExcept = b\(aqAllE\(aq .UNINDENT .INDENT 7.0 .TP .B AllPS = b\(aqAll \(aq .UNINDENT .INDENT 7.0 .TP .B AllToolOptions = b\(aqAlTl\(aq .UNINDENT .INDENT 7.0 .TP .B AlphaChannelOptions = b\(aqAChn\(aq .UNINDENT .INDENT 7.0 .TP .B AlphaChannels = b\(aqAlpC\(aq .UNINDENT .INDENT 7.0 .TP .B AmbientBrightness = b\(aqAmbB\(aq .UNINDENT .INDENT 7.0 .TP .B AmbientColor = b\(aqAmbC\(aq .UNINDENT .INDENT 7.0 .TP .B Amount = b\(aqAmnt\(aq .UNINDENT .INDENT 7.0 .TP .B AmplitudeMax = b\(aqAmMx\(aq .UNINDENT .INDENT 7.0 .TP .B AmplitudeMin = b\(aqAmMn\(aq .UNINDENT .INDENT 7.0 .TP .B Anchor = b\(aqAnch\(aq .UNINDENT .INDENT 7.0 .TP .B Angle = b\(aqAngl\(aq .UNINDENT .INDENT 7.0 .TP .B Angle1 = b\(aqAng1\(aq .UNINDENT .INDENT 7.0 .TP .B Angle2 = b\(aqAng2\(aq .UNINDENT .INDENT 7.0 .TP .B Angle3 = b\(aqAng3\(aq .UNINDENT .INDENT 7.0 .TP .B Angle4 = b\(aqAng4\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAlias = b\(aqAntA\(aq .UNINDENT .INDENT 7.0 .TP .B Append = b\(aqAppe\(aq .UNINDENT .INDENT 7.0 .TP .B Apply = b\(aqAply\(aq .UNINDENT .INDENT 7.0 .TP .B Area = b\(aqAr \(aq .UNINDENT .INDENT 7.0 .TP .B Arrowhead = b\(aqArrw\(aq .UNINDENT .INDENT 7.0 .TP .B As = b\(aqAs \(aq .UNINDENT .INDENT 7.0 .TP .B AssetBin = b\(aqAsst\(aq .UNINDENT .INDENT 7.0 .TP .B AssumedCMYK = b\(aqAssC\(aq .UNINDENT .INDENT 7.0 .TP .B AssumedGray = b\(aqAssG\(aq .UNINDENT .INDENT 7.0 .TP .B AssumedRGB = b\(aqAssR\(aq .UNINDENT .INDENT 7.0 .TP .B At = b\(aqAt \(aq .UNINDENT .INDENT 7.0 .TP .B Auto = b\(aqAuto\(aq .UNINDENT .INDENT 7.0 .TP .B AutoContrast = b\(aqAuCo\(aq .UNINDENT .INDENT 7.0 .TP .B AutoErase = b\(aqAtrs\(aq .UNINDENT .INDENT 7.0 .TP .B AutoKern = b\(aqAtKr\(aq .UNINDENT .INDENT 7.0 .TP .B AutoUpdate = b\(aqAtUp\(aq .UNINDENT .INDENT 7.0 .TP .B Axis = b\(aqAxis\(aq .UNINDENT .INDENT 7.0 .TP .B B = b\(aqB \(aq .UNINDENT .INDENT 7.0 .TP .B Background = b\(aqBckg\(aq .UNINDENT .INDENT 7.0 .TP .B BackgroundColor = b\(aqBckC\(aq .UNINDENT .INDENT 7.0 .TP .B BackgroundLevel = b\(aqBckL\(aq .UNINDENT .INDENT 7.0 .TP .B Backward = b\(aqBwd \(aq .UNINDENT .INDENT 7.0 .TP .B Balance = b\(aqBlnc\(aq .UNINDENT .INDENT 7.0 .TP .B BaselineShift = b\(aqBsln\(aq .UNINDENT .INDENT 7.0 .TP .B BeepWhenDone = b\(aqBpWh\(aq .UNINDENT .INDENT 7.0 .TP .B BeginRamp = b\(aqBgnR\(aq .UNINDENT .INDENT 7.0 .TP .B BeginSustain = b\(aqBgnS\(aq .UNINDENT .INDENT 7.0 .TP .B BevelDirection = b\(aqbvlD\(aq .UNINDENT .INDENT 7.0 .TP .B BevelEmboss = b\(aqebbl\(aq .UNINDENT .INDENT 7.0 .TP .B BevelStyle = b\(aqbvlS\(aq .UNINDENT .INDENT 7.0 .TP .B BevelTechnique = b\(aqbvlT\(aq .UNINDENT .INDENT 7.0 .TP .B BigNudgeH = b\(aqBgNH\(aq .UNINDENT .INDENT 7.0 .TP .B BigNudgeV = b\(aqBgNV\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepth = b\(aqBtDp\(aq .UNINDENT .INDENT 7.0 .TP .B Black = b\(aqBlck\(aq .UNINDENT .INDENT 7.0 .TP .B BlackClip = b\(aqBlcC\(aq .UNINDENT .INDENT 7.0 .TP .B BlackGeneration = b\(aqBlcn\(aq .UNINDENT .INDENT 7.0 .TP .B BlackGenerationCurve = b\(aqBlcG\(aq .UNINDENT .INDENT 7.0 .TP .B BlackIntensity = b\(aqBlcI\(aq .UNINDENT .INDENT 7.0 .TP .B BlackLevel = b\(aqBlcL\(aq .UNINDENT .INDENT 7.0 .TP .B BlackLimit = b\(aqBlcL\(aq .UNINDENT .INDENT 7.0 .TP .B Bleed = b\(aqBld \(aq .UNINDENT .INDENT 7.0 .TP .B BlendRange = b\(aqBlnd\(aq .UNINDENT .INDENT 7.0 .TP .B Blue = b\(aqBl \(aq .UNINDENT .INDENT 7.0 .TP .B BlueBlackPoint = b\(aqBlBl\(aq .UNINDENT .INDENT 7.0 .TP .B BlueFloat = b\(aqblueFloat\(aq .UNINDENT .INDENT 7.0 .TP .B BlueGamma = b\(aqBlGm\(aq .UNINDENT .INDENT 7.0 .TP .B BlueWhitePoint = b\(aqBlWh\(aq .UNINDENT .INDENT 7.0 .TP .B BlueX = b\(aqBlX \(aq .UNINDENT .INDENT 7.0 .TP .B BlueY = b\(aqBlY \(aq .UNINDENT .INDENT 7.0 .TP .B Blur = b\(aqblur\(aq .UNINDENT .INDENT 7.0 .TP .B BlurMethod = b\(aqBlrM\(aq .UNINDENT .INDENT 7.0 .TP .B BlurQuality = b\(aqBlrQ\(aq .UNINDENT .INDENT 7.0 .TP .B Book = b\(aqBk \(aq .UNINDENT .INDENT 7.0 .TP .B BorderThickness = b\(aqBrdT\(aq .UNINDENT .INDENT 7.0 .TP .B Bottom = b\(aqBtom\(aq .UNINDENT .INDENT 7.0 .TP .B Brightness = b\(aqBrgh\(aq .UNINDENT .INDENT 7.0 .TP .B BrushDetail = b\(aqBrsD\(aq .UNINDENT .INDENT 7.0 .TP .B BrushSize = b\(aqBrsS\(aq .UNINDENT .INDENT 7.0 .TP .B BrushType = b\(aqBrsT\(aq .UNINDENT .INDENT 7.0 .TP .B Brushes = b\(aqBrsh\(aq .UNINDENT .INDENT 7.0 .TP .B BumpAmplitude = b\(aqBmpA\(aq .UNINDENT .INDENT 7.0 .TP .B BumpChannel = b\(aqBmpC\(aq .UNINDENT .INDENT 7.0 .TP .B By = b\(aqBy \(aq .UNINDENT .INDENT 7.0 .TP .B Byline = b\(aqByln\(aq .UNINDENT .INDENT 7.0 .TP .B BylineTitle = b\(aqBylT\(aq .UNINDENT .INDENT 7.0 .TP .B ByteOrder = b\(aqBytO\(aq .UNINDENT .INDENT 7.0 .TP .B CMYKSetup = b\(aqCMYS\(aq .UNINDENT .INDENT 7.0 .TP .B CachePrefs = b\(aqCchP\(aq .UNINDENT .INDENT 7.0 .TP .B Calculation = b\(aqClcl\(aq .UNINDENT .INDENT 7.0 .TP .B CalibrationBars = b\(aqClbr\(aq .UNINDENT .INDENT 7.0 .TP .B Caption = b\(aqCptn\(aq .UNINDENT .INDENT 7.0 .TP .B CaptionWriter = b\(aqCptW\(aq .UNINDENT .INDENT 7.0 .TP .B Category = b\(aqCtgr\(aq .UNINDENT .INDENT 7.0 .TP .B CellSize = b\(aqClSz\(aq .UNINDENT .INDENT 7.0 .TP .B Center = b\(aqCntr\(aq .UNINDENT .INDENT 7.0 .TP .B CenterCropMarks = b\(aqCntC\(aq .UNINDENT .INDENT 7.0 .TP .B ChalkArea = b\(aqChlA\(aq .UNINDENT .INDENT 7.0 .TP .B Channel = b\(aqChnl\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelMatrix = b\(aqChMx\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelName = b\(aqChnN\(aq .UNINDENT .INDENT 7.0 .TP .B Channels = b\(aqChns\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelsInterleaved = b\(aqChnI\(aq .UNINDENT .INDENT 7.0 .TP .B CharcoalAmount = b\(aqChAm\(aq .UNINDENT .INDENT 7.0 .TP .B CharcoalArea = b\(aqChrA\(aq .UNINDENT .INDENT 7.0 .TP .B ChokeMatte = b\(aqCkmt\(aq .UNINDENT .INDENT 7.0 .TP .B ChromeFX = b\(aqChFX\(aq .UNINDENT .INDENT 7.0 .TP .B City = b\(aqCity\(aq .UNINDENT .INDENT 7.0 .TP .B ClearAmount = b\(aqClrA\(aq .UNINDENT .INDENT 7.0 .TP .B ClippingPath = b\(aqClPt\(aq .UNINDENT .INDENT 7.0 .TP .B ClippingPathEPS = b\(aqClpP\(aq .UNINDENT .INDENT 7.0 .TP .B ClippingPathFlatness = b\(aqClpF\(aq .UNINDENT .INDENT 7.0 .TP .B ClippingPathIndex = b\(aqClpI\(aq .UNINDENT .INDENT 7.0 .TP .B ClippingPathInfo = b\(aqClpg\(aq .UNINDENT .INDENT 7.0 .TP .B CloneSource = b\(aqClnS\(aq .UNINDENT .INDENT 7.0 .TP .B ClosedSubpath = b\(aqClsp\(aq .UNINDENT .INDENT 7.0 .TP .B Color = b\(aqClr \(aq .UNINDENT .INDENT 7.0 .TP .B ColorChannels = b\(aqClrh\(aq .UNINDENT .INDENT 7.0 .TP .B ColorCorrection = b\(aqClrC\(aq .UNINDENT .INDENT 7.0 .TP .B ColorIndicates = b\(aqClrI\(aq .UNINDENT .INDENT 7.0 .TP .B ColorManagement = b\(aqClMg\(aq .UNINDENT .INDENT 7.0 .TP .B ColorPickerPrefs = b\(aqClrr\(aq .UNINDENT .INDENT 7.0 .TP .B ColorSpace = b\(aqClrS\(aq .UNINDENT .INDENT 7.0 .TP .B ColorTable = b\(aqClrT\(aq .UNINDENT .INDENT 7.0 .TP .B Colorize = b\(aqClrz\(aq .UNINDENT .INDENT 7.0 .TP .B Colors = b\(aqClrs\(aq .UNINDENT .INDENT 7.0 .TP .B ColorsList = b\(aqClrL\(aq .UNINDENT .INDENT 7.0 .TP .B ColumnWidth = b\(aqClmW\(aq .UNINDENT .INDENT 7.0 .TP .B CommandKey = b\(aqCmdK\(aq .UNINDENT .INDENT 7.0 .TP .B Compensation = b\(aqCmpn\(aq .UNINDENT .INDENT 7.0 .TP .B Compression = b\(aqCmpr\(aq .UNINDENT .INDENT 7.0 .TP .B Concavity = b\(aqCncv\(aq .UNINDENT .INDENT 7.0 .TP .B Condition = b\(aqCndt\(aq .UNINDENT .INDENT 7.0 .TP .B Constant = b\(aqCnst\(aq .UNINDENT .INDENT 7.0 .TP .B Constrain = b\(aqCnst\(aq .UNINDENT .INDENT 7.0 .TP .B ConstrainProportions = b\(aqCnsP\(aq .UNINDENT .INDENT 7.0 .TP .B ConstructionFOV = b\(aqCfov\(aq .UNINDENT .INDENT 7.0 .TP .B Contiguous = b\(aqCntg\(aq .UNINDENT .INDENT 7.0 .TP .B Continue = b\(aqCntn\(aq .UNINDENT .INDENT 7.0 .TP .B Continuity = b\(aqCnty\(aq .UNINDENT .INDENT 7.0 .TP .B ContourType = b\(aqShpC\(aq .UNINDENT .INDENT 7.0 .TP .B Contrast = b\(aqCntr\(aq .UNINDENT .INDENT 7.0 .TP .B Convert = b\(aqCnvr\(aq .UNINDENT .INDENT 7.0 .TP .B Copy = b\(aqCpy \(aq .UNINDENT .INDENT 7.0 .TP .B Copyright = b\(aqCpyr\(aq .UNINDENT .INDENT 7.0 .TP .B CopyrightNotice = b\(aqCprN\(aq .UNINDENT .INDENT 7.0 .TP .B CornerCropMarks = b\(aqCrnC\(aq .UNINDENT .INDENT 7.0 .TP .B Count = b\(aqCnt \(aq .UNINDENT .INDENT 7.0 .TP .B CountryName = b\(aqCntN\(aq .UNINDENT .INDENT 7.0 .TP .B CrackBrightness = b\(aqCrcB\(aq .UNINDENT .INDENT 7.0 .TP .B CrackDepth = b\(aqCrcD\(aq .UNINDENT .INDENT 7.0 .TP .B CrackSpacing = b\(aqCrcS\(aq .UNINDENT .INDENT 7.0 .TP .B CreateLayersFromLayerFX = b\(aqblfl\(aq .UNINDENT .INDENT 7.0 .TP .B Credit = b\(aqCrdt\(aq .UNINDENT .INDENT 7.0 .TP .B Crossover = b\(aqCrss\(aq .UNINDENT .INDENT 7.0 .TP .B Current = b\(aqCrnt\(aq .UNINDENT .INDENT 7.0 .TP .B CurrentHistoryState = b\(aqCrnH\(aq .UNINDENT .INDENT 7.0 .TP .B CurrentLight = b\(aqCrnL\(aq .UNINDENT .INDENT 7.0 .TP .B CurrentToolOptions = b\(aqCrnT\(aq .UNINDENT .INDENT 7.0 .TP .B Curve = b\(aqCrv \(aq .UNINDENT .INDENT 7.0 .TP .B CurveFile = b\(aqCrvF\(aq .UNINDENT .INDENT 7.0 .TP .B Custom = b\(aqCstm\(aq .UNINDENT .INDENT 7.0 .TP .B CustomForced = b\(aqCstF\(aq .UNINDENT .INDENT 7.0 .TP .B CustomMatte = b\(aqCstM\(aq .UNINDENT .INDENT 7.0 .TP .B CustomPalette = b\(aqCstP\(aq .UNINDENT .INDENT 7.0 .TP .B Cyan = b\(aqCyn \(aq .UNINDENT .INDENT 7.0 .TP .B DCS = b\(aqDCS \(aq .UNINDENT .INDENT 7.0 .TP .B DPXFormat = b\(aqDPXf\(aq .UNINDENT .INDENT 7.0 .TP .B DarkIntensity = b\(aqDrkI\(aq .UNINDENT .INDENT 7.0 .TP .B Darkness = b\(aqDrkn\(aq .UNINDENT .INDENT 7.0 .TP .B DateCreated = b\(aqDtCr\(aq .UNINDENT .INDENT 7.0 .TP .B Datum = b\(aqDt \(aq .UNINDENT .INDENT 7.0 .TP .B Definition = b\(aqDfnt\(aq .UNINDENT .INDENT 7.0 .TP .B Density = b\(aqDnst\(aq .UNINDENT .INDENT 7.0 .TP .B Depth = b\(aqDpth\(aq .UNINDENT .INDENT 7.0 .TP .B DestBlackMax = b\(aqDstl\(aq .UNINDENT .INDENT 7.0 .TP .B DestBlackMin = b\(aqDstB\(aq .UNINDENT .INDENT 7.0 .TP .B DestWhiteMax = b\(aqDstt\(aq .UNINDENT .INDENT 7.0 .TP .B DestWhiteMin = b\(aqDstW\(aq .UNINDENT .INDENT 7.0 .TP .B DestinationMode = b\(aqDstM\(aq .UNINDENT .INDENT 7.0 .TP .B Detail = b\(aqDtl \(aq .UNINDENT .INDENT 7.0 .TP .B Diameter = b\(aqDmtr\(aq .UNINDENT .INDENT 7.0 .TP .B DiffusionDither = b\(aqDffD\(aq .UNINDENT .INDENT 7.0 .TP .B Direction = b\(aqDrct\(aq .UNINDENT .INDENT 7.0 .TP .B DirectionBalance = b\(aqDrcB\(aq .UNINDENT .INDENT 7.0 .TP .B DisplaceFile = b\(aqDspF\(aq .UNINDENT .INDENT 7.0 .TP .B DisplacementMap = b\(aqDspM\(aq .UNINDENT .INDENT 7.0 .TP .B DisplayPrefs = b\(aqDspP\(aq .UNINDENT .INDENT 7.0 .TP .B Distance = b\(aqDstn\(aq .UNINDENT .INDENT 7.0 .TP .B Distortion = b\(aqDstr\(aq .UNINDENT .INDENT 7.0 .TP .B Distribution = b\(aqDstr\(aq .UNINDENT .INDENT 7.0 .TP .B Dither = b\(aqDthr\(aq .UNINDENT .INDENT 7.0 .TP .B DitherAmount = b\(aqDthA\(aq .UNINDENT .INDENT 7.0 .TP .B DitherPreserve = b\(aqDthp\(aq .UNINDENT .INDENT 7.0 .TP .B DitherQuality = b\(aqDthq\(aq .UNINDENT .INDENT 7.0 .TP .B DocumentID = b\(aqDocI\(aq .UNINDENT .INDENT 7.0 .TP .B DotGain = b\(aqDtGn\(aq .UNINDENT .INDENT 7.0 .TP .B DotGainCurves = b\(aqDtGC\(aq .UNINDENT .INDENT 7.0 .TP .B DropShadow = b\(aqDrSh\(aq .UNINDENT .INDENT 7.0 .TP .B Duplicate = b\(aqDplc\(aq .UNINDENT .INDENT 7.0 .TP .B DynamicColorSliders = b\(aqDnmC\(aq .UNINDENT .INDENT 7.0 .TP .B Edge = b\(aqEdg \(aq .UNINDENT .INDENT 7.0 .TP .B EdgeBrightness = b\(aqEdgB\(aq .UNINDENT .INDENT 7.0 .TP .B EdgeFidelity = b\(aqEdgF\(aq .UNINDENT .INDENT 7.0 .TP .B EdgeIntensity = b\(aqEdgI\(aq .UNINDENT .INDENT 7.0 .TP .B EdgeSimplicity = b\(aqEdgS\(aq .UNINDENT .INDENT 7.0 .TP .B EdgeThickness = b\(aqEdgT\(aq .UNINDENT .INDENT 7.0 .TP .B EdgeWidth = b\(aqEdgW\(aq .UNINDENT .INDENT 7.0 .TP .B Effect = b\(aqEffc\(aq .UNINDENT .INDENT 7.0 .TP .B EmbedCMYK = b\(aqEmbC\(aq .UNINDENT .INDENT 7.0 .TP .B EmbedGray = b\(aqEmbG\(aq .UNINDENT .INDENT 7.0 .TP .B EmbedLab = b\(aqEmbL\(aq .UNINDENT .INDENT 7.0 .TP .B EmbedProfiles = b\(aqEmbP\(aq .UNINDENT .INDENT 7.0 .TP .B EmbedRGB = b\(aqEmbR\(aq .UNINDENT .INDENT 7.0 .TP .B EmulsionDown = b\(aqEmlD\(aq .UNINDENT .INDENT 7.0 .TP .B EnableGestures = b\(aqEGst\(aq .UNINDENT .INDENT 7.0 .TP .B Enabled = b\(aqenab\(aq .UNINDENT .INDENT 7.0 .TP .B Encoding = b\(aqEncd\(aq .UNINDENT .INDENT 7.0 .TP .B End = b\(aqEnd \(aq .UNINDENT .INDENT 7.0 .TP .B EndArrowhead = b\(aqEndA\(aq .UNINDENT .INDENT 7.0 .TP .B EndRamp = b\(aqEndR\(aq .UNINDENT .INDENT 7.0 .TP .B EndSustain = b\(aqEndS\(aq .UNINDENT .INDENT 7.0 .TP .B Engine = b\(aqEngn\(aq .UNINDENT .INDENT 7.0 .TP .B EraseToHistory = b\(aqErsT\(aq .UNINDENT .INDENT 7.0 .TP .B EraserKind = b\(aqErsK\(aq .UNINDENT .INDENT 7.0 .TP .B ExactPoints = b\(aqExcP\(aq .UNINDENT .INDENT 7.0 .TP .B Export = b\(aqExpr\(aq .UNINDENT .INDENT 7.0 .TP .B ExportClipboard = b\(aqExpC\(aq .UNINDENT .INDENT 7.0 .TP .B Exposure = b\(aqExps\(aq .UNINDENT .INDENT 7.0 .TP .B Extend = b\(aqExtd\(aq .UNINDENT .INDENT 7.0 .TP .B ExtendedQuality = b\(aqEQlt\(aq .UNINDENT .INDENT 7.0 .TP .B Extension = b\(aqExtn\(aq .UNINDENT .INDENT 7.0 .TP .B ExtensionsQuery = b\(aqExtQ\(aq .UNINDENT .INDENT 7.0 .TP .B ExtrudeDepth = b\(aqExtD\(aq .UNINDENT .INDENT 7.0 .TP .B ExtrudeMaskIncomplete = b\(aqExtM\(aq .UNINDENT .INDENT 7.0 .TP .B ExtrudeRandom = b\(aqExtR\(aq .UNINDENT .INDENT 7.0 .TP .B ExtrudeSize = b\(aqExtS\(aq .UNINDENT .INDENT 7.0 .TP .B ExtrudeSolidFace = b\(aqExtF\(aq .UNINDENT .INDENT 7.0 .TP .B ExtrudeType = b\(aqExtT\(aq .UNINDENT .INDENT 7.0 .TP .B EyeDropperSample = b\(aqEyDr\(aq .UNINDENT .INDENT 7.0 .TP .B FPXCompress = b\(aqFxCm\(aq .UNINDENT .INDENT 7.0 .TP .B FPXQuality = b\(aqFxQl\(aq .UNINDENT .INDENT 7.0 .TP .B FPXSize = b\(aqFxSz\(aq .UNINDENT .INDENT 7.0 .TP .B FPXView = b\(aqFxVw\(aq .UNINDENT .INDENT 7.0 .TP .B FadeTo = b\(aqFdT \(aq .UNINDENT .INDENT 7.0 .TP .B FadeoutSteps = b\(aqFdtS\(aq .UNINDENT .INDENT 7.0 .TP .B Falloff = b\(aqFlOf\(aq .UNINDENT .INDENT 7.0 .TP .B Feather = b\(aqFthr\(aq .UNINDENT .INDENT 7.0 .TP .B FiberLength = b\(aqFbrL\(aq .UNINDENT .INDENT 7.0 .TP .B File = b\(aqFile\(aq .UNINDENT .INDENT 7.0 .TP .B FileCreator = b\(aqFlCr\(aq .UNINDENT .INDENT 7.0 .TP .B FileInfo = b\(aqFlIn\(aq .UNINDENT .INDENT 7.0 .TP .B FileReference = b\(aqFilR\(aq .UNINDENT .INDENT 7.0 .TP .B FileSavePrefs = b\(aqFlSP\(aq .UNINDENT .INDENT 7.0 .TP .B FileType = b\(aqFlTy\(aq .UNINDENT .INDENT 7.0 .TP .B FilesList = b\(aqflst\(aq .UNINDENT .INDENT 7.0 .TP .B Fill = b\(aqFl \(aq .UNINDENT .INDENT 7.0 .TP .B FillColor = b\(aqFlCl\(aq .UNINDENT .INDENT 7.0 .TP .B FillNeutral = b\(aqFlNt\(aq .UNINDENT .INDENT 7.0 .TP .B FilterLayerPersistentData = b\(aqFlPd\(aq .UNINDENT .INDENT 7.0 .TP .B FilterLayerRandomSeed = b\(aqFlRs\(aq .UNINDENT .INDENT 7.0 .TP .B Fingerpainting = b\(aqFngr\(aq .UNINDENT .INDENT 7.0 .TP .B FlareCenter = b\(aqFlrC\(aq .UNINDENT .INDENT 7.0 .TP .B Flatness = b\(aqFltn\(aq .UNINDENT .INDENT 7.0 .TP .B Flatten = b\(aqFltt\(aq .UNINDENT .INDENT 7.0 .TP .B FlipVertical = b\(aqFlpV\(aq .UNINDENT .INDENT 7.0 .TP .B Focus = b\(aqFcs \(aq .UNINDENT .INDENT 7.0 .TP .B Folders = b\(aqFldr\(aq .UNINDENT .INDENT 7.0 .TP .B FontDesignAxes = b\(aqFntD\(aq .UNINDENT .INDENT 7.0 .TP .B FontDesignAxesVectors = b\(aqFntV\(aq .UNINDENT .INDENT 7.0 .TP .B FontName = b\(aqFntN\(aq .UNINDENT .INDENT 7.0 .TP .B FontScript = b\(aqScrp\(aq .UNINDENT .INDENT 7.0 .TP .B FontStyleName = b\(aqFntS\(aq .UNINDENT .INDENT 7.0 .TP .B FontTechnology = b\(aqFntT\(aq .UNINDENT .INDENT 7.0 .TP .B ForcedColors = b\(aqFrcC\(aq .UNINDENT .INDENT 7.0 .TP .B ForegroundColor = b\(aqFrgC\(aq .UNINDENT .INDENT 7.0 .TP .B ForegroundLevel = b\(aqFrgL\(aq .UNINDENT .INDENT 7.0 .TP .B Format = b\(aqFmt \(aq .UNINDENT .INDENT 7.0 .TP .B Forward = b\(aqFwd \(aq .UNINDENT .INDENT 7.0 .TP .B FrameFX = b\(aqFrFX\(aq .UNINDENT .INDENT 7.0 .TP .B FrameWidth = b\(aqFrmW\(aq .UNINDENT .INDENT 7.0 .TP .B FreeTransformCenterState = b\(aqFTcs\(aq .UNINDENT .INDENT 7.0 .TP .B Frequency = b\(aqFrqn\(aq .UNINDENT .INDENT 7.0 .TP .B From = b\(aqFrom\(aq .UNINDENT .INDENT 7.0 .TP .B FromBuiltin = b\(aqFrmB\(aq .UNINDENT .INDENT 7.0 .TP .B FromMode = b\(aqFrmM\(aq .UNINDENT .INDENT 7.0 .TP .B FunctionKey = b\(aqFncK\(aq .UNINDENT .INDENT 7.0 .TP .B Fuzziness = b\(aqFzns\(aq .UNINDENT .INDENT 7.0 .TP .B GCR = b\(aqGCR \(aq .UNINDENT .INDENT 7.0 .TP .B GIFColorFileType = b\(aqGFPT\(aq .UNINDENT .INDENT 7.0 .TP .B GIFColorLimit = b\(aqGFCL\(aq .UNINDENT .INDENT 7.0 .TP .B GIFExportCaption = b\(aqGFEC\(aq .UNINDENT .INDENT 7.0 .TP .B GIFMaskChannelIndex = b\(aqGFMI\(aq .UNINDENT .INDENT 7.0 .TP .B GIFMaskChannelInverted = b\(aqGFMV\(aq .UNINDENT .INDENT 7.0 .TP .B GIFPaletteFile = b\(aqGFPF\(aq .UNINDENT .INDENT 7.0 .TP .B GIFPaletteType = b\(aqGFPL\(aq .UNINDENT .INDENT 7.0 .TP .B GIFRequiredColorSpaceType = b\(aqGFCS\(aq .UNINDENT .INDENT 7.0 .TP .B GIFRowOrderType = b\(aqGFIT\(aq .UNINDENT .INDENT 7.0 .TP .B GIFTransparentColor = b\(aqGFTC\(aq .UNINDENT .INDENT 7.0 .TP .B GIFTransparentIndexBlue = b\(aqGFTB\(aq .UNINDENT .INDENT 7.0 .TP .B GIFTransparentIndexGreen = b\(aqGFTG\(aq .UNINDENT .INDENT 7.0 .TP .B GIFTransparentIndexRed = b\(aqGFTR\(aq .UNINDENT .INDENT 7.0 .TP .B GIFUseBestMatch = b\(aqGFBM\(aq .UNINDENT .INDENT 7.0 .TP .B Gamma = b\(aqGmm \(aq .UNINDENT .INDENT 7.0 .TP .B GamutWarning = b\(aqGmtW\(aq .UNINDENT .INDENT 7.0 .TP .B GeneralPrefs = b\(aqGnrP\(aq .UNINDENT .INDENT 7.0 .TP .B GlobalAngle = b\(aqgblA\(aq .UNINDENT .INDENT 7.0 .TP .B GlobalLightingAngle = b\(aqgagl\(aq .UNINDENT .INDENT 7.0 .TP .B Gloss = b\(aqGlos\(aq .UNINDENT .INDENT 7.0 .TP .B GlowAmount = b\(aqGlwA\(aq .UNINDENT .INDENT 7.0 .TP .B GlowTechnique = b\(aqGlwT\(aq .UNINDENT .INDENT 7.0 .TP .B Gradient = b\(aqGrad\(aq .UNINDENT .INDENT 7.0 .TP .B GradientFill = b\(aqGrdf\(aq .UNINDENT .INDENT 7.0 .TP .B Grain = b\(aqGrn \(aq .UNINDENT .INDENT 7.0 .TP .B GrainType = b\(aqGrnt\(aq .UNINDENT .INDENT 7.0 .TP .B Graininess = b\(aqGrns\(aq .UNINDENT .INDENT 7.0 .TP .B Gray = b\(aqGry \(aq .UNINDENT .INDENT 7.0 .TP .B GrayBehavior = b\(aqGrBh\(aq .UNINDENT .INDENT 7.0 .TP .B GraySetup = b\(aqGrSt\(aq .UNINDENT .INDENT 7.0 .TP .B Green = b\(aqGrn \(aq .UNINDENT .INDENT 7.0 .TP .B GreenBlackPoint = b\(aqGrnB\(aq .UNINDENT .INDENT 7.0 .TP .B GreenFloat = b\(aqgreenFloat\(aq .UNINDENT .INDENT 7.0 .TP .B GreenGamma = b\(aqGrnG\(aq .UNINDENT .INDENT 7.0 .TP .B GreenWhitePoint = b\(aqGrnW\(aq .UNINDENT .INDENT 7.0 .TP .B GreenX = b\(aqGrnX\(aq .UNINDENT .INDENT 7.0 .TP .B GreenY = b\(aqGrnY\(aq .UNINDENT .INDENT 7.0 .TP .B GridColor = b\(aqGrdC\(aq .UNINDENT .INDENT 7.0 .TP .B GridCustomColor = b\(aqGrds\(aq .UNINDENT .INDENT 7.0 .TP .B GridMajor = b\(aqGrdM\(aq .UNINDENT .INDENT 7.0 .TP .B GridMinor = b\(aqGrdn\(aq .UNINDENT .INDENT 7.0 .TP .B GridStyle = b\(aqGrdS\(aq .UNINDENT .INDENT 7.0 .TP .B GridUnits = b\(aqGrdt\(aq .UNINDENT .INDENT 7.0 .TP .B Group = b\(aqGrup\(aq .UNINDENT .INDENT 7.0 .TP .B GroutWidth = b\(aqGrtW\(aq .UNINDENT .INDENT 7.0 .TP .B GrowSelection = b\(aqGrwS\(aq .UNINDENT .INDENT 7.0 .TP .B Guides = b\(aqGdes\(aq .UNINDENT .INDENT 7.0 .TP .B GuidesColor = b\(aqGdsC\(aq .UNINDENT .INDENT 7.0 .TP .B GuidesCustomColor = b\(aqGdss\(aq .UNINDENT .INDENT 7.0 .TP .B GuidesPrefs = b\(aqGdPr\(aq .UNINDENT .INDENT 7.0 .TP .B GuidesStyle = b\(aqGdsS\(aq .UNINDENT .INDENT 7.0 .TP .B GutterWidth = b\(aqGttW\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneFile = b\(aqHlfF\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneScreen = b\(aqHlfS\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneSize = b\(aqHlSz\(aq .UNINDENT .INDENT 7.0 .TP .B HalftoneSpec = b\(aqHlfp\(aq .UNINDENT .INDENT 7.0 .TP .B Hardness = b\(aqHrdn\(aq .UNINDENT .INDENT 7.0 .TP .B HasCmdHPreference = b\(aqHCdH\(aq .UNINDENT .INDENT 7.0 .TP .B Header = b\(aqHdr \(aq .UNINDENT .INDENT 7.0 .TP .B Headline = b\(aqHdln\(aq .UNINDENT .INDENT 7.0 .TP .B Height = b\(aqHght\(aq .UNINDENT .INDENT 7.0 .TP .B HighlightArea = b\(aqHghA\(aq .UNINDENT .INDENT 7.0 .TP .B HighlightColor = b\(aqhglC\(aq .UNINDENT .INDENT 7.0 .TP .B HighlightLevels = b\(aqHghL\(aq .UNINDENT .INDENT 7.0 .TP .B HighlightMode = b\(aqhglM\(aq .UNINDENT .INDENT 7.0 .TP .B HighlightOpacity = b\(aqhglO\(aq .UNINDENT .INDENT 7.0 .TP .B HighlightStrength = b\(aqHghS\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryBrushSource = b\(aqHstB\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryPrefs = b\(aqHstP\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryStateSource = b\(aqHsSS\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryStates = b\(aqHsSt\(aq .UNINDENT .INDENT 7.0 .TP .B Horizontal = b\(aqHrzn\(aq .UNINDENT .INDENT 7.0 .TP .B HorizontalScale = b\(aqHrzS\(aq .UNINDENT .INDENT 7.0 .TP .B HostName = b\(aqHstN\(aq .UNINDENT .INDENT 7.0 .TP .B HostVersion = b\(aqHstV\(aq .UNINDENT .INDENT 7.0 .TP .B Hue = b\(aqH \(aq .UNINDENT .INDENT 7.0 .TP .B ICCEngine = b\(aqICCE\(aq .UNINDENT .INDENT 7.0 .TP .B ICCSetupName = b\(aqICCt\(aq .UNINDENT .INDENT 7.0 .TP .B ID = b\(aqIdnt\(aq .UNINDENT .INDENT 7.0 .TP .B Idle = b\(aqIdle\(aq .UNINDENT .INDENT 7.0 .TP .B ImageBalance = b\(aqImgB\(aq .UNINDENT .INDENT 7.0 .TP .B Import = b\(aqImpr\(aq .UNINDENT .INDENT 7.0 .TP .B Impressionist = b\(aqImps\(aq .UNINDENT .INDENT 7.0 .TP .B In = b\(aqIn \(aq .UNINDENT .INDENT 7.0 .TP .B Inherits = b\(aqc@#^\(aq .UNINDENT .INDENT 7.0 .TP .B InkColors = b\(aqInkC\(aq .UNINDENT .INDENT 7.0 .TP .B Inks = b\(aqInks\(aq .UNINDENT .INDENT 7.0 .TP .B InnerGlow = b\(aqIrGl\(aq .UNINDENT .INDENT 7.0 .TP .B InnerGlowSource = b\(aqglwS\(aq .UNINDENT .INDENT 7.0 .TP .B InnerShadow = b\(aqIrSh\(aq .UNINDENT .INDENT 7.0 .TP .B Input = b\(aqInpt\(aq .UNINDENT .INDENT 7.0 .TP .B InputBlackPoint = b\(aqkIBP\(aq .UNINDENT .INDENT 7.0 .TP .B InputMapRange = b\(aqInmr\(aq .UNINDENT .INDENT 7.0 .TP .B InputRange = b\(aqInpr\(aq .UNINDENT .INDENT 7.0 .TP .B InputWhitePoint = b\(aqkIWP\(aq .UNINDENT .INDENT 7.0 .TP .B Intensity = b\(aqIntn\(aq .UNINDENT .INDENT 7.0 .TP .B Intent = b\(aqInte\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceBevelHighlight = b\(aqIntH\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceBevelShadow = b\(aqIntv\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceBlack = b\(aqIntB\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceBorder = b\(aqIntd\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceButtonDarkShadow = b\(aqIntk\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceButtonDownFill = b\(aqIntt\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceButtonUpFill = b\(aqInBF\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceColorBlue2 = b\(aqICBL\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceColorBlue32 = b\(aqICBH\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceColorGreen2 = b\(aqICGL\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceColorGreen32 = b\(aqICGH\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceColorRed2 = b\(aqICRL\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceColorRed32 = b\(aqICRH\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceIconFillActive = b\(aqIntI\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceIconFillDimmed = b\(aqIntF\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceIconFillSelected = b\(aqIntc\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceIconFrameActive = b\(aqIntm\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceIconFrameDimmed = b\(aqIntr\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceIconFrameSelected = b\(aqIntS\(aq .UNINDENT .INDENT 7.0 .TP .B InterfacePaletteFill = b\(aqIntP\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceRed = b\(aqIntR\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceToolTipBackground = b\(aqIntT\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceToolTipText = b\(aqITTT\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceTransparencyBackground = b\(aqITBg\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceTransparencyForeground = b\(aqITFg\(aq .UNINDENT .INDENT 7.0 .TP .B InterfaceWhite = b\(aqIntW\(aq .UNINDENT .INDENT 7.0 .TP .B Interlace = b\(aqIntr\(aq .UNINDENT .INDENT 7.0 .TP .B InterlaceCreateType = b\(aqIntC\(aq .UNINDENT .INDENT 7.0 .TP .B InterlaceEliminateType = b\(aqIntE\(aq .UNINDENT .INDENT 7.0 .TP .B Interpolation = b\(aqIntr\(aq .UNINDENT .INDENT 7.0 .TP .B InterpolationMethod = b\(aqIntM\(aq .UNINDENT .INDENT 7.0 .TP .B Invert = b\(aqInvr\(aq .UNINDENT .INDENT 7.0 .TP .B InvertMask = b\(aqInvM\(aq .UNINDENT .INDENT 7.0 .TP .B InvertSource2 = b\(aqInvS\(aq .UNINDENT .INDENT 7.0 .TP .B InvertTexture = b\(aqInvT\(aq .UNINDENT .INDENT 7.0 .TP .B IsDirty = b\(aqIsDr\(aq .UNINDENT .INDENT 7.0 .TP .B ItemIndex = b\(aqItmI\(aq .UNINDENT .INDENT 7.0 .TP .B JPEGQuality = b\(aqJPEQ\(aq .UNINDENT .INDENT 7.0 .TP .B Kerning = b\(aqKrng\(aq .UNINDENT .INDENT 7.0 .TP .B Keywords = b\(aqKywd\(aq .UNINDENT .INDENT 7.0 .TP .B Kind = b\(aqKnd \(aq .UNINDENT .INDENT 7.0 .TP .B LUTAnimation = b\(aqLTnm\(aq .UNINDENT .INDENT 7.0 .TP .B LZWCompression = b\(aqLZWC\(aq .UNINDENT .INDENT 7.0 .TP .B Labels = b\(aqLbls\(aq .UNINDENT .INDENT 7.0 .TP .B Landscape = b\(aqLnds\(aq .UNINDENT .INDENT 7.0 .TP .B LastTransform = b\(aqLstT\(aq .UNINDENT .INDENT 7.0 .TP .B Layer = b\(aqLyr \(aq .UNINDENT .INDENT 7.0 .TP .B LayerEffects = b\(aqLefx\(aq .UNINDENT .INDENT 7.0 .TP .B LayerFXVisible = b\(aqlfxv\(aq .UNINDENT .INDENT 7.0 .TP .B LayerID = b\(aqLyrI\(aq .UNINDENT .INDENT 7.0 .TP .B LayerName = b\(aqLyrN\(aq .UNINDENT .INDENT 7.0 .TP .B Layers = b\(aqLyrs\(aq .UNINDENT .INDENT 7.0 .TP .B Leading = b\(aqLdng\(aq .UNINDENT .INDENT 7.0 .TP .B Left = b\(aqLeft\(aq .UNINDENT .INDENT 7.0 .TP .B LegacySerialString = b\(aqlSNs\(aq .UNINDENT .INDENT 7.0 .TP .B Length = b\(aqLngt\(aq .UNINDENT .INDENT 7.0 .TP .B Lens = b\(aqLns \(aq .UNINDENT .INDENT 7.0 .TP .B Level = b\(aqLvl \(aq .UNINDENT .INDENT 7.0 .TP .B Levels = b\(aqLvls\(aq .UNINDENT .INDENT 7.0 .TP .B LightDark = b\(aqLgDr\(aq .UNINDENT .INDENT 7.0 .TP .B LightDirection = b\(aqLghD\(aq .UNINDENT .INDENT 7.0 .TP .B LightIntensity = b\(aqLghI\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosition = b\(aqLghP\(aq .UNINDENT .INDENT 7.0 .TP .B LightSource = b\(aqLghS\(aq .UNINDENT .INDENT 7.0 .TP .B LightType = b\(aqLghT\(aq .UNINDENT .INDENT 7.0 .TP .B LightenGrout = b\(aqLghG\(aq .UNINDENT .INDENT 7.0 .TP .B Lightness = b\(aqLght\(aq .UNINDENT .INDENT 7.0 .TP .B Line = b\(aqLine\(aq .UNINDENT .INDENT 7.0 .TP .B LinkEnable = b\(aqlnkE\(aq .UNINDENT .INDENT 7.0 .TP .B LinkedLayerIDs = b\(aqLnkL\(aq .UNINDENT .INDENT 7.0 .TP .B LocalLightingAltitude = b\(aqLald\(aq .UNINDENT .INDENT 7.0 .TP .B LocalLightingAngle = b\(aqlagl\(aq .UNINDENT .INDENT 7.0 .TP .B LocalRange = b\(aqLclR\(aq .UNINDENT .INDENT 7.0 .TP .B Location = b\(aqLctn\(aq .UNINDENT .INDENT 7.0 .TP .B Log = b\(aqLog \(aq .UNINDENT .INDENT 7.0 .TP .B Logarithmic = b\(aqkLog\(aq .UNINDENT .INDENT 7.0 .TP .B LowerCase = b\(aqLwCs\(aq .UNINDENT .INDENT 7.0 .TP .B Luminance = b\(aqLmnc\(aq .UNINDENT .INDENT 7.0 .TP .B Magenta = b\(aqMgnt\(aq .UNINDENT .INDENT 7.0 .TP .B MakeVisible = b\(aqMkVs\(aq .UNINDENT .INDENT 7.0 .TP .B ManipulationFOV = b\(aqMfov\(aq .UNINDENT .INDENT 7.0 .TP .B MapBlack = b\(aqMpBl\(aq .UNINDENT .INDENT 7.0 .TP .B Mapping = b\(aqMpng\(aq .UNINDENT .INDENT 7.0 .TP .B MappingShape = b\(aqMpgS\(aq .UNINDENT .INDENT 7.0 .TP .B Material = b\(aqMtrl\(aq .UNINDENT .INDENT 7.0 .TP .B Matrix = b\(aqMtrx\(aq .UNINDENT .INDENT 7.0 .TP .B MatteColor = b\(aqMttC\(aq .UNINDENT .INDENT 7.0 .TP .B Maximum = b\(aqMxm \(aq .UNINDENT .INDENT 7.0 .TP .B MaximumStates = b\(aqMxmS\(aq .UNINDENT .INDENT 7.0 .TP .B MemoryUsagePercent = b\(aqMmrU\(aq .UNINDENT .INDENT 7.0 .TP .B Merge = b\(aqMrge\(aq .UNINDENT .INDENT 7.0 .TP .B Merged = b\(aqMrgd\(aq .UNINDENT .INDENT 7.0 .TP .B Message = b\(aqMsge\(aq .UNINDENT .INDENT 7.0 .TP .B Method = b\(aqMthd\(aq .UNINDENT .INDENT 7.0 .TP .B MezzotintType = b\(aqMztT\(aq .UNINDENT .INDENT 7.0 .TP .B Midpoint = b\(aqMdpn\(aq .UNINDENT .INDENT 7.0 .TP .B MidtoneLevels = b\(aqMdtL\(aq .UNINDENT .INDENT 7.0 .TP .B Minimum = b\(aqMnm \(aq .UNINDENT .INDENT 7.0 .TP .B MismatchCMYK = b\(aqMsmC\(aq .UNINDENT .INDENT 7.0 .TP .B MismatchGray = b\(aqMsmG\(aq .UNINDENT .INDENT 7.0 .TP .B MismatchRGB = b\(aqMsmR\(aq .UNINDENT .INDENT 7.0 .TP .B Mode = b\(aqMd \(aq .UNINDENT .INDENT 7.0 .TP .B Monochromatic = b\(aqMnch\(aq .UNINDENT .INDENT 7.0 .TP .B MoveTo = b\(aqMvT \(aq .UNINDENT .INDENT 7.0 .TP .B Name = b\(aqNm \(aq .UNINDENT .INDENT 7.0 .TP .B Negative = b\(aqNgtv\(aq .UNINDENT .INDENT 7.0 .TP .B New = b\(aqNw \(aq .UNINDENT .INDENT 7.0 .TP .B Noise = b\(aqNose\(aq .UNINDENT .INDENT 7.0 .TP .B NonImageData = b\(aqNnIm\(aq .UNINDENT .INDENT 7.0 .TP .B NonLinear = b\(aqNnLn\(aq .UNINDENT .INDENT 7.0 .TP .B Null = b\(aqnull\(aq .UNINDENT .INDENT 7.0 .TP .B NumLights = b\(aqNm L\(aq .UNINDENT .INDENT 7.0 .TP .B Number = b\(aqNmbr\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfCacheLevels = b\(aqNCch\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfCacheLevels64 = b\(aqNC64\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfChannels = b\(aqNmbO\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfChildren = b\(aqNmbC\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfDocuments = b\(aqNmbD\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfGenerators = b\(aqNmbG\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfLayers = b\(aqNmbL\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfLevels = b\(aqNmbL\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfPaths = b\(aqNmbP\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfRipples = b\(aqNmbR\(aq .UNINDENT .INDENT 7.0 .TP .B NumberOfSiblings = b\(aqNmbS\(aq .UNINDENT .INDENT 7.0 .TP .B ObjectName = b\(aqObjN\(aq .UNINDENT .INDENT 7.0 .TP .B Offset = b\(aqOfst\(aq .UNINDENT .INDENT 7.0 .TP .B OldSmallFontType = b\(aqSftt\(aq .UNINDENT .INDENT 7.0 .TP .B On = b\(aqOn \(aq .UNINDENT .INDENT 7.0 .TP .B Opacity = b\(aqOpct\(aq .UNINDENT .INDENT 7.0 .TP .B Optimized = b\(aqOptm\(aq .UNINDENT .INDENT 7.0 .TP .B Orientation = b\(aqOrnt\(aq .UNINDENT .INDENT 7.0 .TP .B OriginalHeader = b\(aqOrgH\(aq .UNINDENT .INDENT 7.0 .TP .B OriginalTransmissionReference = b\(aqOrgT\(aq .UNINDENT .INDENT 7.0 .TP .B OtherCursors = b\(aqOthC\(aq .UNINDENT .INDENT 7.0 .TP .B OuterGlow = b\(aqOrGl\(aq .UNINDENT .INDENT 7.0 .TP .B Output = b\(aqOtpt\(aq .UNINDENT .INDENT 7.0 .TP .B OutputBlackPoint = b\(aqkOBP\(aq .UNINDENT .INDENT 7.0 .TP .B OutputWhitePoint = b\(aqkOWP\(aq .UNINDENT .INDENT 7.0 .TP .B OverprintColors = b\(aqOvrC\(aq .UNINDENT .INDENT 7.0 .TP .B OverrideOpen = b\(aqOvrO\(aq .UNINDENT .INDENT 7.0 .TP .B OverridePrinter = b\(aqObrP\(aq .UNINDENT .INDENT 7.0 .TP .B OverrideSave = b\(aqOvrd\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFilter = b\(aqPNGf\(aq .UNINDENT .INDENT 7.0 .TP .B PNGInterlaceType = b\(aqPGIT\(aq .UNINDENT .INDENT 7.0 .TP .B PageFormat = b\(aqPMpf\(aq .UNINDENT .INDENT 7.0 .TP .B PageNumber = b\(aqPgNm\(aq .UNINDENT .INDENT 7.0 .TP .B PagePosition = b\(aqPgPs\(aq .UNINDENT .INDENT 7.0 .TP .B PageSetup = b\(aqPgSt\(aq .UNINDENT .INDENT 7.0 .TP .B PaintCursorKind = b\(aqPnCK\(aq .UNINDENT .INDENT 7.0 .TP .B PaintType = b\(aqPntT\(aq .UNINDENT .INDENT 7.0 .TP .B PaintingCursors = b\(aqPntC\(aq .UNINDENT .INDENT 7.0 .TP .B Palette = b\(aqPlt \(aq .UNINDENT .INDENT 7.0 .TP .B PaletteFile = b\(aqPltF\(aq .UNINDENT .INDENT 7.0 .TP .B PaperBrightness = b\(aqPprB\(aq .UNINDENT .INDENT 7.0 .TP .B ParentIndex = b\(aqPrIn\(aq .UNINDENT .INDENT 7.0 .TP .B ParentName = b\(aqPrNm\(aq .UNINDENT .INDENT 7.0 .TP .B Path = b\(aqPath\(aq .UNINDENT .INDENT 7.0 .TP .B PathContents = b\(aqPthC\(aq .UNINDENT .INDENT 7.0 .TP .B PathName = b\(aqPthN\(aq .UNINDENT .INDENT 7.0 .TP .B Pattern = b\(aqPttn\(aq .UNINDENT .INDENT 7.0 .TP .B PencilWidth = b\(aqPncl\(aq .UNINDENT .INDENT 7.0 .TP .B PerspectiveIndex = b\(aqPrsp\(aq .UNINDENT .INDENT 7.0 .TP .B Phosphors = b\(aqPhsp\(aq .UNINDENT .INDENT 7.0 .TP .B PickerID = b\(aqPckI\(aq .UNINDENT .INDENT 7.0 .TP .B PickerKind = b\(aqPckr\(aq .UNINDENT .INDENT 7.0 .TP .B PixelPaintSize = b\(aqPPSz\(aq .UNINDENT .INDENT 7.0 .TP .B Platform = b\(aqPltf\(aq .UNINDENT .INDENT 7.0 .TP .B PluginFolder = b\(aqPlgF\(aq .UNINDENT .INDENT 7.0 .TP .B PluginPrefs = b\(aqPlgP\(aq .UNINDENT .INDENT 7.0 .TP .B Points = b\(aqPts \(aq .UNINDENT .INDENT 7.0 .TP .B Position = b\(aqPstn\(aq .UNINDENT .INDENT 7.0 .TP .B PostScriptColor = b\(aqPstS\(aq .UNINDENT .INDENT 7.0 .TP .B Posterization = b\(aqPstr\(aq .UNINDENT .INDENT 7.0 .TP .B PredefinedColors = b\(aqPrdC\(aq .UNINDENT .INDENT 7.0 .TP .B PreferBuiltin = b\(aqPrfB\(aq .UNINDENT .INDENT 7.0 .TP .B Preferences = b\(aqPrfr\(aq .UNINDENT .INDENT 7.0 .TP .B PreserveAdditional = b\(aqPrsA\(aq .UNINDENT .INDENT 7.0 .TP .B PreserveLuminosity = b\(aqPrsL\(aq .UNINDENT .INDENT 7.0 .TP .B PreserveTransparency = b\(aqPrsT\(aq .UNINDENT .INDENT 7.0 .TP .B Pressure = b\(aqPrs \(aq .UNINDENT .INDENT 7.0 .TP .B Preview = b\(aqPrvw\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewCMYK = b\(aqPrvK\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewFullSize = b\(aqPrvF\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewIcon = b\(aqPrvI\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewMacThumbnail = b\(aqPrvM\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewWinThumbnail = b\(aqPrvW\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewsQuery = b\(aqPrvQ\(aq .UNINDENT .INDENT 7.0 .TP .B PrintSettings = b\(aqPMps\(aq .UNINDENT .INDENT 7.0 .TP .B ProfileSetup = b\(aqPrfS\(aq .UNINDENT .INDENT 7.0 .TP .B ProvinceState = b\(aqPrvS\(aq .UNINDENT .INDENT 7.0 .TP .B Quality = b\(aqQlty\(aq .UNINDENT .INDENT 7.0 .TP .B QuickMask = b\(aqQucM\(aq .UNINDENT .INDENT 7.0 .TP .B RGBSetup = b\(aqRGBS\(aq .UNINDENT .INDENT 7.0 .TP .B Radius = b\(aqRds \(aq .UNINDENT .INDENT 7.0 .TP .B RandomSeed = b\(aqRndS\(aq .UNINDENT .INDENT 7.0 .TP .B Ratio = b\(aqRt \(aq .UNINDENT .INDENT 7.0 .TP .B RecentFiles = b\(aqRcnf\(aq .UNINDENT .INDENT 7.0 .TP .B Red = b\(aqRd \(aq .UNINDENT .INDENT 7.0 .TP .B RedBlackPoint = b\(aqRdBl\(aq .UNINDENT .INDENT 7.0 .TP .B RedFloat = b\(aqredFloat\(aq .UNINDENT .INDENT 7.0 .TP .B RedGamma = b\(aqRdGm\(aq .UNINDENT .INDENT 7.0 .TP .B RedWhitePoint = b\(aqRdWh\(aq .UNINDENT .INDENT 7.0 .TP .B RedX = b\(aqRdX \(aq .UNINDENT .INDENT 7.0 .TP .B RedY = b\(aqRdY \(aq .UNINDENT .INDENT 7.0 .TP .B RegistrationMarks = b\(aqRgsM\(aq .UNINDENT .INDENT 7.0 .TP .B Relative = b\(aqRltv\(aq .UNINDENT .INDENT 7.0 .TP .B Relief = b\(aqRlf \(aq .UNINDENT .INDENT 7.0 .TP .B RenderFidelity = b\(aqRfid\(aq .UNINDENT .INDENT 7.0 .TP .B Resample = b\(aqRsmp\(aq .UNINDENT .INDENT 7.0 .TP .B ResizeWindowsOnZoom = b\(aqRWOZ\(aq .UNINDENT .INDENT 7.0 .TP .B Resolution = b\(aqRslt\(aq .UNINDENT .INDENT 7.0 .TP .B ResourceID = b\(aqRsrI\(aq .UNINDENT .INDENT 7.0 .TP .B Response = b\(aqRspn\(aq .UNINDENT .INDENT 7.0 .TP .B RetainHeader = b\(aqRtnH\(aq .UNINDENT .INDENT 7.0 .TP .B Reverse = b\(aqRvrs\(aq .UNINDENT .INDENT 7.0 .TP .B Right = b\(aqRght\(aq .UNINDENT .INDENT 7.0 .TP .B RippleMagnitude = b\(aqRplM\(aq .UNINDENT .INDENT 7.0 .TP .B RippleSize = b\(aqRplS\(aq .UNINDENT .INDENT 7.0 .TP .B Rotate = b\(aqRtt \(aq .UNINDENT .INDENT 7.0 .TP .B Roundness = b\(aqRndn\(aq .UNINDENT .INDENT 7.0 .TP .B RulerOriginH = b\(aqRlrH\(aq .UNINDENT .INDENT 7.0 .TP .B RulerOriginV = b\(aqRlrV\(aq .UNINDENT .INDENT 7.0 .TP .B RulerUnits = b\(aqRlrU\(aq .UNINDENT .INDENT 7.0 .TP .B Saturation = b\(aqStrt\(aq .UNINDENT .INDENT 7.0 .TP .B SaveAndClose = b\(aqSvAn\(aq .UNINDENT .INDENT 7.0 .TP .B SaveComposite = b\(aqSvCm\(aq .UNINDENT .INDENT 7.0 .TP .B SavePaletteLocations = b\(aqPltL\(aq .UNINDENT .INDENT 7.0 .TP .B SavePaths = b\(aqSvPt\(aq .UNINDENT .INDENT 7.0 .TP .B SavePyramids = b\(aqSvPy\(aq .UNINDENT .INDENT 7.0 .TP .B Saving = b\(aqSvng\(aq .UNINDENT .INDENT 7.0 .TP .B Scale = b\(aqScl \(aq .UNINDENT .INDENT 7.0 .TP .B ScaleHorizontal = b\(aqSclH\(aq .UNINDENT .INDENT 7.0 .TP .B ScaleVertical = b\(aqSclV\(aq .UNINDENT .INDENT 7.0 .TP .B Scaling = b\(aqScln\(aq .UNINDENT .INDENT 7.0 .TP .B Scans = b\(aqScns\(aq .UNINDENT .INDENT 7.0 .TP .B ScratchDisks = b\(aqScrD\(aq .UNINDENT .INDENT 7.0 .TP .B ScreenFile = b\(aqScrF\(aq .UNINDENT .INDENT 7.0 .TP .B ScreenType = b\(aqScrT\(aq .UNINDENT .INDENT 7.0 .TP .B Separations = b\(aqSprt\(aq .UNINDENT .INDENT 7.0 .TP .B SerialString = b\(aqSrlS\(aq .UNINDENT .INDENT 7.0 .TP .B ShadingIntensity = b\(aqShdI\(aq .UNINDENT .INDENT 7.0 .TP .B ShadingNoise = b\(aqShdN\(aq .UNINDENT .INDENT 7.0 .TP .B ShadingShape = b\(aqShdS\(aq .UNINDENT .INDENT 7.0 .TP .B ShadowColor = b\(aqsdwC\(aq .UNINDENT .INDENT 7.0 .TP .B ShadowIntensity = b\(aqShdI\(aq .UNINDENT .INDENT 7.0 .TP .B ShadowLevels = b\(aqShdL\(aq .UNINDENT .INDENT 7.0 .TP .B ShadowMode = b\(aqsdwM\(aq .UNINDENT .INDENT 7.0 .TP .B ShadowOpacity = b\(aqsdwO\(aq .UNINDENT .INDENT 7.0 .TP .B Shape = b\(aqShp \(aq .UNINDENT .INDENT 7.0 .TP .B Sharpness = b\(aqShrp\(aq .UNINDENT .INDENT 7.0 .TP .B ShearEd = b\(aqShrE\(aq .UNINDENT .INDENT 7.0 .TP .B ShearPoints = b\(aqShrP\(aq .UNINDENT .INDENT 7.0 .TP .B ShearSt = b\(aqShrS\(aq .UNINDENT .INDENT 7.0 .TP .B ShiftKey = b\(aqShfK\(aq .UNINDENT .INDENT 7.0 .TP .B ShiftKeyToolSwitch = b\(aqShKT\(aq .UNINDENT .INDENT 7.0 .TP .B ShortNames = b\(aqShrN\(aq .UNINDENT .INDENT 7.0 .TP .B ShowEnglishFontNames = b\(aqShwE\(aq .UNINDENT .INDENT 7.0 .TP .B ShowMenuColors = b\(aqSwMC\(aq .UNINDENT .INDENT 7.0 .TP .B ShowToolTips = b\(aqShwT\(aq .UNINDENT .INDENT 7.0 .TP .B ShowTransparency = b\(aqShTr\(aq .UNINDENT .INDENT 7.0 .TP .B SizeKey = b\(aqSz \(aq .UNINDENT .INDENT 7.0 .TP .B Skew = b\(aqSkew\(aq .UNINDENT .INDENT 7.0 .TP .B SmallFontType = b\(aqSfts\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurMode = b\(aqSmBM\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurQuality = b\(aqSmBQ\(aq .UNINDENT .INDENT 7.0 .TP .B Smooth = b\(aqSmoo\(aq .UNINDENT .INDENT 7.0 .TP .B Smoothness = b\(aqSmth\(aq .UNINDENT .INDENT 7.0 .TP .B SnapshotInitial = b\(aqSnpI\(aq .UNINDENT .INDENT 7.0 .TP .B SoftClip = b\(aqSfCl\(aq .UNINDENT .INDENT 7.0 .TP .B Softness = b\(aqSftn\(aq .UNINDENT .INDENT 7.0 .TP .B SolidFill = b\(aqSoFi\(aq .UNINDENT .INDENT 7.0 .TP .B Source = b\(aqSrce\(aq .UNINDENT .INDENT 7.0 .TP .B Source2 = b\(aqSrc2\(aq .UNINDENT .INDENT 7.0 .TP .B SourceMode = b\(aqSrcM\(aq .UNINDENT .INDENT 7.0 .TP .B Spacing = b\(aqSpcn\(aq .UNINDENT .INDENT 7.0 .TP .B SpecialInstructions = b\(aqSpcI\(aq .UNINDENT .INDENT 7.0 .TP .B SpherizeMode = b\(aqSphM\(aq .UNINDENT .INDENT 7.0 .TP .B Spot = b\(aqSpot\(aq .UNINDENT .INDENT 7.0 .TP .B SprayRadius = b\(aqSprR\(aq .UNINDENT .INDENT 7.0 .TP .B SquareSize = b\(aqSqrS\(aq .UNINDENT .INDENT 7.0 .TP .B SrcBlackMax = b\(aqSrcl\(aq .UNINDENT .INDENT 7.0 .TP .B SrcBlackMin = b\(aqSrcB\(aq .UNINDENT .INDENT 7.0 .TP .B SrcWhiteMax = b\(aqSrcm\(aq .UNINDENT .INDENT 7.0 .TP .B SrcWhiteMin = b\(aqSrcW\(aq .UNINDENT .INDENT 7.0 .TP .B Start = b\(aqStrt\(aq .UNINDENT .INDENT 7.0 .TP .B StartArrowhead = b\(aqStrA\(aq .UNINDENT .INDENT 7.0 .TP .B State = b\(aqStte\(aq .UNINDENT .INDENT 7.0 .TP .B Strength = b\(aqsrgh\(aq .UNINDENT .INDENT 7.0 .TP .B StrengthRatio = b\(aqsrgR\(aq .UNINDENT .INDENT 7.0 .TP .B Strength_PLUGIN = b\(aqStrg\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeDetail = b\(aqStDt\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeDirection = b\(aqSDir\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeLength = b\(aqStrL\(aq .UNINDENT .INDENT 7.0 .TP .B StrokePressure = b\(aqStrP\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeSize = b\(aqStrS\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeWidth = b\(aqStrW\(aq .UNINDENT .INDENT 7.0 .TP .B Style = b\(aqStyl\(aq .UNINDENT .INDENT 7.0 .TP .B Styles = b\(aqStys\(aq .UNINDENT .INDENT 7.0 .TP .B StylusIsColor = b\(aqStlC\(aq .UNINDENT .INDENT 7.0 .TP .B StylusIsOpacity = b\(aqStlO\(aq .UNINDENT .INDENT 7.0 .TP .B StylusIsPressure = b\(aqStlP\(aq .UNINDENT .INDENT 7.0 .TP .B StylusIsSize = b\(aqStlS\(aq .UNINDENT .INDENT 7.0 .TP .B SubPathList = b\(aqSbpL\(aq .UNINDENT .INDENT 7.0 .TP .B SupplementalCategories = b\(aqSplC\(aq .UNINDENT .INDENT 7.0 .TP .B SystemInfo = b\(aqSstI\(aq .UNINDENT .INDENT 7.0 .TP .B SystemPalette = b\(aqSstP\(aq .UNINDENT .INDENT 7.0 .TP .B Target = b\(aqnull\(aq .UNINDENT .INDENT 7.0 .TP .B TargetPath = b\(aqTrgp\(aq .UNINDENT .INDENT 7.0 .TP .B TargetPathIndex = b\(aqTrgP\(aq .UNINDENT .INDENT 7.0 .TP .B TermLength = b\(aqLngt\(aq .UNINDENT .INDENT 7.0 .TP .B Text = b\(aqTxt \(aq .UNINDENT .INDENT 7.0 .TP .B TextClickPoint = b\(aqTxtC\(aq .UNINDENT .INDENT 7.0 .TP .B TextData = b\(aqTxtD\(aq .UNINDENT .INDENT 7.0 .TP .B TextStyle = b\(aqTxtS\(aq .UNINDENT .INDENT 7.0 .TP .B TextStyleRange = b\(aqTxtt\(aq .UNINDENT .INDENT 7.0 .TP .B Texture = b\(aqTxtr\(aq .UNINDENT .INDENT 7.0 .TP .B TextureCoverage = b\(aqTxtC\(aq .UNINDENT .INDENT 7.0 .TP .B TextureFile = b\(aqTxtF\(aq .UNINDENT .INDENT 7.0 .TP .B TextureType = b\(aqTxtT\(aq .UNINDENT .INDENT 7.0 .TP .B Threshold = b\(aqThsh\(aq .UNINDENT .INDENT 7.0 .TP .B TileNumber = b\(aqTlNm\(aq .UNINDENT .INDENT 7.0 .TP .B TileOffset = b\(aqTlOf\(aq .UNINDENT .INDENT 7.0 .TP .B TileSize = b\(aqTlSz\(aq .UNINDENT .INDENT 7.0 .TP .B Title = b\(aqTtl \(aq .UNINDENT .INDENT 7.0 .TP .B To = b\(aqT \(aq .UNINDENT .INDENT 7.0 .TP .B ToBuiltin = b\(aqTBl \(aq .UNINDENT .INDENT 7.0 .TP .B ToLinked = b\(aqToLk\(aq .UNINDENT .INDENT 7.0 .TP .B ToMode = b\(aqTMd \(aq .UNINDENT .INDENT 7.0 .TP .B ToggleOthers = b\(aqTglO\(aq .UNINDENT .INDENT 7.0 .TP .B Tolerance = b\(aqTlrn\(aq .UNINDENT .INDENT 7.0 .TP .B Top = b\(aqTop \(aq .UNINDENT .INDENT 7.0 .TP .B TotalLimit = b\(aqTtlL\(aq .UNINDENT .INDENT 7.0 .TP .B Tracking = b\(aqTrck\(aq .UNINDENT .INDENT 7.0 .TP .B TransferFunction = b\(aqTrnF\(aq .UNINDENT .INDENT 7.0 .TP .B TransferSpec = b\(aqTrnS\(aq .UNINDENT .INDENT 7.0 .TP .B Transparency = b\(aqTrns\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyGrid = b\(aqTrnG\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyGridColors = b\(aqTrnC\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyGridSize = b\(aqTrnG\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyPrefs = b\(aqTrnP\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyShape = b\(aqTrnS\(aq .UNINDENT .INDENT 7.0 .TP .B TransparentIndex = b\(aqTrnI\(aq .UNINDENT .INDENT 7.0 .TP .B TransparentWhites = b\(aqTrnW\(aq .UNINDENT .INDENT 7.0 .TP .B Twist = b\(aqTwst\(aq .UNINDENT .INDENT 7.0 .TP .B Type = b\(aqType\(aq .UNINDENT .INDENT 7.0 .TP .B UCA = b\(aqUC \(aq .UNINDENT .INDENT 7.0 .TP .B URL = b\(aqURL \(aq .UNINDENT .INDENT 7.0 .TP .B UndefinedArea = b\(aqUndA\(aq .UNINDENT .INDENT 7.0 .TP .B Underline = b\(aqUndl\(aq .UNINDENT .INDENT 7.0 .TP .B UnitsPrefs = b\(aqUntP\(aq .UNINDENT .INDENT 7.0 .TP .B Untitled = b\(aqUntl\(aq .UNINDENT .INDENT 7.0 .TP .B UpperY = b\(aqUppY\(aq .UNINDENT .INDENT 7.0 .TP .B Urgency = b\(aqUrgn\(aq .UNINDENT .INDENT 7.0 .TP .B UseAccurateScreens = b\(aqAcrS\(aq .UNINDENT .INDENT 7.0 .TP .B UseAdditionalPlugins = b\(aqAdPl\(aq .UNINDENT .INDENT 7.0 .TP .B UseCacheForHistograms = b\(aqUsCc\(aq .UNINDENT .INDENT 7.0 .TP .B UseCurves = b\(aqUsCr\(aq .UNINDENT .INDENT 7.0 .TP .B UseDefault = b\(aqUsDf\(aq .UNINDENT .INDENT 7.0 .TP .B UseGlobalAngle = b\(aquglg\(aq .UNINDENT .INDENT 7.0 .TP .B UseICCProfile = b\(aqUsIC\(aq .UNINDENT .INDENT 7.0 .TP .B UseMask = b\(aqUsMs\(aq .UNINDENT .INDENT 7.0 .TP .B UserMaskEnabled = b\(aqUsrM\(aq .UNINDENT .INDENT 7.0 .TP .B UserMaskLinked = b\(aqUsrs\(aq .UNINDENT .INDENT 7.0 .TP .B Using = b\(aqUsng\(aq .UNINDENT .INDENT 7.0 .TP .B Value = b\(aqVl \(aq .UNINDENT .INDENT 7.0 .TP .B Variance = b\(aqVrnc\(aq .UNINDENT .INDENT 7.0 .TP .B Vector0 = b\(aqVct0\(aq .UNINDENT .INDENT 7.0 .TP .B Vector1 = b\(aqVct1\(aq .UNINDENT .INDENT 7.0 .TP .B VectorColor = b\(aqVctC\(aq .UNINDENT .INDENT 7.0 .TP .B VersionFix = b\(aqVrsF\(aq .UNINDENT .INDENT 7.0 .TP .B VersionMajor = b\(aqVrsM\(aq .UNINDENT .INDENT 7.0 .TP .B VersionMinor = b\(aqVrsN\(aq .UNINDENT .INDENT 7.0 .TP .B Vertical = b\(aqVrtc\(aq .UNINDENT .INDENT 7.0 .TP .B VerticalScale = b\(aqVrtS\(aq .UNINDENT .INDENT 7.0 .TP .B VideoAlpha = b\(aqVdlp\(aq .UNINDENT .INDENT 7.0 .TP .B Visible = b\(aqVsbl\(aq .UNINDENT .INDENT 7.0 .TP .B WatchSuspension = b\(aqWtcS\(aq .UNINDENT .INDENT 7.0 .TP .B Watermark = b\(aqwatr\(aq .UNINDENT .INDENT 7.0 .TP .B WaveType = b\(aqWvtp\(aq .UNINDENT .INDENT 7.0 .TP .B WavelengthMax = b\(aqWLMx\(aq .UNINDENT .INDENT 7.0 .TP .B WavelengthMin = b\(aqWLMn\(aq .UNINDENT .INDENT 7.0 .TP .B WebdavPrefs = b\(aqWbdP\(aq .UNINDENT .INDENT 7.0 .TP .B WetEdges = b\(aqWtdg\(aq .UNINDENT .INDENT 7.0 .TP .B What = b\(aqWhat\(aq .UNINDENT .INDENT 7.0 .TP .B WhiteClip = b\(aqWhtC\(aq .UNINDENT .INDENT 7.0 .TP .B WhiteIntensity = b\(aqWhtI\(aq .UNINDENT .INDENT 7.0 .TP .B WhiteIsHigh = b\(aqWhHi\(aq .UNINDENT .INDENT 7.0 .TP .B WhiteLevel = b\(aqWhtL\(aq .UNINDENT .INDENT 7.0 .TP .B WhitePoint = b\(aqWhtP\(aq .UNINDENT .INDENT 7.0 .TP .B WholePath = b\(aqWhPt\(aq .UNINDENT .INDENT 7.0 .TP .B Width = b\(aqWdth\(aq .UNINDENT .INDENT 7.0 .TP .B WindMethod = b\(aqWndM\(aq .UNINDENT .INDENT 7.0 .TP .B With = b\(aqWith\(aq .UNINDENT .INDENT 7.0 .TP .B WorkPath = b\(aqWrPt\(aq .UNINDENT .INDENT 7.0 .TP .B WorkPathIndex = b\(aqWrkP\(aq .UNINDENT .INDENT 7.0 .TP .B X = b\(aqX \(aq .UNINDENT .INDENT 7.0 .TP .B Y = b\(aqY \(aq .UNINDENT .INDENT 7.0 .TP .B Yellow = b\(aqYlw \(aq .UNINDENT .INDENT 7.0 .TP .B ZigZagType = b\(aqZZTy\(aq .UNINDENT .INDENT 7.0 .TP .B _3DAntiAlias = b\(aqAlis\(aq .UNINDENT .INDENT 7.0 .TP .B _generate_next_value_(start, count, last_values) Generate the next value when not given. .sp name: the name of the member start: the initial start value or None count: the number of existing members last_values: the list of values assigned .UNINDENT .INDENT 7.0 .TP .B _member_map_ = {\(aqA\(aq: Key.A, \(aqAdjustment\(aq: Key.Adjustment, \(aqAligned\(aq: Key.Aligned, \(aqAlignment\(aq: Key.Alignment, \(aqAllExcept\(aq: Key.AllExcept, \(aqAllPS\(aq: Key.AllPS, \(aqAllToolOptions\(aq: Key.AllToolOptions, \(aqAlphaChannelOptions\(aq: Key.AlphaChannelOptions, \(aqAlphaChannels\(aq: Key.AlphaChannels, \(aqAmbientBrightness\(aq: Key.AmbientBrightness, \(aqAmbientColor\(aq: Key.AmbientColor, \(aqAmount\(aq: Key.Amount, \(aqAmplitudeMax\(aq: Key.AmplitudeMax, \(aqAmplitudeMin\(aq: Key.AmplitudeMin, \(aqAnchor\(aq: Key.Anchor, \(aqAngle\(aq: Key.Angle, \(aqAngle1\(aq: Key.Angle1, \(aqAngle2\(aq: Key.Angle2, \(aqAngle3\(aq: Key.Angle3, \(aqAngle4\(aq: Key.Angle4, \(aqAntiAlias\(aq: Key.AntiAlias, \(aqAppend\(aq: Key.Append, \(aqApply\(aq: Key.Apply, \(aqArea\(aq: Key.Area, \(aqArrowhead\(aq: Key.Arrowhead, \(aqAs\(aq: Key.As, \(aqAssetBin\(aq: Key.AssetBin, \(aqAssumedCMYK\(aq: Key.AssumedCMYK, \(aqAssumedGray\(aq: Key.AssumedGray, \(aqAssumedRGB\(aq: Key.AssumedRGB, \(aqAt\(aq: Key.At, \(aqAuto\(aq: Key.Auto, \(aqAutoContrast\(aq: Key.AutoContrast, \(aqAutoErase\(aq: Key.AutoErase, \(aqAutoKern\(aq: Key.AutoKern, \(aqAutoUpdate\(aq: Key.AutoUpdate, \(aqAxis\(aq: Key.Axis, \(aqB\(aq: Key.B, \(aqBackground\(aq: Key.Background, \(aqBackgroundColor\(aq: Key.BackgroundColor, \(aqBackgroundLevel\(aq: Key.BackgroundLevel, \(aqBackward\(aq: Key.Backward, \(aqBalance\(aq: Key.Balance, \(aqBaselineShift\(aq: Key.BaselineShift, \(aqBeepWhenDone\(aq: Key.BeepWhenDone, \(aqBeginRamp\(aq: Key.BeginRamp, \(aqBeginSustain\(aq: Key.BeginSustain, \(aqBevelDirection\(aq: Key.BevelDirection, \(aqBevelEmboss\(aq: Key.BevelEmboss, \(aqBevelStyle\(aq: Key.BevelStyle, \(aqBevelTechnique\(aq: Key.BevelTechnique, \(aqBigNudgeH\(aq: Key.BigNudgeH, \(aqBigNudgeV\(aq: Key.BigNudgeV, \(aqBitDepth\(aq: Key.BitDepth, \(aqBlack\(aq: Key.Black, \(aqBlackClip\(aq: Key.BlackClip, \(aqBlackGeneration\(aq: Key.BlackGeneration, \(aqBlackGenerationCurve\(aq: Key.BlackGenerationCurve, \(aqBlackIntensity\(aq: Key.BlackIntensity, \(aqBlackLevel\(aq: Key.BlackLevel, \(aqBlackLimit\(aq: Key.BlackLevel, \(aqBleed\(aq: Key.Bleed, \(aqBlendRange\(aq: Key.BlendRange, \(aqBlue\(aq: Key.Blue, \(aqBlueBlackPoint\(aq: Key.BlueBlackPoint, \(aqBlueFloat\(aq: Key.BlueFloat, \(aqBlueGamma\(aq: Key.BlueGamma, \(aqBlueWhitePoint\(aq: Key.BlueWhitePoint, \(aqBlueX\(aq: Key.BlueX, \(aqBlueY\(aq: Key.BlueY, \(aqBlur\(aq: Key.Blur, \(aqBlurMethod\(aq: Key.BlurMethod, \(aqBlurQuality\(aq: Key.BlurQuality, \(aqBook\(aq: Key.Book, \(aqBorderThickness\(aq: Key.BorderThickness, \(aqBottom\(aq: Key.Bottom, \(aqBrightness\(aq: Key.Brightness, \(aqBrushDetail\(aq: Key.BrushDetail, \(aqBrushSize\(aq: Key.BrushSize, \(aqBrushType\(aq: Key.BrushType, \(aqBrushes\(aq: Key.Brushes, \(aqBumpAmplitude\(aq: Key.BumpAmplitude, \(aqBumpChannel\(aq: Key.BumpChannel, \(aqBy\(aq: Key.By, \(aqByline\(aq: Key.Byline, \(aqBylineTitle\(aq: Key.BylineTitle, \(aqByteOrder\(aq: Key.ByteOrder, \(aqCMYKSetup\(aq: Key.CMYKSetup, \(aqCachePrefs\(aq: Key.CachePrefs, \(aqCalculation\(aq: Key.Calculation, \(aqCalibrationBars\(aq: Key.CalibrationBars, \(aqCaption\(aq: Key.Caption, \(aqCaptionWriter\(aq: Key.CaptionWriter, \(aqCategory\(aq: Key.Category, \(aqCellSize\(aq: Key.CellSize, \(aqCenter\(aq: Key.Center, \(aqCenterCropMarks\(aq: Key.CenterCropMarks, \(aqChalkArea\(aq: Key.ChalkArea, \(aqChannel\(aq: Key.Channel, \(aqChannelMatrix\(aq: Key.ChannelMatrix, \(aqChannelName\(aq: Key.ChannelName, \(aqChannels\(aq: Key.Channels, \(aqChannelsInterleaved\(aq: Key.ChannelsInterleaved, \(aqCharcoalAmount\(aq: Key.CharcoalAmount, \(aqCharcoalArea\(aq: Key.CharcoalArea, \(aqChokeMatte\(aq: Key.ChokeMatte, \(aqChromeFX\(aq: Key.ChromeFX, \(aqCity\(aq: Key.City, \(aqClearAmount\(aq: Key.ClearAmount, \(aqClippingPath\(aq: Key.ClippingPath, \(aqClippingPathEPS\(aq: Key.ClippingPathEPS, \(aqClippingPathFlatness\(aq: Key.ClippingPathFlatness, \(aqClippingPathIndex\(aq: Key.ClippingPathIndex, \(aqClippingPathInfo\(aq: Key.ClippingPathInfo, \(aqCloneSource\(aq: Key.CloneSource, \(aqClosedSubpath\(aq: Key.ClosedSubpath, \(aqColor\(aq: Key.Color, \(aqColorChannels\(aq: Key.ColorChannels, \(aqColorCorrection\(aq: Key.ColorCorrection, \(aqColorIndicates\(aq: Key.ColorIndicates, \(aqColorManagement\(aq: Key.ColorManagement, \(aqColorPickerPrefs\(aq: Key.ColorPickerPrefs, \(aqColorSpace\(aq: Key.ColorSpace, \(aqColorTable\(aq: Key.ColorTable, \(aqColorize\(aq: Key.Colorize, \(aqColors\(aq: Key.Colors, \(aqColorsList\(aq: Key.ColorsList, \(aqColumnWidth\(aq: Key.ColumnWidth, \(aqCommandKey\(aq: Key.CommandKey, \(aqCompensation\(aq: Key.Compensation, \(aqCompression\(aq: Key.Compression, \(aqConcavity\(aq: Key.Concavity, \(aqCondition\(aq: Key.Condition, \(aqConstant\(aq: Key.Constant, \(aqConstrain\(aq: Key.Constant, \(aqConstrainProportions\(aq: Key.ConstrainProportions, \(aqConstructionFOV\(aq: Key.ConstructionFOV, \(aqContiguous\(aq: Key.Contiguous, \(aqContinue\(aq: Key.Continue, \(aqContinuity\(aq: Key.Continuity, \(aqContourType\(aq: Key.ContourType, \(aqContrast\(aq: Key.Center, \(aqConvert\(aq: Key.Convert, \(aqCopy\(aq: Key.Copy, \(aqCopyright\(aq: Key.Copyright, \(aqCopyrightNotice\(aq: Key.CopyrightNotice, \(aqCornerCropMarks\(aq: Key.CornerCropMarks, \(aqCount\(aq: Key.Count, \(aqCountryName\(aq: Key.CountryName, \(aqCrackBrightness\(aq: Key.CrackBrightness, \(aqCrackDepth\(aq: Key.CrackDepth, \(aqCrackSpacing\(aq: Key.CrackSpacing, \(aqCreateLayersFromLayerFX\(aq: Key.CreateLayersFromLayerFX, \(aqCredit\(aq: Key.Credit, \(aqCrossover\(aq: Key.Crossover, \(aqCurrent\(aq: Key.Current, \(aqCurrentHistoryState\(aq: Key.CurrentHistoryState, \(aqCurrentLight\(aq: Key.CurrentLight, \(aqCurrentToolOptions\(aq: Key.CurrentToolOptions, \(aqCurve\(aq: Key.Curve, \(aqCurveFile\(aq: Key.CurveFile, \(aqCustom\(aq: Key.Custom, \(aqCustomForced\(aq: Key.CustomForced, \(aqCustomMatte\(aq: Key.CustomMatte, \(aqCustomPalette\(aq: Key.CustomPalette, \(aqCyan\(aq: Key.Cyan, \(aqDCS\(aq: Key.DCS, \(aqDPXFormat\(aq: Key.DPXFormat, \(aqDarkIntensity\(aq: Key.DarkIntensity, \(aqDarkness\(aq: Key.Darkness, \(aqDateCreated\(aq: Key.DateCreated, \(aqDatum\(aq: Key.Datum, \(aqDefinition\(aq: Key.Definition, \(aqDensity\(aq: Key.Density, \(aqDepth\(aq: Key.Depth, \(aqDestBlackMax\(aq: Key.DestBlackMax, \(aqDestBlackMin\(aq: Key.DestBlackMin, \(aqDestWhiteMax\(aq: Key.DestWhiteMax, \(aqDestWhiteMin\(aq: Key.DestWhiteMin, \(aqDestinationMode\(aq: Key.DestinationMode, \(aqDetail\(aq: Key.Detail, \(aqDiameter\(aq: Key.Diameter, \(aqDiffusionDither\(aq: Key.DiffusionDither, \(aqDirection\(aq: Key.Direction, \(aqDirectionBalance\(aq: Key.DirectionBalance, \(aqDisplaceFile\(aq: Key.DisplaceFile, \(aqDisplacementMap\(aq: Key.DisplacementMap, \(aqDisplayPrefs\(aq: Key.DisplayPrefs, \(aqDistance\(aq: Key.Distance, \(aqDistortion\(aq: Key.Distortion, \(aqDistribution\(aq: Key.Distortion, \(aqDither\(aq: Key.Dither, \(aqDitherAmount\(aq: Key.DitherAmount, \(aqDitherPreserve\(aq: Key.DitherPreserve, \(aqDitherQuality\(aq: Key.DitherQuality, \(aqDocumentID\(aq: Key.DocumentID, \(aqDotGain\(aq: Key.DotGain, \(aqDotGainCurves\(aq: Key.DotGainCurves, \(aqDropShadow\(aq: Key.DropShadow, \(aqDuplicate\(aq: Key.Duplicate, \(aqDynamicColorSliders\(aq: Key.DynamicColorSliders, \(aqEdge\(aq: Key.Edge, \(aqEdgeBrightness\(aq: Key.EdgeBrightness, \(aqEdgeFidelity\(aq: Key.EdgeFidelity, \(aqEdgeIntensity\(aq: Key.EdgeIntensity, \(aqEdgeSimplicity\(aq: Key.EdgeSimplicity, \(aqEdgeThickness\(aq: Key.EdgeThickness, \(aqEdgeWidth\(aq: Key.EdgeWidth, \(aqEffect\(aq: Key.Effect, \(aqEmbedCMYK\(aq: Key.EmbedCMYK, \(aqEmbedGray\(aq: Key.EmbedGray, \(aqEmbedLab\(aq: Key.EmbedLab, \(aqEmbedProfiles\(aq: Key.EmbedProfiles, \(aqEmbedRGB\(aq: Key.EmbedRGB, \(aqEmulsionDown\(aq: Key.EmulsionDown, \(aqEnableGestures\(aq: Key.EnableGestures, \(aqEnabled\(aq: Key.Enabled, \(aqEncoding\(aq: Key.Encoding, \(aqEnd\(aq: Key.End, \(aqEndArrowhead\(aq: Key.EndArrowhead, \(aqEndRamp\(aq: Key.EndRamp, \(aqEndSustain\(aq: Key.EndSustain, \(aqEngine\(aq: Key.Engine, \(aqEraseToHistory\(aq: Key.EraseToHistory, \(aqEraserKind\(aq: Key.EraserKind, \(aqExactPoints\(aq: Key.ExactPoints, \(aqExport\(aq: Key.Export, \(aqExportClipboard\(aq: Key.ExportClipboard, \(aqExposure\(aq: Key.Exposure, \(aqExtend\(aq: Key.Extend, \(aqExtendedQuality\(aq: Key.ExtendedQuality, \(aqExtension\(aq: Key.Extension, \(aqExtensionsQuery\(aq: Key.ExtensionsQuery, \(aqExtrudeDepth\(aq: Key.ExtrudeDepth, \(aqExtrudeMaskIncomplete\(aq: Key.ExtrudeMaskIncomplete, \(aqExtrudeRandom\(aq: Key.ExtrudeRandom, \(aqExtrudeSize\(aq: Key.ExtrudeSize, \(aqExtrudeSolidFace\(aq: Key.ExtrudeSolidFace, \(aqExtrudeType\(aq: Key.ExtrudeType, \(aqEyeDropperSample\(aq: Key.EyeDropperSample, \(aqFPXCompress\(aq: Key.FPXCompress, \(aqFPXQuality\(aq: Key.FPXQuality, \(aqFPXSize\(aq: Key.FPXSize, \(aqFPXView\(aq: Key.FPXView, \(aqFadeTo\(aq: Key.FadeTo, \(aqFadeoutSteps\(aq: Key.FadeoutSteps, \(aqFalloff\(aq: Key.Falloff, \(aqFeather\(aq: Key.Feather, \(aqFiberLength\(aq: Key.FiberLength, \(aqFile\(aq: Key.File, \(aqFileCreator\(aq: Key.FileCreator, \(aqFileInfo\(aq: Key.FileInfo, \(aqFileReference\(aq: Key.FileReference, \(aqFileSavePrefs\(aq: Key.FileSavePrefs, \(aqFileType\(aq: Key.FileType, \(aqFilesList\(aq: Key.FilesList, \(aqFill\(aq: Key.Fill, \(aqFillColor\(aq: Key.FillColor, \(aqFillNeutral\(aq: Key.FillNeutral, \(aqFilterLayerPersistentData\(aq: Key.FilterLayerPersistentData, \(aqFilterLayerRandomSeed\(aq: Key.FilterLayerRandomSeed, \(aqFingerpainting\(aq: Key.Fingerpainting, \(aqFlareCenter\(aq: Key.FlareCenter, \(aqFlatness\(aq: Key.Flatness, \(aqFlatten\(aq: Key.Flatten, \(aqFlipVertical\(aq: Key.FlipVertical, \(aqFocus\(aq: Key.Focus, \(aqFolders\(aq: Key.Folders, \(aqFontDesignAxes\(aq: Key.FontDesignAxes, \(aqFontDesignAxesVectors\(aq: Key.FontDesignAxesVectors, \(aqFontName\(aq: Key.FontName, \(aqFontScript\(aq: Key.FontScript, \(aqFontStyleName\(aq: Key.FontStyleName, \(aqFontTechnology\(aq: Key.FontTechnology, \(aqForcedColors\(aq: Key.ForcedColors, \(aqForegroundColor\(aq: Key.ForegroundColor, \(aqForegroundLevel\(aq: Key.ForegroundLevel, \(aqFormat\(aq: Key.Format, \(aqForward\(aq: Key.Forward, \(aqFrameFX\(aq: Key.FrameFX, \(aqFrameWidth\(aq: Key.FrameWidth, \(aqFreeTransformCenterState\(aq: Key.FreeTransformCenterState, \(aqFrequency\(aq: Key.Frequency, \(aqFrom\(aq: Key.From, \(aqFromBuiltin\(aq: Key.FromBuiltin, \(aqFromMode\(aq: Key.FromMode, \(aqFunctionKey\(aq: Key.FunctionKey, \(aqFuzziness\(aq: Key.Fuzziness, \(aqGCR\(aq: Key.GCR, \(aqGIFColorFileType\(aq: Key.GIFColorFileType, \(aqGIFColorLimit\(aq: Key.GIFColorLimit, \(aqGIFExportCaption\(aq: Key.GIFExportCaption, \(aqGIFMaskChannelIndex\(aq: Key.GIFMaskChannelIndex, \(aqGIFMaskChannelInverted\(aq: Key.GIFMaskChannelInverted, \(aqGIFPaletteFile\(aq: Key.GIFPaletteFile, \(aqGIFPaletteType\(aq: Key.GIFPaletteType, \(aqGIFRequiredColorSpaceType\(aq: Key.GIFRequiredColorSpaceType, \(aqGIFRowOrderType\(aq: Key.GIFRowOrderType, \(aqGIFTransparentColor\(aq: Key.GIFTransparentColor, \(aqGIFTransparentIndexBlue\(aq: Key.GIFTransparentIndexBlue, \(aqGIFTransparentIndexGreen\(aq: Key.GIFTransparentIndexGreen, \(aqGIFTransparentIndexRed\(aq: Key.GIFTransparentIndexRed, \(aqGIFUseBestMatch\(aq: Key.GIFUseBestMatch, \(aqGamma\(aq: Key.Gamma, \(aqGamutWarning\(aq: Key.GamutWarning, \(aqGeneralPrefs\(aq: Key.GeneralPrefs, \(aqGlobalAngle\(aq: Key.GlobalAngle, \(aqGlobalLightingAngle\(aq: Key.GlobalLightingAngle, \(aqGloss\(aq: Key.Gloss, \(aqGlowAmount\(aq: Key.GlowAmount, \(aqGlowTechnique\(aq: Key.GlowTechnique, \(aqGradient\(aq: Key.Gradient, \(aqGradientFill\(aq: Key.GradientFill, \(aqGrain\(aq: Key.Grain, \(aqGrainType\(aq: Key.GrainType, \(aqGraininess\(aq: Key.Graininess, \(aqGray\(aq: Key.Gray, \(aqGrayBehavior\(aq: Key.GrayBehavior, \(aqGraySetup\(aq: Key.GraySetup, \(aqGreen\(aq: Key.Grain, \(aqGreenBlackPoint\(aq: Key.GreenBlackPoint, \(aqGreenFloat\(aq: Key.GreenFloat, \(aqGreenGamma\(aq: Key.GreenGamma, \(aqGreenWhitePoint\(aq: Key.GreenWhitePoint, \(aqGreenX\(aq: Key.GreenX, \(aqGreenY\(aq: Key.GreenY, \(aqGridColor\(aq: Key.GridColor, \(aqGridCustomColor\(aq: Key.GridCustomColor, \(aqGridMajor\(aq: Key.GridMajor, \(aqGridMinor\(aq: Key.GridMinor, \(aqGridStyle\(aq: Key.GridStyle, \(aqGridUnits\(aq: Key.GridUnits, \(aqGroup\(aq: Key.Group, \(aqGroutWidth\(aq: Key.GroutWidth, \(aqGrowSelection\(aq: Key.GrowSelection, \(aqGuides\(aq: Key.Guides, \(aqGuidesColor\(aq: Key.GuidesColor, \(aqGuidesCustomColor\(aq: Key.GuidesCustomColor, \(aqGuidesPrefs\(aq: Key.GuidesPrefs, \(aqGuidesStyle\(aq: Key.GuidesStyle, \(aqGutterWidth\(aq: Key.GutterWidth, \(aqHalftoneFile\(aq: Key.HalftoneFile, \(aqHalftoneScreen\(aq: Key.HalftoneScreen, \(aqHalftoneSize\(aq: Key.HalftoneSize, \(aqHalftoneSpec\(aq: Key.HalftoneSpec, \(aqHardness\(aq: Key.Hardness, \(aqHasCmdHPreference\(aq: Key.HasCmdHPreference, \(aqHeader\(aq: Key.Header, \(aqHeadline\(aq: Key.Headline, \(aqHeight\(aq: Key.Height, \(aqHighlightArea\(aq: Key.HighlightArea, \(aqHighlightColor\(aq: Key.HighlightColor, \(aqHighlightLevels\(aq: Key.HighlightLevels, \(aqHighlightMode\(aq: Key.HighlightMode, \(aqHighlightOpacity\(aq: Key.HighlightOpacity, \(aqHighlightStrength\(aq: Key.HighlightStrength, \(aqHistoryBrushSource\(aq: Key.HistoryBrushSource, \(aqHistoryPrefs\(aq: Key.HistoryPrefs, \(aqHistoryStateSource\(aq: Key.HistoryStateSource, \(aqHistoryStates\(aq: Key.HistoryStates, \(aqHorizontal\(aq: Key.Horizontal, \(aqHorizontalScale\(aq: Key.HorizontalScale, \(aqHostName\(aq: Key.HostName, \(aqHostVersion\(aq: Key.HostVersion, \(aqHue\(aq: Key.Hue, \(aqICCEngine\(aq: Key.ICCEngine, \(aqICCSetupName\(aq: Key.ICCSetupName, \(aqID\(aq: Key.ID, \(aqIdle\(aq: Key.Idle, \(aqImageBalance\(aq: Key.ImageBalance, \(aqImport\(aq: Key.Import, \(aqImpressionist\(aq: Key.Impressionist, \(aqIn\(aq: Key.In, \(aqInherits\(aq: Key.Inherits, \(aqInkColors\(aq: Key.InkColors, \(aqInks\(aq: Key.Inks, \(aqInnerGlow\(aq: Key.InnerGlow, \(aqInnerGlowSource\(aq: Key.InnerGlowSource, \(aqInnerShadow\(aq: Key.InnerShadow, \(aqInput\(aq: Key.Input, \(aqInputBlackPoint\(aq: Key.InputBlackPoint, \(aqInputMapRange\(aq: Key.InputMapRange, \(aqInputRange\(aq: Key.InputRange, \(aqInputWhitePoint\(aq: Key.InputWhitePoint, \(aqIntensity\(aq: Key.Intensity, \(aqIntent\(aq: Key.Intent, \(aqInterfaceBevelHighlight\(aq: Key.InterfaceBevelHighlight, \(aqInterfaceBevelShadow\(aq: Key.InterfaceBevelShadow, \(aqInterfaceBlack\(aq: Key.InterfaceBlack, \(aqInterfaceBorder\(aq: Key.InterfaceBorder, \(aqInterfaceButtonDarkShadow\(aq: Key.InterfaceButtonDarkShadow, \(aqInterfaceButtonDownFill\(aq: Key.InterfaceButtonDownFill, \(aqInterfaceButtonUpFill\(aq: Key.InterfaceButtonUpFill, \(aqInterfaceColorBlue2\(aq: Key.InterfaceColorBlue2, \(aqInterfaceColorBlue32\(aq: Key.InterfaceColorBlue32, \(aqInterfaceColorGreen2\(aq: Key.InterfaceColorGreen2, \(aqInterfaceColorGreen32\(aq: Key.InterfaceColorGreen32, \(aqInterfaceColorRed2\(aq: Key.InterfaceColorRed2, \(aqInterfaceColorRed32\(aq: Key.InterfaceColorRed32, \(aqInterfaceIconFillActive\(aq: Key.InterfaceIconFillActive, \(aqInterfaceIconFillDimmed\(aq: Key.InterfaceIconFillDimmed, \(aqInterfaceIconFillSelected\(aq: Key.InterfaceIconFillSelected, \(aqInterfaceIconFrameActive\(aq: Key.InterfaceIconFrameActive, \(aqInterfaceIconFrameDimmed\(aq: Key.InterfaceIconFrameDimmed, \(aqInterfaceIconFrameSelected\(aq: Key.InterfaceIconFrameSelected, \(aqInterfacePaletteFill\(aq: Key.InterfacePaletteFill, \(aqInterfaceRed\(aq: Key.InterfaceRed, \(aqInterfaceToolTipBackground\(aq: Key.InterfaceToolTipBackground, \(aqInterfaceToolTipText\(aq: Key.InterfaceToolTipText, \(aqInterfaceTransparencyBackground\(aq: Key.InterfaceTransparencyBackground, \(aqInterfaceTransparencyForeground\(aq: Key.InterfaceTransparencyForeground, \(aqInterfaceWhite\(aq: Key.InterfaceWhite, \(aqInterlace\(aq: Key.InterfaceIconFrameDimmed, \(aqInterlaceCreateType\(aq: Key.InterlaceCreateType, \(aqInterlaceEliminateType\(aq: Key.InterlaceEliminateType, \(aqInterpolation\(aq: Key.InterfaceIconFrameDimmed, \(aqInterpolationMethod\(aq: Key.InterpolationMethod, \(aqInvert\(aq: Key.Invert, \(aqInvertMask\(aq: Key.InvertMask, \(aqInvertSource2\(aq: Key.InvertSource2, \(aqInvertTexture\(aq: Key.InvertTexture, \(aqIsDirty\(aq: Key.IsDirty, \(aqItemIndex\(aq: Key.ItemIndex, \(aqJPEGQuality\(aq: Key.JPEGQuality, \(aqKerning\(aq: Key.Kerning, \(aqKeywords\(aq: Key.Keywords, \(aqKind\(aq: Key.Kind, \(aqLUTAnimation\(aq: Key.LUTAnimation, \(aqLZWCompression\(aq: Key.LZWCompression, \(aqLabels\(aq: Key.Labels, \(aqLandscape\(aq: Key.Landscape, \(aqLastTransform\(aq: Key.LastTransform, \(aqLayer\(aq: Key.Layer, \(aqLayerEffects\(aq: Key.LayerEffects, \(aqLayerFXVisible\(aq: Key.LayerFXVisible, \(aqLayerID\(aq: Key.LayerID, \(aqLayerName\(aq: Key.LayerName, \(aqLayers\(aq: Key.Layers, \(aqLeading\(aq: Key.Leading, \(aqLeft\(aq: Key.Left, \(aqLegacySerialString\(aq: Key.LegacySerialString, \(aqLength\(aq: Key.Length, \(aqLens\(aq: Key.Lens, \(aqLevel\(aq: Key.Level, \(aqLevels\(aq: Key.Levels, \(aqLightDark\(aq: Key.LightDark, \(aqLightDirection\(aq: Key.LightDirection, \(aqLightIntensity\(aq: Key.LightIntensity, \(aqLightPosition\(aq: Key.LightPosition, \(aqLightSource\(aq: Key.LightSource, \(aqLightType\(aq: Key.LightType, \(aqLightenGrout\(aq: Key.LightenGrout, \(aqLightness\(aq: Key.Lightness, \(aqLine\(aq: Key.Line, \(aqLinkEnable\(aq: Key.LinkEnable, \(aqLinkedLayerIDs\(aq: Key.LinkedLayerIDs, \(aqLocalLightingAltitude\(aq: Key.LocalLightingAltitude, \(aqLocalLightingAngle\(aq: Key.LocalLightingAngle, \(aqLocalRange\(aq: Key.LocalRange, \(aqLocation\(aq: Key.Location, \(aqLog\(aq: Key.Log, \(aqLogarithmic\(aq: Key.Logarithmic, \(aqLowerCase\(aq: Key.LowerCase, \(aqLuminance\(aq: Key.Luminance, \(aqMagenta\(aq: Key.Magenta, \(aqMakeVisible\(aq: Key.MakeVisible, \(aqManipulationFOV\(aq: Key.ManipulationFOV, \(aqMapBlack\(aq: Key.MapBlack, \(aqMapping\(aq: Key.Mapping, \(aqMappingShape\(aq: Key.MappingShape, \(aqMaterial\(aq: Key.Material, \(aqMatrix\(aq: Key.Matrix, \(aqMatteColor\(aq: Key.MatteColor, \(aqMaximum\(aq: Key.Maximum, \(aqMaximumStates\(aq: Key.MaximumStates, \(aqMemoryUsagePercent\(aq: Key.MemoryUsagePercent, \(aqMerge\(aq: Key.Merge, \(aqMerged\(aq: Key.Merged, \(aqMessage\(aq: Key.Message, \(aqMethod\(aq: Key.Method, \(aqMezzotintType\(aq: Key.MezzotintType, \(aqMidpoint\(aq: Key.Midpoint, \(aqMidtoneLevels\(aq: Key.MidtoneLevels, \(aqMinimum\(aq: Key.Minimum, \(aqMismatchCMYK\(aq: Key.MismatchCMYK, \(aqMismatchGray\(aq: Key.MismatchGray, \(aqMismatchRGB\(aq: Key.MismatchRGB, \(aqMode\(aq: Key.Mode, \(aqMonochromatic\(aq: Key.Monochromatic, \(aqMoveTo\(aq: Key.MoveTo, \(aqName\(aq: Key.Name, \(aqNegative\(aq: Key.Negative, \(aqNew\(aq: Key.New, \(aqNoise\(aq: Key.Noise, \(aqNonImageData\(aq: Key.NonImageData, \(aqNonLinear\(aq: Key.NonLinear, \(aqNull\(aq: Key.Null, \(aqNumLights\(aq: Key.NumLights, \(aqNumber\(aq: Key.Number, \(aqNumberOfCacheLevels\(aq: Key.NumberOfCacheLevels, \(aqNumberOfCacheLevels64\(aq: Key.NumberOfCacheLevels64, \(aqNumberOfChannels\(aq: Key.NumberOfChannels, \(aqNumberOfChildren\(aq: Key.NumberOfChildren, \(aqNumberOfDocuments\(aq: Key.NumberOfDocuments, \(aqNumberOfGenerators\(aq: Key.NumberOfGenerators, \(aqNumberOfLayers\(aq: Key.NumberOfLayers, \(aqNumberOfLevels\(aq: Key.NumberOfLayers, \(aqNumberOfPaths\(aq: Key.NumberOfPaths, \(aqNumberOfRipples\(aq: Key.NumberOfRipples, \(aqNumberOfSiblings\(aq: Key.NumberOfSiblings, \(aqObjectName\(aq: Key.ObjectName, \(aqOffset\(aq: Key.Offset, \(aqOldSmallFontType\(aq: Key.OldSmallFontType, \(aqOn\(aq: Key.On, \(aqOpacity\(aq: Key.Opacity, \(aqOptimized\(aq: Key.Optimized, \(aqOrientation\(aq: Key.Orientation, \(aqOriginalHeader\(aq: Key.OriginalHeader, \(aqOriginalTransmissionReference\(aq: Key.OriginalTransmissionReference, \(aqOtherCursors\(aq: Key.OtherCursors, \(aqOuterGlow\(aq: Key.OuterGlow, \(aqOutput\(aq: Key.Output, \(aqOutputBlackPoint\(aq: Key.OutputBlackPoint, \(aqOutputWhitePoint\(aq: Key.OutputWhitePoint, \(aqOverprintColors\(aq: Key.OverprintColors, \(aqOverrideOpen\(aq: Key.OverrideOpen, \(aqOverridePrinter\(aq: Key.OverridePrinter, \(aqOverrideSave\(aq: Key.OverrideSave, \(aqPNGFilter\(aq: Key.PNGFilter, \(aqPNGInterlaceType\(aq: Key.PNGInterlaceType, \(aqPageFormat\(aq: Key.PageFormat, \(aqPageNumber\(aq: Key.PageNumber, \(aqPagePosition\(aq: Key.PagePosition, \(aqPageSetup\(aq: Key.PageSetup, \(aqPaintCursorKind\(aq: Key.PaintCursorKind, \(aqPaintType\(aq: Key.PaintType, \(aqPaintingCursors\(aq: Key.PaintingCursors, \(aqPalette\(aq: Key.Palette, \(aqPaletteFile\(aq: Key.PaletteFile, \(aqPaperBrightness\(aq: Key.PaperBrightness, \(aqParentIndex\(aq: Key.ParentIndex, \(aqParentName\(aq: Key.ParentName, \(aqPath\(aq: Key.Path, \(aqPathContents\(aq: Key.PathContents, \(aqPathName\(aq: Key.PathName, \(aqPattern\(aq: Key.Pattern, \(aqPencilWidth\(aq: Key.PencilWidth, \(aqPerspectiveIndex\(aq: Key.PerspectiveIndex, \(aqPhosphors\(aq: Key.Phosphors, \(aqPickerID\(aq: Key.PickerID, \(aqPickerKind\(aq: Key.PickerKind, \(aqPixelPaintSize\(aq: Key.PixelPaintSize, \(aqPlatform\(aq: Key.Platform, \(aqPluginFolder\(aq: Key.PluginFolder, \(aqPluginPrefs\(aq: Key.PluginPrefs, \(aqPoints\(aq: Key.Points, \(aqPosition\(aq: Key.Position, \(aqPostScriptColor\(aq: Key.PostScriptColor, \(aqPosterization\(aq: Key.Posterization, \(aqPredefinedColors\(aq: Key.PredefinedColors, \(aqPreferBuiltin\(aq: Key.PreferBuiltin, \(aqPreferences\(aq: Key.Preferences, \(aqPreserveAdditional\(aq: Key.PreserveAdditional, \(aqPreserveLuminosity\(aq: Key.PreserveLuminosity, \(aqPreserveTransparency\(aq: Key.PreserveTransparency, \(aqPressure\(aq: Key.Pressure, \(aqPreview\(aq: Key.Preview, \(aqPreviewCMYK\(aq: Key.PreviewCMYK, \(aqPreviewFullSize\(aq: Key.PreviewFullSize, \(aqPreviewIcon\(aq: Key.PreviewIcon, \(aqPreviewMacThumbnail\(aq: Key.PreviewMacThumbnail, \(aqPreviewWinThumbnail\(aq: Key.PreviewWinThumbnail, \(aqPreviewsQuery\(aq: Key.PreviewsQuery, \(aqPrintSettings\(aq: Key.PrintSettings, \(aqProfileSetup\(aq: Key.ProfileSetup, \(aqProvinceState\(aq: Key.ProvinceState, \(aqQuality\(aq: Key.Quality, \(aqQuickMask\(aq: Key.QuickMask, \(aqRGBSetup\(aq: Key.RGBSetup, \(aqRadius\(aq: Key.Radius, \(aqRandomSeed\(aq: Key.RandomSeed, \(aqRatio\(aq: Key.Ratio, \(aqRecentFiles\(aq: Key.RecentFiles, \(aqRed\(aq: Key.Red, \(aqRedBlackPoint\(aq: Key.RedBlackPoint, \(aqRedFloat\(aq: Key.RedFloat, \(aqRedGamma\(aq: Key.RedGamma, \(aqRedWhitePoint\(aq: Key.RedWhitePoint, \(aqRedX\(aq: Key.RedX, \(aqRedY\(aq: Key.RedY, \(aqRegistrationMarks\(aq: Key.RegistrationMarks, \(aqRelative\(aq: Key.Relative, \(aqRelief\(aq: Key.Relief, \(aqRenderFidelity\(aq: Key.RenderFidelity, \(aqResample\(aq: Key.Resample, \(aqResizeWindowsOnZoom\(aq: Key.ResizeWindowsOnZoom, \(aqResolution\(aq: Key.Resolution, \(aqResourceID\(aq: Key.ResourceID, \(aqResponse\(aq: Key.Response, \(aqRetainHeader\(aq: Key.RetainHeader, \(aqReverse\(aq: Key.Reverse, \(aqRight\(aq: Key.Right, \(aqRippleMagnitude\(aq: Key.RippleMagnitude, \(aqRippleSize\(aq: Key.RippleSize, \(aqRotate\(aq: Key.Rotate, \(aqRoundness\(aq: Key.Roundness, \(aqRulerOriginH\(aq: Key.RulerOriginH, \(aqRulerOriginV\(aq: Key.RulerOriginV, \(aqRulerUnits\(aq: Key.RulerUnits, \(aqSaturation\(aq: Key.Saturation, \(aqSaveAndClose\(aq: Key.SaveAndClose, \(aqSaveComposite\(aq: Key.SaveComposite, \(aqSavePaletteLocations\(aq: Key.SavePaletteLocations, \(aqSavePaths\(aq: Key.SavePaths, \(aqSavePyramids\(aq: Key.SavePyramids, \(aqSaving\(aq: Key.Saving, \(aqScale\(aq: Key.Scale, \(aqScaleHorizontal\(aq: Key.ScaleHorizontal, \(aqScaleVertical\(aq: Key.ScaleVertical, \(aqScaling\(aq: Key.Scaling, \(aqScans\(aq: Key.Scans, \(aqScratchDisks\(aq: Key.ScratchDisks, \(aqScreenFile\(aq: Key.ScreenFile, \(aqScreenType\(aq: Key.ScreenType, \(aqSeparations\(aq: Key.Separations, \(aqSerialString\(aq: Key.SerialString, \(aqShadingIntensity\(aq: Key.ShadingIntensity, \(aqShadingNoise\(aq: Key.ShadingNoise, \(aqShadingShape\(aq: Key.ShadingShape, \(aqShadowColor\(aq: Key.ShadowColor, \(aqShadowIntensity\(aq: Key.ShadingIntensity, \(aqShadowLevels\(aq: Key.ShadowLevels, \(aqShadowMode\(aq: Key.ShadowMode, \(aqShadowOpacity\(aq: Key.ShadowOpacity, \(aqShape\(aq: Key.Shape, \(aqSharpness\(aq: Key.Sharpness, \(aqShearEd\(aq: Key.ShearEd, \(aqShearPoints\(aq: Key.ShearPoints, \(aqShearSt\(aq: Key.ShearSt, \(aqShiftKey\(aq: Key.ShiftKey, \(aqShiftKeyToolSwitch\(aq: Key.ShiftKeyToolSwitch, \(aqShortNames\(aq: Key.ShortNames, \(aqShowEnglishFontNames\(aq: Key.ShowEnglishFontNames, \(aqShowMenuColors\(aq: Key.ShowMenuColors, \(aqShowToolTips\(aq: Key.ShowToolTips, \(aqShowTransparency\(aq: Key.ShowTransparency, \(aqSizeKey\(aq: Key.SizeKey, \(aqSkew\(aq: Key.Skew, \(aqSmallFontType\(aq: Key.SmallFontType, \(aqSmartBlurMode\(aq: Key.SmartBlurMode, \(aqSmartBlurQuality\(aq: Key.SmartBlurQuality, \(aqSmooth\(aq: Key.Smooth, \(aqSmoothness\(aq: Key.Smoothness, \(aqSnapshotInitial\(aq: Key.SnapshotInitial, \(aqSoftClip\(aq: Key.SoftClip, \(aqSoftness\(aq: Key.Softness, \(aqSolidFill\(aq: Key.SolidFill, \(aqSource\(aq: Key.Source, \(aqSource2\(aq: Key.Source2, \(aqSourceMode\(aq: Key.SourceMode, \(aqSpacing\(aq: Key.Spacing, \(aqSpecialInstructions\(aq: Key.SpecialInstructions, \(aqSpherizeMode\(aq: Key.SpherizeMode, \(aqSpot\(aq: Key.Spot, \(aqSprayRadius\(aq: Key.SprayRadius, \(aqSquareSize\(aq: Key.SquareSize, \(aqSrcBlackMax\(aq: Key.SrcBlackMax, \(aqSrcBlackMin\(aq: Key.SrcBlackMin, \(aqSrcWhiteMax\(aq: Key.SrcWhiteMax, \(aqSrcWhiteMin\(aq: Key.SrcWhiteMin, \(aqStart\(aq: Key.Saturation, \(aqStartArrowhead\(aq: Key.StartArrowhead, \(aqState\(aq: Key.State, \(aqStrength\(aq: Key.Strength, \(aqStrengthRatio\(aq: Key.StrengthRatio, \(aqStrength_PLUGIN\(aq: Key.Strength_PLUGIN, \(aqStrokeDetail\(aq: Key.StrokeDetail, \(aqStrokeDirection\(aq: Key.StrokeDirection, \(aqStrokeLength\(aq: Key.StrokeLength, \(aqStrokePressure\(aq: Key.StrokePressure, \(aqStrokeSize\(aq: Key.StrokeSize, \(aqStrokeWidth\(aq: Key.StrokeWidth, \(aqStyle\(aq: Key.Style, \(aqStyles\(aq: Key.Styles, \(aqStylusIsColor\(aq: Key.StylusIsColor, \(aqStylusIsOpacity\(aq: Key.StylusIsOpacity, \(aqStylusIsPressure\(aq: Key.StylusIsPressure, \(aqStylusIsSize\(aq: Key.StylusIsSize, \(aqSubPathList\(aq: Key.SubPathList, \(aqSupplementalCategories\(aq: Key.SupplementalCategories, \(aqSystemInfo\(aq: Key.SystemInfo, \(aqSystemPalette\(aq: Key.SystemPalette, \(aqTarget\(aq: Key.Null, \(aqTargetPath\(aq: Key.TargetPath, \(aqTargetPathIndex\(aq: Key.TargetPathIndex, \(aqTermLength\(aq: Key.Length, \(aqText\(aq: Key.Text, \(aqTextClickPoint\(aq: Key.TextClickPoint, \(aqTextData\(aq: Key.TextData, \(aqTextStyle\(aq: Key.TextStyle, \(aqTextStyleRange\(aq: Key.TextStyleRange, \(aqTexture\(aq: Key.Texture, \(aqTextureCoverage\(aq: Key.TextClickPoint, \(aqTextureFile\(aq: Key.TextureFile, \(aqTextureType\(aq: Key.TextureType, \(aqThreshold\(aq: Key.Threshold, \(aqTileNumber\(aq: Key.TileNumber, \(aqTileOffset\(aq: Key.TileOffset, \(aqTileSize\(aq: Key.TileSize, \(aqTitle\(aq: Key.Title, \(aqTo\(aq: Key.To, \(aqToBuiltin\(aq: Key.ToBuiltin, \(aqToLinked\(aq: Key.ToLinked, \(aqToMode\(aq: Key.ToMode, \(aqToggleOthers\(aq: Key.ToggleOthers, \(aqTolerance\(aq: Key.Tolerance, \(aqTop\(aq: Key.Top, \(aqTotalLimit\(aq: Key.TotalLimit, \(aqTracking\(aq: Key.Tracking, \(aqTransferFunction\(aq: Key.TransferFunction, \(aqTransferSpec\(aq: Key.TransferSpec, \(aqTransparency\(aq: Key.Transparency, \(aqTransparencyGrid\(aq: Key.TransparencyGrid, \(aqTransparencyGridColors\(aq: Key.TransparencyGridColors, \(aqTransparencyGridSize\(aq: Key.TransparencyGrid, \(aqTransparencyPrefs\(aq: Key.TransparencyPrefs, \(aqTransparencyShape\(aq: Key.TransferSpec, \(aqTransparentIndex\(aq: Key.TransparentIndex, \(aqTransparentWhites\(aq: Key.TransparentWhites, \(aqTwist\(aq: Key.Twist, \(aqType\(aq: Key.Type, \(aqUCA\(aq: Key.UCA, \(aqURL\(aq: Key.URL, \(aqUndefinedArea\(aq: Key.UndefinedArea, \(aqUnderline\(aq: Key.Underline, \(aqUnitsPrefs\(aq: Key.UnitsPrefs, \(aqUntitled\(aq: Key.Untitled, \(aqUpperY\(aq: Key.UpperY, \(aqUrgency\(aq: Key.Urgency, \(aqUseAccurateScreens\(aq: Key.UseAccurateScreens, \(aqUseAdditionalPlugins\(aq: Key.UseAdditionalPlugins, \(aqUseCacheForHistograms\(aq: Key.UseCacheForHistograms, \(aqUseCurves\(aq: Key.UseCurves, \(aqUseDefault\(aq: Key.UseDefault, \(aqUseGlobalAngle\(aq: Key.UseGlobalAngle, \(aqUseICCProfile\(aq: Key.UseICCProfile, \(aqUseMask\(aq: Key.UseMask, \(aqUserMaskEnabled\(aq: Key.UserMaskEnabled, \(aqUserMaskLinked\(aq: Key.UserMaskLinked, \(aqUsing\(aq: Key.Using, \(aqValue\(aq: Key.Value, \(aqVariance\(aq: Key.Variance, \(aqVector0\(aq: Key.Vector0, \(aqVector1\(aq: Key.Vector1, \(aqVectorColor\(aq: Key.VectorColor, \(aqVersionFix\(aq: Key.VersionFix, \(aqVersionMajor\(aq: Key.VersionMajor, \(aqVersionMinor\(aq: Key.VersionMinor, \(aqVertical\(aq: Key.Vertical, \(aqVerticalScale\(aq: Key.VerticalScale, \(aqVideoAlpha\(aq: Key.VideoAlpha, \(aqVisible\(aq: Key.Visible, \(aqWatchSuspension\(aq: Key.WatchSuspension, \(aqWatermark\(aq: Key.Watermark, \(aqWaveType\(aq: Key.WaveType, \(aqWavelengthMax\(aq: Key.WavelengthMax, \(aqWavelengthMin\(aq: Key.WavelengthMin, \(aqWebdavPrefs\(aq: Key.WebdavPrefs, \(aqWetEdges\(aq: Key.WetEdges, \(aqWhat\(aq: Key.What, \(aqWhiteClip\(aq: Key.WhiteClip, \(aqWhiteIntensity\(aq: Key.WhiteIntensity, \(aqWhiteIsHigh\(aq: Key.WhiteIsHigh, \(aqWhiteLevel\(aq: Key.WhiteLevel, \(aqWhitePoint\(aq: Key.WhitePoint, \(aqWholePath\(aq: Key.WholePath, \(aqWidth\(aq: Key.Width, \(aqWindMethod\(aq: Key.WindMethod, \(aqWith\(aq: Key.With, \(aqWorkPath\(aq: Key.WorkPath, \(aqWorkPathIndex\(aq: Key.WorkPathIndex, \(aqX\(aq: Key.X, \(aqY\(aq: Key.Y, \(aqYellow\(aq: Key.Yellow, \(aqZigZagType\(aq: Key.ZigZagType, \(aq_3DAntiAlias\(aq: Key._3DAntiAlias, \(aqcomp\(aq: Key.comp} .UNINDENT .INDENT 7.0 .TP .B _member_names_ = [\(aq_3DAntiAlias\(aq, \(aqA\(aq, \(aqAdjustment\(aq, \(aqAligned\(aq, \(aqAlignment\(aq, \(aqAllPS\(aq, \(aqAllExcept\(aq, \(aqAllToolOptions\(aq, \(aqAlphaChannelOptions\(aq, \(aqAlphaChannels\(aq, \(aqAmbientBrightness\(aq, \(aqAmbientColor\(aq, \(aqAmount\(aq, \(aqAmplitudeMax\(aq, \(aqAmplitudeMin\(aq, \(aqAnchor\(aq, \(aqAngle\(aq, \(aqAngle1\(aq, \(aqAngle2\(aq, \(aqAngle3\(aq, \(aqAngle4\(aq, \(aqAntiAlias\(aq, \(aqAppend\(aq, \(aqApply\(aq, \(aqArea\(aq, \(aqArrowhead\(aq, \(aqAs\(aq, \(aqAssetBin\(aq, \(aqAssumedCMYK\(aq, \(aqAssumedGray\(aq, \(aqAssumedRGB\(aq, \(aqAt\(aq, \(aqAuto\(aq, \(aqAutoContrast\(aq, \(aqAutoErase\(aq, \(aqAutoKern\(aq, \(aqAutoUpdate\(aq, \(aqShowMenuColors\(aq, \(aqAxis\(aq, \(aqB\(aq, \(aqBackground\(aq, \(aqBackgroundColor\(aq, \(aqBackgroundLevel\(aq, \(aqBackward\(aq, \(aqBalance\(aq, \(aqBaselineShift\(aq, \(aqBeepWhenDone\(aq, \(aqBeginRamp\(aq, \(aqBeginSustain\(aq, \(aqBevelDirection\(aq, \(aqBevelEmboss\(aq, \(aqBevelStyle\(aq, \(aqBevelTechnique\(aq, \(aqBigNudgeH\(aq, \(aqBigNudgeV\(aq, \(aqBitDepth\(aq, \(aqBlack\(aq, \(aqBlackClip\(aq, \(aqBlackGeneration\(aq, \(aqBlackGenerationCurve\(aq, \(aqBlackIntensity\(aq, \(aqBlackLevel\(aq, \(aqBleed\(aq, \(aqBlendRange\(aq, \(aqBlue\(aq, \(aqBlueBlackPoint\(aq, \(aqBlueFloat\(aq, \(aqBlueGamma\(aq, \(aqBlueWhitePoint\(aq, \(aqBlueX\(aq, \(aqBlueY\(aq, \(aqBlur\(aq, \(aqBlurMethod\(aq, \(aqBlurQuality\(aq, \(aqBook\(aq, \(aqBorderThickness\(aq, \(aqBottom\(aq, \(aqBrightness\(aq, \(aqBrushDetail\(aq, \(aqBrushes\(aq, \(aqBrushSize\(aq, \(aqBrushType\(aq, \(aqBumpAmplitude\(aq, \(aqBumpChannel\(aq, \(aqBy\(aq, \(aqByline\(aq, \(aqBylineTitle\(aq, \(aqByteOrder\(aq, \(aqCachePrefs\(aq, \(aqChokeMatte\(aq, \(aqCloneSource\(aq, \(aqCMYKSetup\(aq, \(aqCalculation\(aq, \(aqCalibrationBars\(aq, \(aqCaption\(aq, \(aqCaptionWriter\(aq, \(aqCategory\(aq, \(aqCellSize\(aq, \(aqCenter\(aq, \(aqCenterCropMarks\(aq, \(aqChalkArea\(aq, \(aqChannel\(aq, \(aqChannelMatrix\(aq, \(aqChannelName\(aq, \(aqChannels\(aq, \(aqChannelsInterleaved\(aq, \(aqCharcoalAmount\(aq, \(aqCharcoalArea\(aq, \(aqChromeFX\(aq, \(aqCity\(aq, \(aqClearAmount\(aq, \(aqClippingPath\(aq, \(aqClippingPathEPS\(aq, \(aqClippingPathFlatness\(aq, \(aqClippingPathIndex\(aq, \(aqClippingPathInfo\(aq, \(aqClosedSubpath\(aq, \(aqColor\(aq, \(aqColorChannels\(aq, \(aqColorCorrection\(aq, \(aqColorIndicates\(aq, \(aqColorManagement\(aq, \(aqColorPickerPrefs\(aq, \(aqColorTable\(aq, \(aqColorize\(aq, \(aqColors\(aq, \(aqColorsList\(aq, \(aqColorSpace\(aq, \(aqColumnWidth\(aq, \(aqCommandKey\(aq, \(aqCompensation\(aq, \(aqCompression\(aq, \(aqConcavity\(aq, \(aqCondition\(aq, \(aqConstant\(aq, \(aqConstrainProportions\(aq, \(aqConstructionFOV\(aq, \(aqContiguous\(aq, \(aqContinue\(aq, \(aqContinuity\(aq, \(aqConvert\(aq, \(aqCopy\(aq, \(aqCopyright\(aq, \(aqCopyrightNotice\(aq, \(aqCornerCropMarks\(aq, \(aqCount\(aq, \(aqCountryName\(aq, \(aqCrackBrightness\(aq, \(aqCrackDepth\(aq, \(aqCrackSpacing\(aq, \(aqCreateLayersFromLayerFX\(aq, \(aqCredit\(aq, \(aqCrossover\(aq, \(aqCurrent\(aq, \(aqCurrentHistoryState\(aq, \(aqCurrentLight\(aq, \(aqCurrentToolOptions\(aq, \(aqCurve\(aq, \(aqCurveFile\(aq, \(aqCustom\(aq, \(aqCustomForced\(aq, \(aqCustomMatte\(aq, \(aqCustomPalette\(aq, \(aqCyan\(aq, \(aqDarkIntensity\(aq, \(aqDarkness\(aq, \(aqDateCreated\(aq, \(aqDatum\(aq, \(aqDCS\(aq, \(aqDefinition\(aq, \(aqDensity\(aq, \(aqDepth\(aq, \(aqDestBlackMax\(aq, \(aqDestBlackMin\(aq, \(aqDestinationMode\(aq, \(aqDestWhiteMax\(aq, \(aqDestWhiteMin\(aq, \(aqDetail\(aq, \(aqDiameter\(aq, \(aqDiffusionDither\(aq, \(aqDirection\(aq, \(aqDirectionBalance\(aq, \(aqDisplaceFile\(aq, \(aqDisplacementMap\(aq, \(aqDisplayPrefs\(aq, \(aqDistance\(aq, \(aqDistortion\(aq, \(aqDither\(aq, \(aqDitherAmount\(aq, \(aqDitherPreserve\(aq, \(aqDitherQuality\(aq, \(aqDocumentID\(aq, \(aqDotGain\(aq, \(aqDotGainCurves\(aq, \(aqDPXFormat\(aq, \(aqDropShadow\(aq, \(aqDuplicate\(aq, \(aqDynamicColorSliders\(aq, \(aqEdge\(aq, \(aqEdgeBrightness\(aq, \(aqEdgeFidelity\(aq, \(aqEdgeIntensity\(aq, \(aqEdgeSimplicity\(aq, \(aqEdgeThickness\(aq, \(aqEdgeWidth\(aq, \(aqEffect\(aq, \(aqEmbedProfiles\(aq, \(aqEmbedCMYK\(aq, \(aqEmbedGray\(aq, \(aqEmbedLab\(aq, \(aqEmbedRGB\(aq, \(aqEmulsionDown\(aq, \(aqEnabled\(aq, \(aqEnableGestures\(aq, \(aqEncoding\(aq, \(aqEnd\(aq, \(aqEndArrowhead\(aq, \(aqEndRamp\(aq, \(aqEndSustain\(aq, \(aqEngine\(aq, \(aqEraserKind\(aq, \(aqEraseToHistory\(aq, \(aqExactPoints\(aq, \(aqExport\(aq, \(aqExportClipboard\(aq, \(aqExposure\(aq, \(aqExtend\(aq, \(aqExtension\(aq, \(aqExtensionsQuery\(aq, \(aqExtrudeDepth\(aq, \(aqExtrudeMaskIncomplete\(aq, \(aqExtrudeRandom\(aq, \(aqExtrudeSize\(aq, \(aqExtrudeSolidFace\(aq, \(aqExtrudeType\(aq, \(aqEyeDropperSample\(aq, \(aqFadeoutSteps\(aq, \(aqFadeTo\(aq, \(aqFalloff\(aq, \(aqFPXCompress\(aq, \(aqFPXQuality\(aq, \(aqFPXSize\(aq, \(aqFPXView\(aq, \(aqFeather\(aq, \(aqFiberLength\(aq, \(aqFile\(aq, \(aqFileCreator\(aq, \(aqFileInfo\(aq, \(aqFileReference\(aq, \(aqFileSavePrefs\(aq, \(aqFilesList\(aq, \(aqFileType\(aq, \(aqFill\(aq, \(aqFillColor\(aq, \(aqFillNeutral\(aq, \(aqFilterLayerRandomSeed\(aq, \(aqFilterLayerPersistentData\(aq, \(aqFingerpainting\(aq, \(aqFlareCenter\(aq, \(aqFlatness\(aq, \(aqFlatten\(aq, \(aqFlipVertical\(aq, \(aqFocus\(aq, \(aqFolders\(aq, \(aqFontDesignAxes\(aq, \(aqFontDesignAxesVectors\(aq, \(aqFontName\(aq, \(aqFontScript\(aq, \(aqFontStyleName\(aq, \(aqFontTechnology\(aq, \(aqForcedColors\(aq, \(aqForegroundColor\(aq, \(aqForegroundLevel\(aq, \(aqFormat\(aq, \(aqForward\(aq, \(aqFrameFX\(aq, \(aqFrameWidth\(aq, \(aqFreeTransformCenterState\(aq, \(aqFrequency\(aq, \(aqFrom\(aq, \(aqFromBuiltin\(aq, \(aqFromMode\(aq, \(aqFunctionKey\(aq, \(aqFuzziness\(aq, \(aqGamutWarning\(aq, \(aqGCR\(aq, \(aqGeneralPrefs\(aq, \(aqGIFColorFileType\(aq, \(aqGIFColorLimit\(aq, \(aqGIFExportCaption\(aq, \(aqGIFMaskChannelIndex\(aq, \(aqGIFMaskChannelInverted\(aq, \(aqGIFPaletteFile\(aq, \(aqGIFPaletteType\(aq, \(aqGIFRequiredColorSpaceType\(aq, \(aqGIFRowOrderType\(aq, \(aqGIFTransparentColor\(aq, \(aqGIFTransparentIndexBlue\(aq, \(aqGIFTransparentIndexGreen\(aq, \(aqGIFTransparentIndexRed\(aq, \(aqGIFUseBestMatch\(aq, \(aqGamma\(aq, \(aqGlobalAngle\(aq, \(aqGlobalLightingAngle\(aq, \(aqGloss\(aq, \(aqGlowAmount\(aq, \(aqGlowTechnique\(aq, \(aqGradient\(aq, \(aqGradientFill\(aq, \(aqGrain\(aq, \(aqGrainType\(aq, \(aqGraininess\(aq, \(aqGray\(aq, \(aqGrayBehavior\(aq, \(aqGraySetup\(aq, \(aqGreenBlackPoint\(aq, \(aqGreenFloat\(aq, \(aqGreenGamma\(aq, \(aqGreenWhitePoint\(aq, \(aqGreenX\(aq, \(aqGreenY\(aq, \(aqGridColor\(aq, \(aqGridCustomColor\(aq, \(aqGridMajor\(aq, \(aqGridMinor\(aq, \(aqGridStyle\(aq, \(aqGridUnits\(aq, \(aqGroup\(aq, \(aqGroutWidth\(aq, \(aqGrowSelection\(aq, \(aqGuides\(aq, \(aqGuidesColor\(aq, \(aqGuidesCustomColor\(aq, \(aqGuidesStyle\(aq, \(aqGuidesPrefs\(aq, \(aqGutterWidth\(aq, \(aqHalftoneFile\(aq, \(aqHalftoneScreen\(aq, \(aqHalftoneSpec\(aq, \(aqHalftoneSize\(aq, \(aqHardness\(aq, \(aqHasCmdHPreference\(aq, \(aqHeader\(aq, \(aqHeadline\(aq, \(aqHeight\(aq, \(aqHostName\(aq, \(aqHighlightArea\(aq, \(aqHighlightColor\(aq, \(aqHighlightLevels\(aq, \(aqHighlightMode\(aq, \(aqHighlightOpacity\(aq, \(aqHighlightStrength\(aq, \(aqHistoryBrushSource\(aq, \(aqHistoryPrefs\(aq, \(aqHistoryStateSource\(aq, \(aqHistoryStates\(aq, \(aqHorizontal\(aq, \(aqHorizontalScale\(aq, \(aqHostVersion\(aq, \(aqHue\(aq, \(aqICCEngine\(aq, \(aqICCSetupName\(aq, \(aqID\(aq, \(aqIdle\(aq, \(aqImageBalance\(aq, \(aqImport\(aq, \(aqImpressionist\(aq, \(aqIn\(aq, \(aqInherits\(aq, \(aqInkColors\(aq, \(aqInks\(aq, \(aqInnerGlow\(aq, \(aqInnerGlowSource\(aq, \(aqInnerShadow\(aq, \(aqInput\(aq, \(aqInputBlackPoint\(aq, \(aqInputMapRange\(aq, \(aqInputRange\(aq, \(aqInputWhitePoint\(aq, \(aqIntensity\(aq, \(aqIntent\(aq, \(aqInterfaceBevelHighlight\(aq, \(aqInterfaceBevelShadow\(aq, \(aqInterfaceBlack\(aq, \(aqInterfaceBorder\(aq, \(aqInterfaceButtonDarkShadow\(aq, \(aqInterfaceButtonDownFill\(aq, \(aqInterfaceButtonUpFill\(aq, \(aqInterfaceColorBlue2\(aq, \(aqInterfaceColorBlue32\(aq, \(aqInterfaceColorGreen2\(aq, \(aqInterfaceColorGreen32\(aq, \(aqInterfaceColorRed2\(aq, \(aqInterfaceColorRed32\(aq, \(aqInterfaceIconFillActive\(aq, \(aqInterfaceIconFillDimmed\(aq, \(aqInterfaceIconFillSelected\(aq, \(aqInterfaceIconFrameActive\(aq, \(aqInterfaceIconFrameDimmed\(aq, \(aqInterfaceIconFrameSelected\(aq, \(aqInterfacePaletteFill\(aq, \(aqInterfaceRed\(aq, \(aqInterfaceWhite\(aq, \(aqInterfaceToolTipBackground\(aq, \(aqInterfaceToolTipText\(aq, \(aqInterfaceTransparencyForeground\(aq, \(aqInterfaceTransparencyBackground\(aq, \(aqInterlaceCreateType\(aq, \(aqInterlaceEliminateType\(aq, \(aqInterpolationMethod\(aq, \(aqInvert\(aq, \(aqInvertMask\(aq, \(aqInvertSource2\(aq, \(aqInvertTexture\(aq, \(aqIsDirty\(aq, \(aqItemIndex\(aq, \(aqJPEGQuality\(aq, \(aqKerning\(aq, \(aqKeywords\(aq, \(aqKind\(aq, \(aqLZWCompression\(aq, \(aqLabels\(aq, \(aqLandscape\(aq, \(aqLastTransform\(aq, \(aqLayerEffects\(aq, \(aqLayerFXVisible\(aq, \(aqLayer\(aq, \(aqLayerID\(aq, \(aqLayerName\(aq, \(aqLayers\(aq, \(aqLeading\(aq, \(aqLeft\(aq, \(aqLength\(aq, \(aqLens\(aq, \(aqLevel\(aq, \(aqLevels\(aq, \(aqLightDark\(aq, \(aqLightDirection\(aq, \(aqLightIntensity\(aq, \(aqLightPosition\(aq, \(aqLightSource\(aq, \(aqLightType\(aq, \(aqLightenGrout\(aq, \(aqLightness\(aq, \(aqLine\(aq, \(aqLinkedLayerIDs\(aq, \(aqLocalLightingAngle\(aq, \(aqLocalLightingAltitude\(aq, \(aqLocalRange\(aq, \(aqLocation\(aq, \(aqLog\(aq, \(aqLogarithmic\(aq, \(aqLowerCase\(aq, \(aqLuminance\(aq, \(aqLUTAnimation\(aq, \(aqMagenta\(aq, \(aqMakeVisible\(aq, \(aqManipulationFOV\(aq, \(aqMapBlack\(aq, \(aqMapping\(aq, \(aqMappingShape\(aq, \(aqMaterial\(aq, \(aqMatrix\(aq, \(aqMatteColor\(aq, \(aqMaximum\(aq, \(aqMaximumStates\(aq, \(aqMemoryUsagePercent\(aq, \(aqMerge\(aq, \(aqMerged\(aq, \(aqMessage\(aq, \(aqMethod\(aq, \(aqMezzotintType\(aq, \(aqMidpoint\(aq, \(aqMidtoneLevels\(aq, \(aqMinimum\(aq, \(aqMismatchCMYK\(aq, \(aqMismatchGray\(aq, \(aqMismatchRGB\(aq, \(aqMode\(aq, \(aqMonochromatic\(aq, \(aqMoveTo\(aq, \(aqName\(aq, \(aqNegative\(aq, \(aqNew\(aq, \(aqNoise\(aq, \(aqNonImageData\(aq, \(aqNonLinear\(aq, \(aqNull\(aq, \(aqNumLights\(aq, \(aqNumber\(aq, \(aqNumberOfCacheLevels\(aq, \(aqNumberOfCacheLevels64\(aq, \(aqNumberOfChannels\(aq, \(aqNumberOfChildren\(aq, \(aqNumberOfDocuments\(aq, \(aqNumberOfGenerators\(aq, \(aqNumberOfLayers\(aq, \(aqNumberOfPaths\(aq, \(aqNumberOfRipples\(aq, \(aqNumberOfSiblings\(aq, \(aqObjectName\(aq, \(aqOffset\(aq, \(aqOn\(aq, \(aqOpacity\(aq, \(aqOptimized\(aq, \(aqOrientation\(aq, \(aqOriginalHeader\(aq, \(aqOriginalTransmissionReference\(aq, \(aqOtherCursors\(aq, \(aqOuterGlow\(aq, \(aqOutput\(aq, \(aqOutputBlackPoint\(aq, \(aqOutputWhitePoint\(aq, \(aqOverprintColors\(aq, \(aqOverrideOpen\(aq, \(aqOverridePrinter\(aq, \(aqOverrideSave\(aq, \(aqPaintCursorKind\(aq, \(aqParentIndex\(aq, \(aqParentName\(aq, \(aqPNGFilter\(aq, \(aqPNGInterlaceType\(aq, \(aqPageFormat\(aq, \(aqPageNumber\(aq, \(aqPageSetup\(aq, \(aqPagePosition\(aq, \(aqPaintingCursors\(aq, \(aqPaintType\(aq, \(aqPalette\(aq, \(aqPaletteFile\(aq, \(aqPaperBrightness\(aq, \(aqPath\(aq, \(aqPathContents\(aq, \(aqPathName\(aq, \(aqPattern\(aq, \(aqPencilWidth\(aq, \(aqPerspectiveIndex\(aq, \(aqPhosphors\(aq, \(aqPickerID\(aq, \(aqPickerKind\(aq, \(aqPixelPaintSize\(aq, \(aqPlatform\(aq, \(aqPluginFolder\(aq, \(aqPluginPrefs\(aq, \(aqPoints\(aq, \(aqPosition\(aq, \(aqPosterization\(aq, \(aqPostScriptColor\(aq, \(aqPredefinedColors\(aq, \(aqPreferBuiltin\(aq, \(aqPreserveAdditional\(aq, \(aqPreserveLuminosity\(aq, \(aqPreserveTransparency\(aq, \(aqPressure\(aq, \(aqPreferences\(aq, \(aqPreview\(aq, \(aqPreviewCMYK\(aq, \(aqPreviewFullSize\(aq, \(aqPreviewIcon\(aq, \(aqPreviewMacThumbnail\(aq, \(aqPreviewWinThumbnail\(aq, \(aqPreviewsQuery\(aq, \(aqPrintSettings\(aq, \(aqProfileSetup\(aq, \(aqProvinceState\(aq, \(aqQuality\(aq, \(aqExtendedQuality\(aq, \(aqQuickMask\(aq, \(aqRGBSetup\(aq, \(aqRadius\(aq, \(aqRandomSeed\(aq, \(aqRatio\(aq, \(aqRecentFiles\(aq, \(aqRed\(aq, \(aqRedBlackPoint\(aq, \(aqRedFloat\(aq, \(aqRedGamma\(aq, \(aqRedWhitePoint\(aq, \(aqRedX\(aq, \(aqRedY\(aq, \(aqRegistrationMarks\(aq, \(aqRelative\(aq, \(aqRelief\(aq, \(aqRenderFidelity\(aq, \(aqResample\(aq, \(aqResizeWindowsOnZoom\(aq, \(aqResolution\(aq, \(aqResourceID\(aq, \(aqResponse\(aq, \(aqRetainHeader\(aq, \(aqReverse\(aq, \(aqRight\(aq, \(aqRippleMagnitude\(aq, \(aqRippleSize\(aq, \(aqRotate\(aq, \(aqRoundness\(aq, \(aqRulerOriginH\(aq, \(aqRulerOriginV\(aq, \(aqRulerUnits\(aq, \(aqSaturation\(aq, \(aqSaveAndClose\(aq, \(aqSaveComposite\(aq, \(aqSavePaletteLocations\(aq, \(aqSavePaths\(aq, \(aqSavePyramids\(aq, \(aqSaving\(aq, \(aqScale\(aq, \(aqScaleHorizontal\(aq, \(aqScaleVertical\(aq, \(aqScaling\(aq, \(aqScans\(aq, \(aqScratchDisks\(aq, \(aqScreenFile\(aq, \(aqScreenType\(aq, \(aqShadingIntensity\(aq, \(aqShadingNoise\(aq, \(aqShadingShape\(aq, \(aqContourType\(aq, \(aqSerialString\(aq, \(aqSeparations\(aq, \(aqShadowColor\(aq, \(aqShadowLevels\(aq, \(aqShadowMode\(aq, \(aqShadowOpacity\(aq, \(aqShape\(aq, \(aqSharpness\(aq, \(aqShearEd\(aq, \(aqShearPoints\(aq, \(aqShearSt\(aq, \(aqShiftKey\(aq, \(aqShiftKeyToolSwitch\(aq, \(aqShortNames\(aq, \(aqShowEnglishFontNames\(aq, \(aqShowToolTips\(aq, \(aqShowTransparency\(aq, \(aqSizeKey\(aq, \(aqSkew\(aq, \(aqSmartBlurMode\(aq, \(aqSmartBlurQuality\(aq, \(aqSmooth\(aq, \(aqSmoothness\(aq, \(aqSnapshotInitial\(aq, \(aqSoftClip\(aq, \(aqSoftness\(aq, \(aqSmallFontType\(aq, \(aqOldSmallFontType\(aq, \(aqSolidFill\(aq, \(aqSource\(aq, \(aqSource2\(aq, \(aqSourceMode\(aq, \(aqSpacing\(aq, \(aqSpecialInstructions\(aq, \(aqSpherizeMode\(aq, \(aqSpot\(aq, \(aqSprayRadius\(aq, \(aqSquareSize\(aq, \(aqSrcBlackMax\(aq, \(aqSrcBlackMin\(aq, \(aqSrcWhiteMax\(aq, \(aqSrcWhiteMin\(aq, \(aqStartArrowhead\(aq, \(aqState\(aq, \(aqStrength\(aq, \(aqStrengthRatio\(aq, \(aqStrength_PLUGIN\(aq, \(aqStrokeDetail\(aq, \(aqStrokeDirection\(aq, \(aqStrokeLength\(aq, \(aqStrokePressure\(aq, \(aqStrokeSize\(aq, \(aqStrokeWidth\(aq, \(aqStyle\(aq, \(aqStyles\(aq, \(aqStylusIsPressure\(aq, \(aqStylusIsColor\(aq, \(aqStylusIsOpacity\(aq, \(aqStylusIsSize\(aq, \(aqSubPathList\(aq, \(aqSupplementalCategories\(aq, \(aqSystemInfo\(aq, \(aqSystemPalette\(aq, \(aqTargetPath\(aq, \(aqTargetPathIndex\(aq, \(aqText\(aq, \(aqTextClickPoint\(aq, \(aqTextData\(aq, \(aqTextStyle\(aq, \(aqTextStyleRange\(aq, \(aqTexture\(aq, \(aqTextureFile\(aq, \(aqTextureType\(aq, \(aqThreshold\(aq, \(aqTileNumber\(aq, \(aqTileOffset\(aq, \(aqTileSize\(aq, \(aqTitle\(aq, \(aqTo\(aq, \(aqToBuiltin\(aq, \(aqToLinked\(aq, \(aqToMode\(aq, \(aqToggleOthers\(aq, \(aqTolerance\(aq, \(aqTop\(aq, \(aqTotalLimit\(aq, \(aqTracking\(aq, \(aqTransferSpec\(aq, \(aqTransparencyGrid\(aq, \(aqTransferFunction\(aq, \(aqTransparency\(aq, \(aqTransparencyGridColors\(aq, \(aqTransparencyPrefs\(aq, \(aqTransparentIndex\(aq, \(aqTransparentWhites\(aq, \(aqTwist\(aq, \(aqType\(aq, \(aqUCA\(aq, \(aqUnitsPrefs\(aq, \(aqURL\(aq, \(aqUndefinedArea\(aq, \(aqUnderline\(aq, \(aqUntitled\(aq, \(aqUpperY\(aq, \(aqUrgency\(aq, \(aqUseAccurateScreens\(aq, \(aqUseAdditionalPlugins\(aq, \(aqUseCacheForHistograms\(aq, \(aqUseCurves\(aq, \(aqUseDefault\(aq, \(aqUseGlobalAngle\(aq, \(aqUseICCProfile\(aq, \(aqUseMask\(aq, \(aqUserMaskEnabled\(aq, \(aqUserMaskLinked\(aq, \(aqLinkEnable\(aq, \(aqUsing\(aq, \(aqValue\(aq, \(aqVariance\(aq, \(aqVector0\(aq, \(aqVector1\(aq, \(aqVectorColor\(aq, \(aqVersionFix\(aq, \(aqVersionMajor\(aq, \(aqVersionMinor\(aq, \(aqVertical\(aq, \(aqVerticalScale\(aq, \(aqVideoAlpha\(aq, \(aqVisible\(aq, \(aqWatchSuspension\(aq, \(aqWatermark\(aq, \(aqWaveType\(aq, \(aqWavelengthMax\(aq, \(aqWavelengthMin\(aq, \(aqWebdavPrefs\(aq, \(aqWetEdges\(aq, \(aqWhat\(aq, \(aqWhiteClip\(aq, \(aqWhiteIntensity\(aq, \(aqWhiteIsHigh\(aq, \(aqWhiteLevel\(aq, \(aqWhitePoint\(aq, \(aqWholePath\(aq, \(aqWidth\(aq, \(aqWindMethod\(aq, \(aqWith\(aq, \(aqWorkPath\(aq, \(aqWorkPathIndex\(aq, \(aqX\(aq, \(aqY\(aq, \(aqYellow\(aq, \(aqZigZagType\(aq, \(aqLegacySerialString\(aq, \(aqcomp\(aq] .UNINDENT .INDENT 7.0 .TP .B _member_type_ alias of \fBbytes\fP .UNINDENT .INDENT 7.0 .TP .B _new_member_(**kwargs) Create and return a new object. See help(type) for accurate signature. .UNINDENT .INDENT 7.0 .TP .B _unhashable_values_ = [] .UNINDENT .INDENT 7.0 .TP .B _use_args_ = True .UNINDENT .INDENT 7.0 .TP .B _value2member_map_ = {b\(aqA \(aq: Key.A, b\(aqAChn\(aq: Key.AlphaChannelOptions, b\(aqAcrS\(aq: Key.UseAccurateScreens, b\(aqAdPl\(aq: Key.UseAdditionalPlugins, b\(aqAdjs\(aq: Key.Adjustment, b\(aqAlTl\(aq: Key.AllToolOptions, b\(aqAlgd\(aq: Key.Aligned, b\(aqAlgn\(aq: Key.Alignment, b\(aqAlis\(aq: Key._3DAntiAlias, b\(aqAll \(aq: Key.AllPS, b\(aqAllE\(aq: Key.AllExcept, b\(aqAlpC\(aq: Key.AlphaChannels, b\(aqAmMn\(aq: Key.AmplitudeMin, b\(aqAmMx\(aq: Key.AmplitudeMax, b\(aqAmbB\(aq: Key.AmbientBrightness, b\(aqAmbC\(aq: Key.AmbientColor, b\(aqAmnt\(aq: Key.Amount, b\(aqAnch\(aq: Key.Anchor, b\(aqAng1\(aq: Key.Angle1, b\(aqAng2\(aq: Key.Angle2, b\(aqAng3\(aq: Key.Angle3, b\(aqAng4\(aq: Key.Angle4, b\(aqAngl\(aq: Key.Angle, b\(aqAntA\(aq: Key.AntiAlias, b\(aqAply\(aq: Key.Apply, b\(aqAppe\(aq: Key.Append, b\(aqAr \(aq: Key.Area, b\(aqArrw\(aq: Key.Arrowhead, b\(aqAs \(aq: Key.As, b\(aqAssC\(aq: Key.AssumedCMYK, b\(aqAssG\(aq: Key.AssumedGray, b\(aqAssR\(aq: Key.AssumedRGB, b\(aqAsst\(aq: Key.AssetBin, b\(aqAt \(aq: Key.At, b\(aqAtKr\(aq: Key.AutoKern, b\(aqAtUp\(aq: Key.AutoUpdate, b\(aqAtrs\(aq: Key.AutoErase, b\(aqAuCo\(aq: Key.AutoContrast, b\(aqAuto\(aq: Key.Auto, b\(aqAxis\(aq: Key.Axis, b\(aqB \(aq: Key.B, b\(aqBckC\(aq: Key.BackgroundColor, b\(aqBckL\(aq: Key.BackgroundLevel, b\(aqBckg\(aq: Key.Background, b\(aqBgNH\(aq: Key.BigNudgeH, b\(aqBgNV\(aq: Key.BigNudgeV, b\(aqBgnR\(aq: Key.BeginRamp, b\(aqBgnS\(aq: Key.BeginSustain, b\(aqBk \(aq: Key.Book, b\(aqBl \(aq: Key.Blue, b\(aqBlBl\(aq: Key.BlueBlackPoint, b\(aqBlGm\(aq: Key.BlueGamma, b\(aqBlWh\(aq: Key.BlueWhitePoint, b\(aqBlX \(aq: Key.BlueX, b\(aqBlY \(aq: Key.BlueY, b\(aqBlcC\(aq: Key.BlackClip, b\(aqBlcG\(aq: Key.BlackGenerationCurve, b\(aqBlcI\(aq: Key.BlackIntensity, b\(aqBlcL\(aq: Key.BlackLevel, b\(aqBlck\(aq: Key.Black, b\(aqBlcn\(aq: Key.BlackGeneration, b\(aqBld \(aq: Key.Bleed, b\(aqBlnc\(aq: Key.Balance, b\(aqBlnd\(aq: Key.BlendRange, b\(aqBlrM\(aq: Key.BlurMethod, b\(aqBlrQ\(aq: Key.BlurQuality, b\(aqBmpA\(aq: Key.BumpAmplitude, b\(aqBmpC\(aq: Key.BumpChannel, b\(aqBpWh\(aq: Key.BeepWhenDone, b\(aqBrdT\(aq: Key.BorderThickness, b\(aqBrgh\(aq: Key.Brightness, b\(aqBrsD\(aq: Key.BrushDetail, b\(aqBrsS\(aq: Key.BrushSize, b\(aqBrsT\(aq: Key.BrushType, b\(aqBrsh\(aq: Key.Brushes, b\(aqBsln\(aq: Key.BaselineShift, b\(aqBtDp\(aq: Key.BitDepth, b\(aqBtom\(aq: Key.Bottom, b\(aqBwd \(aq: Key.Backward, b\(aqBy \(aq: Key.By, b\(aqBylT\(aq: Key.BylineTitle, b\(aqByln\(aq: Key.Byline, b\(aqBytO\(aq: Key.ByteOrder, b\(aqCMYS\(aq: Key.CMYKSetup, b\(aqCchP\(aq: Key.CachePrefs, b\(aqCfov\(aq: Key.ConstructionFOV, b\(aqChAm\(aq: Key.CharcoalAmount, b\(aqChFX\(aq: Key.ChromeFX, b\(aqChMx\(aq: Key.ChannelMatrix, b\(aqChlA\(aq: Key.ChalkArea, b\(aqChnI\(aq: Key.ChannelsInterleaved, b\(aqChnN\(aq: Key.ChannelName, b\(aqChnl\(aq: Key.Channel, b\(aqChns\(aq: Key.Channels, b\(aqChrA\(aq: Key.CharcoalArea, b\(aqCity\(aq: Key.City, b\(aqCkmt\(aq: Key.ChokeMatte, b\(aqClMg\(aq: Key.ColorManagement, b\(aqClPt\(aq: Key.ClippingPath, b\(aqClSz\(aq: Key.CellSize, b\(aqClbr\(aq: Key.CalibrationBars, b\(aqClcl\(aq: Key.Calculation, b\(aqClmW\(aq: Key.ColumnWidth, b\(aqClnS\(aq: Key.CloneSource, b\(aqClpF\(aq: Key.ClippingPathFlatness, b\(aqClpI\(aq: Key.ClippingPathIndex, b\(aqClpP\(aq: Key.ClippingPathEPS, b\(aqClpg\(aq: Key.ClippingPathInfo, b\(aqClr \(aq: Key.Color, b\(aqClrA\(aq: Key.ClearAmount, b\(aqClrC\(aq: Key.ColorCorrection, b\(aqClrI\(aq: Key.ColorIndicates, b\(aqClrL\(aq: Key.ColorsList, b\(aqClrS\(aq: Key.ColorSpace, b\(aqClrT\(aq: Key.ColorTable, b\(aqClrh\(aq: Key.ColorChannels, b\(aqClrr\(aq: Key.ColorPickerPrefs, b\(aqClrs\(aq: Key.Colors, b\(aqClrz\(aq: Key.Colorize, b\(aqClsp\(aq: Key.ClosedSubpath, b\(aqCmdK\(aq: Key.CommandKey, b\(aqCmpn\(aq: Key.Compensation, b\(aqCmpr\(aq: Key.Compression, b\(aqCncv\(aq: Key.Concavity, b\(aqCndt\(aq: Key.Condition, b\(aqCnsP\(aq: Key.ConstrainProportions, b\(aqCnst\(aq: Key.Constant, b\(aqCnt \(aq: Key.Count, b\(aqCntC\(aq: Key.CenterCropMarks, b\(aqCntN\(aq: Key.CountryName, b\(aqCntg\(aq: Key.Contiguous, b\(aqCntn\(aq: Key.Continue, b\(aqCntr\(aq: Key.Center, b\(aqCnty\(aq: Key.Continuity, b\(aqCnvr\(aq: Key.Convert, b\(aqCprN\(aq: Key.CopyrightNotice, b\(aqCptW\(aq: Key.CaptionWriter, b\(aqCptn\(aq: Key.Caption, b\(aqCpy \(aq: Key.Copy, b\(aqCpyr\(aq: Key.Copyright, b\(aqCrcB\(aq: Key.CrackBrightness, b\(aqCrcD\(aq: Key.CrackDepth, b\(aqCrcS\(aq: Key.CrackSpacing, b\(aqCrdt\(aq: Key.Credit, b\(aqCrnC\(aq: Key.CornerCropMarks, b\(aqCrnH\(aq: Key.CurrentHistoryState, b\(aqCrnL\(aq: Key.CurrentLight, b\(aqCrnT\(aq: Key.CurrentToolOptions, b\(aqCrnt\(aq: Key.Current, b\(aqCrss\(aq: Key.Crossover, b\(aqCrv \(aq: Key.Curve, b\(aqCrvF\(aq: Key.CurveFile, b\(aqCstF\(aq: Key.CustomForced, b\(aqCstM\(aq: Key.CustomMatte, b\(aqCstP\(aq: Key.CustomPalette, b\(aqCstm\(aq: Key.Custom, b\(aqCtgr\(aq: Key.Category, b\(aqCyn \(aq: Key.Cyan, b\(aqDCS \(aq: Key.DCS, b\(aqDPXf\(aq: Key.DPXFormat, b\(aqDffD\(aq: Key.DiffusionDither, b\(aqDfnt\(aq: Key.Definition, b\(aqDmtr\(aq: Key.Diameter, b\(aqDnmC\(aq: Key.DynamicColorSliders, b\(aqDnst\(aq: Key.Density, b\(aqDocI\(aq: Key.DocumentID, b\(aqDplc\(aq: Key.Duplicate, b\(aqDpth\(aq: Key.Depth, b\(aqDrSh\(aq: Key.DropShadow, b\(aqDrcB\(aq: Key.DirectionBalance, b\(aqDrct\(aq: Key.Direction, b\(aqDrkI\(aq: Key.DarkIntensity, b\(aqDrkn\(aq: Key.Darkness, b\(aqDspF\(aq: Key.DisplaceFile, b\(aqDspM\(aq: Key.DisplacementMap, b\(aqDspP\(aq: Key.DisplayPrefs, b\(aqDstB\(aq: Key.DestBlackMin, b\(aqDstM\(aq: Key.DestinationMode, b\(aqDstW\(aq: Key.DestWhiteMin, b\(aqDstl\(aq: Key.DestBlackMax, b\(aqDstn\(aq: Key.Distance, b\(aqDstr\(aq: Key.Distortion, b\(aqDstt\(aq: Key.DestWhiteMax, b\(aqDt \(aq: Key.Datum, b\(aqDtCr\(aq: Key.DateCreated, b\(aqDtGC\(aq: Key.DotGainCurves, b\(aqDtGn\(aq: Key.DotGain, b\(aqDthA\(aq: Key.DitherAmount, b\(aqDthp\(aq: Key.DitherPreserve, b\(aqDthq\(aq: Key.DitherQuality, b\(aqDthr\(aq: Key.Dither, b\(aqDtl \(aq: Key.Detail, b\(aqEGst\(aq: Key.EnableGestures, b\(aqEQlt\(aq: Key.ExtendedQuality, b\(aqEdg \(aq: Key.Edge, b\(aqEdgB\(aq: Key.EdgeBrightness, b\(aqEdgF\(aq: Key.EdgeFidelity, b\(aqEdgI\(aq: Key.EdgeIntensity, b\(aqEdgS\(aq: Key.EdgeSimplicity, b\(aqEdgT\(aq: Key.EdgeThickness, b\(aqEdgW\(aq: Key.EdgeWidth, b\(aqEffc\(aq: Key.Effect, b\(aqEmbC\(aq: Key.EmbedCMYK, b\(aqEmbG\(aq: Key.EmbedGray, b\(aqEmbL\(aq: Key.EmbedLab, b\(aqEmbP\(aq: Key.EmbedProfiles, b\(aqEmbR\(aq: Key.EmbedRGB, b\(aqEmlD\(aq: Key.EmulsionDown, b\(aqEncd\(aq: Key.Encoding, b\(aqEnd \(aq: Key.End, b\(aqEndA\(aq: Key.EndArrowhead, b\(aqEndR\(aq: Key.EndRamp, b\(aqEndS\(aq: Key.EndSustain, b\(aqEngn\(aq: Key.Engine, b\(aqErsK\(aq: Key.EraserKind, b\(aqErsT\(aq: Key.EraseToHistory, b\(aqExcP\(aq: Key.ExactPoints, b\(aqExpC\(aq: Key.ExportClipboard, b\(aqExpr\(aq: Key.Export, b\(aqExps\(aq: Key.Exposure, b\(aqExtD\(aq: Key.ExtrudeDepth, b\(aqExtF\(aq: Key.ExtrudeSolidFace, b\(aqExtM\(aq: Key.ExtrudeMaskIncomplete, b\(aqExtQ\(aq: Key.ExtensionsQuery, b\(aqExtR\(aq: Key.ExtrudeRandom, b\(aqExtS\(aq: Key.ExtrudeSize, b\(aqExtT\(aq: Key.ExtrudeType, b\(aqExtd\(aq: Key.Extend, b\(aqExtn\(aq: Key.Extension, b\(aqEyDr\(aq: Key.EyeDropperSample, b\(aqFTcs\(aq: Key.FreeTransformCenterState, b\(aqFbrL\(aq: Key.FiberLength, b\(aqFcs \(aq: Key.Focus, b\(aqFdT \(aq: Key.FadeTo, b\(aqFdtS\(aq: Key.FadeoutSteps, b\(aqFilR\(aq: Key.FileReference, b\(aqFile\(aq: Key.File, b\(aqFl \(aq: Key.Fill, b\(aqFlCl\(aq: Key.FillColor, b\(aqFlCr\(aq: Key.FileCreator, b\(aqFlIn\(aq: Key.FileInfo, b\(aqFlNt\(aq: Key.FillNeutral, b\(aqFlOf\(aq: Key.Falloff, b\(aqFlPd\(aq: Key.FilterLayerPersistentData, b\(aqFlRs\(aq: Key.FilterLayerRandomSeed, b\(aqFlSP\(aq: Key.FileSavePrefs, b\(aqFlTy\(aq: Key.FileType, b\(aqFldr\(aq: Key.Folders, b\(aqFlpV\(aq: Key.FlipVertical, b\(aqFlrC\(aq: Key.FlareCenter, b\(aqFltn\(aq: Key.Flatness, b\(aqFltt\(aq: Key.Flatten, b\(aqFmt \(aq: Key.Format, b\(aqFncK\(aq: Key.FunctionKey, b\(aqFngr\(aq: Key.Fingerpainting, b\(aqFntD\(aq: Key.FontDesignAxes, b\(aqFntN\(aq: Key.FontName, b\(aqFntS\(aq: Key.FontStyleName, b\(aqFntT\(aq: Key.FontTechnology, b\(aqFntV\(aq: Key.FontDesignAxesVectors, b\(aqFrFX\(aq: Key.FrameFX, b\(aqFrcC\(aq: Key.ForcedColors, b\(aqFrgC\(aq: Key.ForegroundColor, b\(aqFrgL\(aq: Key.ForegroundLevel, b\(aqFrmB\(aq: Key.FromBuiltin, b\(aqFrmM\(aq: Key.FromMode, b\(aqFrmW\(aq: Key.FrameWidth, b\(aqFrom\(aq: Key.From, b\(aqFrqn\(aq: Key.Frequency, b\(aqFthr\(aq: Key.Feather, b\(aqFwd \(aq: Key.Forward, b\(aqFxCm\(aq: Key.FPXCompress, b\(aqFxQl\(aq: Key.FPXQuality, b\(aqFxSz\(aq: Key.FPXSize, b\(aqFxVw\(aq: Key.FPXView, b\(aqFzns\(aq: Key.Fuzziness, b\(aqGCR \(aq: Key.GCR, b\(aqGFBM\(aq: Key.GIFUseBestMatch, b\(aqGFCL\(aq: Key.GIFColorLimit, b\(aqGFCS\(aq: Key.GIFRequiredColorSpaceType, b\(aqGFEC\(aq: Key.GIFExportCaption, b\(aqGFIT\(aq: Key.GIFRowOrderType, b\(aqGFMI\(aq: Key.GIFMaskChannelIndex, b\(aqGFMV\(aq: Key.GIFMaskChannelInverted, b\(aqGFPF\(aq: Key.GIFPaletteFile, b\(aqGFPL\(aq: Key.GIFPaletteType, b\(aqGFPT\(aq: Key.GIFColorFileType, b\(aqGFTB\(aq: Key.GIFTransparentIndexBlue, b\(aqGFTC\(aq: Key.GIFTransparentColor, b\(aqGFTG\(aq: Key.GIFTransparentIndexGreen, b\(aqGFTR\(aq: Key.GIFTransparentIndexRed, b\(aqGdPr\(aq: Key.GuidesPrefs, b\(aqGdes\(aq: Key.Guides, b\(aqGdsC\(aq: Key.GuidesColor, b\(aqGdsS\(aq: Key.GuidesStyle, b\(aqGdss\(aq: Key.GuidesCustomColor, b\(aqGlos\(aq: Key.Gloss, b\(aqGlwA\(aq: Key.GlowAmount, b\(aqGlwT\(aq: Key.GlowTechnique, b\(aqGmm \(aq: Key.Gamma, b\(aqGmtW\(aq: Key.GamutWarning, b\(aqGnrP\(aq: Key.GeneralPrefs, b\(aqGrBh\(aq: Key.GrayBehavior, b\(aqGrSt\(aq: Key.GraySetup, b\(aqGrad\(aq: Key.Gradient, b\(aqGrdC\(aq: Key.GridColor, b\(aqGrdM\(aq: Key.GridMajor, b\(aqGrdS\(aq: Key.GridStyle, b\(aqGrdf\(aq: Key.GradientFill, b\(aqGrdn\(aq: Key.GridMinor, b\(aqGrds\(aq: Key.GridCustomColor, b\(aqGrdt\(aq: Key.GridUnits, b\(aqGrn \(aq: Key.Grain, b\(aqGrnB\(aq: Key.GreenBlackPoint, b\(aqGrnG\(aq: Key.GreenGamma, b\(aqGrnW\(aq: Key.GreenWhitePoint, b\(aqGrnX\(aq: Key.GreenX, b\(aqGrnY\(aq: Key.GreenY, b\(aqGrns\(aq: Key.Graininess, b\(aqGrnt\(aq: Key.GrainType, b\(aqGrtW\(aq: Key.GroutWidth, b\(aqGrup\(aq: Key.Group, b\(aqGrwS\(aq: Key.GrowSelection, b\(aqGry \(aq: Key.Gray, b\(aqGttW\(aq: Key.GutterWidth, b\(aqH \(aq: Key.Hue, b\(aqHCdH\(aq: Key.HasCmdHPreference, b\(aqHdln\(aq: Key.Headline, b\(aqHdr \(aq: Key.Header, b\(aqHghA\(aq: Key.HighlightArea, b\(aqHghL\(aq: Key.HighlightLevels, b\(aqHghS\(aq: Key.HighlightStrength, b\(aqHght\(aq: Key.Height, b\(aqHlSz\(aq: Key.HalftoneSize, b\(aqHlfF\(aq: Key.HalftoneFile, b\(aqHlfS\(aq: Key.HalftoneScreen, b\(aqHlfp\(aq: Key.HalftoneSpec, b\(aqHrdn\(aq: Key.Hardness, b\(aqHrzS\(aq: Key.HorizontalScale, b\(aqHrzn\(aq: Key.Horizontal, b\(aqHsSS\(aq: Key.HistoryStateSource, b\(aqHsSt\(aq: Key.HistoryStates, b\(aqHstB\(aq: Key.HistoryBrushSource, b\(aqHstN\(aq: Key.HostName, b\(aqHstP\(aq: Key.HistoryPrefs, b\(aqHstV\(aq: Key.HostVersion, b\(aqICBH\(aq: Key.InterfaceColorBlue32, b\(aqICBL\(aq: Key.InterfaceColorBlue2, b\(aqICCE\(aq: Key.ICCEngine, b\(aqICCt\(aq: Key.ICCSetupName, b\(aqICGH\(aq: Key.InterfaceColorGreen32, b\(aqICGL\(aq: Key.InterfaceColorGreen2, b\(aqICRH\(aq: Key.InterfaceColorRed32, b\(aqICRL\(aq: Key.InterfaceColorRed2, b\(aqITBg\(aq: Key.InterfaceTransparencyBackground, b\(aqITFg\(aq: Key.InterfaceTransparencyForeground, b\(aqITTT\(aq: Key.InterfaceToolTipText, b\(aqIdle\(aq: Key.Idle, b\(aqIdnt\(aq: Key.ID, b\(aqImgB\(aq: Key.ImageBalance, b\(aqImpr\(aq: Key.Import, b\(aqImps\(aq: Key.Impressionist, b\(aqIn \(aq: Key.In, b\(aqInBF\(aq: Key.InterfaceButtonUpFill, b\(aqInkC\(aq: Key.InkColors, b\(aqInks\(aq: Key.Inks, b\(aqInmr\(aq: Key.InputMapRange, b\(aqInpr\(aq: Key.InputRange, b\(aqInpt\(aq: Key.Input, b\(aqIntB\(aq: Key.InterfaceBlack, b\(aqIntC\(aq: Key.InterlaceCreateType, b\(aqIntE\(aq: Key.InterlaceEliminateType, b\(aqIntF\(aq: Key.InterfaceIconFillDimmed, b\(aqIntH\(aq: Key.InterfaceBevelHighlight, b\(aqIntI\(aq: Key.InterfaceIconFillActive, b\(aqIntM\(aq: Key.InterpolationMethod, b\(aqIntP\(aq: Key.InterfacePaletteFill, b\(aqIntR\(aq: Key.InterfaceRed, b\(aqIntS\(aq: Key.InterfaceIconFrameSelected, b\(aqIntT\(aq: Key.InterfaceToolTipBackground, b\(aqIntW\(aq: Key.InterfaceWhite, b\(aqIntc\(aq: Key.InterfaceIconFillSelected, b\(aqIntd\(aq: Key.InterfaceBorder, b\(aqInte\(aq: Key.Intent, b\(aqIntk\(aq: Key.InterfaceButtonDarkShadow, b\(aqIntm\(aq: Key.InterfaceIconFrameActive, b\(aqIntn\(aq: Key.Intensity, b\(aqIntr\(aq: Key.InterfaceIconFrameDimmed, b\(aqIntt\(aq: Key.InterfaceButtonDownFill, b\(aqIntv\(aq: Key.InterfaceBevelShadow, b\(aqInvM\(aq: Key.InvertMask, b\(aqInvS\(aq: Key.InvertSource2, b\(aqInvT\(aq: Key.InvertTexture, b\(aqInvr\(aq: Key.Invert, b\(aqIrGl\(aq: Key.InnerGlow, b\(aqIrSh\(aq: Key.InnerShadow, b\(aqIsDr\(aq: Key.IsDirty, b\(aqItmI\(aq: Key.ItemIndex, b\(aqJPEQ\(aq: Key.JPEGQuality, b\(aqKnd \(aq: Key.Kind, b\(aqKrng\(aq: Key.Kerning, b\(aqKywd\(aq: Key.Keywords, b\(aqLTnm\(aq: Key.LUTAnimation, b\(aqLZWC\(aq: Key.LZWCompression, b\(aqLald\(aq: Key.LocalLightingAltitude, b\(aqLbls\(aq: Key.Labels, b\(aqLclR\(aq: Key.LocalRange, b\(aqLctn\(aq: Key.Location, b\(aqLdng\(aq: Key.Leading, b\(aqLeft\(aq: Key.Left, b\(aqLefx\(aq: Key.LayerEffects, b\(aqLgDr\(aq: Key.LightDark, b\(aqLghD\(aq: Key.LightDirection, b\(aqLghG\(aq: Key.LightenGrout, b\(aqLghI\(aq: Key.LightIntensity, b\(aqLghP\(aq: Key.LightPosition, b\(aqLghS\(aq: Key.LightSource, b\(aqLghT\(aq: Key.LightType, b\(aqLght\(aq: Key.Lightness, b\(aqLine\(aq: Key.Line, b\(aqLmnc\(aq: Key.Luminance, b\(aqLnds\(aq: Key.Landscape, b\(aqLngt\(aq: Key.Length, b\(aqLnkL\(aq: Key.LinkedLayerIDs, b\(aqLns \(aq: Key.Lens, b\(aqLog \(aq: Key.Log, b\(aqLstT\(aq: Key.LastTransform, b\(aqLvl \(aq: Key.Level, b\(aqLvls\(aq: Key.Levels, b\(aqLwCs\(aq: Key.LowerCase, b\(aqLyr \(aq: Key.Layer, b\(aqLyrI\(aq: Key.LayerID, b\(aqLyrN\(aq: Key.LayerName, b\(aqLyrs\(aq: Key.Layers, b\(aqMd \(aq: Key.Mode, b\(aqMdpn\(aq: Key.Midpoint, b\(aqMdtL\(aq: Key.MidtoneLevels, b\(aqMfov\(aq: Key.ManipulationFOV, b\(aqMgnt\(aq: Key.Magenta, b\(aqMkVs\(aq: Key.MakeVisible, b\(aqMmrU\(aq: Key.MemoryUsagePercent, b\(aqMnch\(aq: Key.Monochromatic, b\(aqMnm \(aq: Key.Minimum, b\(aqMpBl\(aq: Key.MapBlack, b\(aqMpgS\(aq: Key.MappingShape, b\(aqMpng\(aq: Key.Mapping, b\(aqMrgd\(aq: Key.Merged, b\(aqMrge\(aq: Key.Merge, b\(aqMsge\(aq: Key.Message, b\(aqMsmC\(aq: Key.MismatchCMYK, b\(aqMsmG\(aq: Key.MismatchGray, b\(aqMsmR\(aq: Key.MismatchRGB, b\(aqMthd\(aq: Key.Method, b\(aqMtrl\(aq: Key.Material, b\(aqMtrx\(aq: Key.Matrix, b\(aqMttC\(aq: Key.MatteColor, b\(aqMvT \(aq: Key.MoveTo, b\(aqMxm \(aq: Key.Maximum, b\(aqMxmS\(aq: Key.MaximumStates, b\(aqMztT\(aq: Key.MezzotintType, b\(aqNC64\(aq: Key.NumberOfCacheLevels64, b\(aqNCch\(aq: Key.NumberOfCacheLevels, b\(aqNgtv\(aq: Key.Negative, b\(aqNm \(aq: Key.Name, b\(aqNm L\(aq: Key.NumLights, b\(aqNmbC\(aq: Key.NumberOfChildren, b\(aqNmbD\(aq: Key.NumberOfDocuments, b\(aqNmbG\(aq: Key.NumberOfGenerators, b\(aqNmbL\(aq: Key.NumberOfLayers, b\(aqNmbO\(aq: Key.NumberOfChannels, b\(aqNmbP\(aq: Key.NumberOfPaths, b\(aqNmbR\(aq: Key.NumberOfRipples, b\(aqNmbS\(aq: Key.NumberOfSiblings, b\(aqNmbr\(aq: Key.Number, b\(aqNnIm\(aq: Key.NonImageData, b\(aqNnLn\(aq: Key.NonLinear, b\(aqNose\(aq: Key.Noise, b\(aqNw \(aq: Key.New, b\(aqObjN\(aq: Key.ObjectName, b\(aqObrP\(aq: Key.OverridePrinter, b\(aqOfst\(aq: Key.Offset, b\(aqOn \(aq: Key.On, b\(aqOpct\(aq: Key.Opacity, b\(aqOptm\(aq: Key.Optimized, b\(aqOrGl\(aq: Key.OuterGlow, b\(aqOrgH\(aq: Key.OriginalHeader, b\(aqOrgT\(aq: Key.OriginalTransmissionReference, b\(aqOrnt\(aq: Key.Orientation, b\(aqOthC\(aq: Key.OtherCursors, b\(aqOtpt\(aq: Key.Output, b\(aqOvrC\(aq: Key.OverprintColors, b\(aqOvrO\(aq: Key.OverrideOpen, b\(aqOvrd\(aq: Key.OverrideSave, b\(aqPGIT\(aq: Key.PNGInterlaceType, b\(aqPMpf\(aq: Key.PageFormat, b\(aqPMps\(aq: Key.PrintSettings, b\(aqPNGf\(aq: Key.PNGFilter, b\(aqPPSz\(aq: Key.PixelPaintSize, b\(aqPath\(aq: Key.Path, b\(aqPckI\(aq: Key.PickerID, b\(aqPckr\(aq: Key.PickerKind, b\(aqPgNm\(aq: Key.PageNumber, b\(aqPgPs\(aq: Key.PagePosition, b\(aqPgSt\(aq: Key.PageSetup, b\(aqPhsp\(aq: Key.Phosphors, b\(aqPlgF\(aq: Key.PluginFolder, b\(aqPlgP\(aq: Key.PluginPrefs, b\(aqPlt \(aq: Key.Palette, b\(aqPltF\(aq: Key.PaletteFile, b\(aqPltL\(aq: Key.SavePaletteLocations, b\(aqPltf\(aq: Key.Platform, b\(aqPnCK\(aq: Key.PaintCursorKind, b\(aqPncl\(aq: Key.PencilWidth, b\(aqPntC\(aq: Key.PaintingCursors, b\(aqPntT\(aq: Key.PaintType, b\(aqPprB\(aq: Key.PaperBrightness, b\(aqPrIn\(aq: Key.ParentIndex, b\(aqPrNm\(aq: Key.ParentName, b\(aqPrdC\(aq: Key.PredefinedColors, b\(aqPrfB\(aq: Key.PreferBuiltin, b\(aqPrfS\(aq: Key.ProfileSetup, b\(aqPrfr\(aq: Key.Preferences, b\(aqPrs \(aq: Key.Pressure, b\(aqPrsA\(aq: Key.PreserveAdditional, b\(aqPrsL\(aq: Key.PreserveLuminosity, b\(aqPrsT\(aq: Key.PreserveTransparency, b\(aqPrsp\(aq: Key.PerspectiveIndex, b\(aqPrvF\(aq: Key.PreviewFullSize, b\(aqPrvI\(aq: Key.PreviewIcon, b\(aqPrvK\(aq: Key.PreviewCMYK, b\(aqPrvM\(aq: Key.PreviewMacThumbnail, b\(aqPrvQ\(aq: Key.PreviewsQuery, b\(aqPrvS\(aq: Key.ProvinceState, b\(aqPrvW\(aq: Key.PreviewWinThumbnail, b\(aqPrvw\(aq: Key.Preview, b\(aqPstS\(aq: Key.PostScriptColor, b\(aqPstn\(aq: Key.Position, b\(aqPstr\(aq: Key.Posterization, b\(aqPthC\(aq: Key.PathContents, b\(aqPthN\(aq: Key.PathName, b\(aqPts \(aq: Key.Points, b\(aqPttn\(aq: Key.Pattern, b\(aqQlty\(aq: Key.Quality, b\(aqQucM\(aq: Key.QuickMask, b\(aqRGBS\(aq: Key.RGBSetup, b\(aqRWOZ\(aq: Key.ResizeWindowsOnZoom, b\(aqRcnf\(aq: Key.RecentFiles, b\(aqRd \(aq: Key.Red, b\(aqRdBl\(aq: Key.RedBlackPoint, b\(aqRdGm\(aq: Key.RedGamma, b\(aqRdWh\(aq: Key.RedWhitePoint, b\(aqRdX \(aq: Key.RedX, b\(aqRdY \(aq: Key.RedY, b\(aqRds \(aq: Key.Radius, b\(aqRfid\(aq: Key.RenderFidelity, b\(aqRght\(aq: Key.Right, b\(aqRgsM\(aq: Key.RegistrationMarks, b\(aqRlf \(aq: Key.Relief, b\(aqRlrH\(aq: Key.RulerOriginH, b\(aqRlrU\(aq: Key.RulerUnits, b\(aqRlrV\(aq: Key.RulerOriginV, b\(aqRltv\(aq: Key.Relative, b\(aqRndS\(aq: Key.RandomSeed, b\(aqRndn\(aq: Key.Roundness, b\(aqRplM\(aq: Key.RippleMagnitude, b\(aqRplS\(aq: Key.RippleSize, b\(aqRslt\(aq: Key.Resolution, b\(aqRsmp\(aq: Key.Resample, b\(aqRspn\(aq: Key.Response, b\(aqRsrI\(aq: Key.ResourceID, b\(aqRt \(aq: Key.Ratio, b\(aqRtnH\(aq: Key.RetainHeader, b\(aqRtt \(aq: Key.Rotate, b\(aqRvrs\(aq: Key.Reverse, b\(aqSDir\(aq: Key.StrokeDirection, b\(aqSbpL\(aq: Key.SubPathList, b\(aqScl \(aq: Key.Scale, b\(aqSclH\(aq: Key.ScaleHorizontal, b\(aqSclV\(aq: Key.ScaleVertical, b\(aqScln\(aq: Key.Scaling, b\(aqScns\(aq: Key.Scans, b\(aqScrD\(aq: Key.ScratchDisks, b\(aqScrF\(aq: Key.ScreenFile, b\(aqScrT\(aq: Key.ScreenType, b\(aqScrp\(aq: Key.FontScript, b\(aqSfCl\(aq: Key.SoftClip, b\(aqSftn\(aq: Key.Softness, b\(aqSfts\(aq: Key.SmallFontType, b\(aqSftt\(aq: Key.OldSmallFontType, b\(aqShKT\(aq: Key.ShiftKeyToolSwitch, b\(aqShTr\(aq: Key.ShowTransparency, b\(aqShdI\(aq: Key.ShadingIntensity, b\(aqShdL\(aq: Key.ShadowLevels, b\(aqShdN\(aq: Key.ShadingNoise, b\(aqShdS\(aq: Key.ShadingShape, b\(aqShfK\(aq: Key.ShiftKey, b\(aqShp \(aq: Key.Shape, b\(aqShpC\(aq: Key.ContourType, b\(aqShrE\(aq: Key.ShearEd, b\(aqShrN\(aq: Key.ShortNames, b\(aqShrP\(aq: Key.ShearPoints, b\(aqShrS\(aq: Key.ShearSt, b\(aqShrp\(aq: Key.Sharpness, b\(aqShwE\(aq: Key.ShowEnglishFontNames, b\(aqShwT\(aq: Key.ShowToolTips, b\(aqSkew\(aq: Key.Skew, b\(aqSmBM\(aq: Key.SmartBlurMode, b\(aqSmBQ\(aq: Key.SmartBlurQuality, b\(aqSmoo\(aq: Key.Smooth, b\(aqSmth\(aq: Key.Smoothness, b\(aqSnpI\(aq: Key.SnapshotInitial, b\(aqSoFi\(aq: Key.SolidFill, b\(aqSpcI\(aq: Key.SpecialInstructions, b\(aqSpcn\(aq: Key.Spacing, b\(aqSphM\(aq: Key.SpherizeMode, b\(aqSplC\(aq: Key.SupplementalCategories, b\(aqSpot\(aq: Key.Spot, b\(aqSprR\(aq: Key.SprayRadius, b\(aqSprt\(aq: Key.Separations, b\(aqSqrS\(aq: Key.SquareSize, b\(aqSrc2\(aq: Key.Source2, b\(aqSrcB\(aq: Key.SrcBlackMin, b\(aqSrcM\(aq: Key.SourceMode, b\(aqSrcW\(aq: Key.SrcWhiteMin, b\(aqSrce\(aq: Key.Source, b\(aqSrcl\(aq: Key.SrcBlackMax, b\(aqSrcm\(aq: Key.SrcWhiteMax, b\(aqSrlS\(aq: Key.SerialString, b\(aqSstI\(aq: Key.SystemInfo, b\(aqSstP\(aq: Key.SystemPalette, b\(aqStDt\(aq: Key.StrokeDetail, b\(aqStlC\(aq: Key.StylusIsColor, b\(aqStlO\(aq: Key.StylusIsOpacity, b\(aqStlP\(aq: Key.StylusIsPressure, b\(aqStlS\(aq: Key.StylusIsSize, b\(aqStrA\(aq: Key.StartArrowhead, b\(aqStrL\(aq: Key.StrokeLength, b\(aqStrP\(aq: Key.StrokePressure, b\(aqStrS\(aq: Key.StrokeSize, b\(aqStrW\(aq: Key.StrokeWidth, b\(aqStrg\(aq: Key.Strength_PLUGIN, b\(aqStrt\(aq: Key.Saturation, b\(aqStte\(aq: Key.State, b\(aqStyl\(aq: Key.Style, b\(aqStys\(aq: Key.Styles, b\(aqSvAn\(aq: Key.SaveAndClose, b\(aqSvCm\(aq: Key.SaveComposite, b\(aqSvPt\(aq: Key.SavePaths, b\(aqSvPy\(aq: Key.SavePyramids, b\(aqSvng\(aq: Key.Saving, b\(aqSwMC\(aq: Key.ShowMenuColors, b\(aqSz \(aq: Key.SizeKey, b\(aqT \(aq: Key.To, b\(aqTBl \(aq: Key.ToBuiltin, b\(aqTMd \(aq: Key.ToMode, b\(aqTglO\(aq: Key.ToggleOthers, b\(aqThsh\(aq: Key.Threshold, b\(aqTlNm\(aq: Key.TileNumber, b\(aqTlOf\(aq: Key.TileOffset, b\(aqTlSz\(aq: Key.TileSize, b\(aqTlrn\(aq: Key.Tolerance, b\(aqToLk\(aq: Key.ToLinked, b\(aqTop \(aq: Key.Top, b\(aqTrck\(aq: Key.Tracking, b\(aqTrgP\(aq: Key.TargetPathIndex, b\(aqTrgp\(aq: Key.TargetPath, b\(aqTrnC\(aq: Key.TransparencyGridColors, b\(aqTrnF\(aq: Key.TransferFunction, b\(aqTrnG\(aq: Key.TransparencyGrid, b\(aqTrnI\(aq: Key.TransparentIndex, b\(aqTrnP\(aq: Key.TransparencyPrefs, b\(aqTrnS\(aq: Key.TransferSpec, b\(aqTrnW\(aq: Key.TransparentWhites, b\(aqTrns\(aq: Key.Transparency, b\(aqTtl \(aq: Key.Title, b\(aqTtlL\(aq: Key.TotalLimit, b\(aqTwst\(aq: Key.Twist, b\(aqTxt \(aq: Key.Text, b\(aqTxtC\(aq: Key.TextClickPoint, b\(aqTxtD\(aq: Key.TextData, b\(aqTxtF\(aq: Key.TextureFile, b\(aqTxtS\(aq: Key.TextStyle, b\(aqTxtT\(aq: Key.TextureType, b\(aqTxtr\(aq: Key.Texture, b\(aqTxtt\(aq: Key.TextStyleRange, b\(aqType\(aq: Key.Type, b\(aqUC \(aq: Key.UCA, b\(aqURL \(aq: Key.URL, b\(aqUndA\(aq: Key.UndefinedArea, b\(aqUndl\(aq: Key.Underline, b\(aqUntP\(aq: Key.UnitsPrefs, b\(aqUntl\(aq: Key.Untitled, b\(aqUppY\(aq: Key.UpperY, b\(aqUrgn\(aq: Key.Urgency, b\(aqUsCc\(aq: Key.UseCacheForHistograms, b\(aqUsCr\(aq: Key.UseCurves, b\(aqUsDf\(aq: Key.UseDefault, b\(aqUsIC\(aq: Key.UseICCProfile, b\(aqUsMs\(aq: Key.UseMask, b\(aqUsng\(aq: Key.Using, b\(aqUsrM\(aq: Key.UserMaskEnabled, b\(aqUsrs\(aq: Key.UserMaskLinked, b\(aqVct0\(aq: Key.Vector0, b\(aqVct1\(aq: Key.Vector1, b\(aqVctC\(aq: Key.VectorColor, b\(aqVdlp\(aq: Key.VideoAlpha, b\(aqVl \(aq: Key.Value, b\(aqVrnc\(aq: Key.Variance, b\(aqVrsF\(aq: Key.VersionFix, b\(aqVrsM\(aq: Key.VersionMajor, b\(aqVrsN\(aq: Key.VersionMinor, b\(aqVrtS\(aq: Key.VerticalScale, b\(aqVrtc\(aq: Key.Vertical, b\(aqVsbl\(aq: Key.Visible, b\(aqWLMn\(aq: Key.WavelengthMin, b\(aqWLMx\(aq: Key.WavelengthMax, b\(aqWbdP\(aq: Key.WebdavPrefs, b\(aqWdth\(aq: Key.Width, b\(aqWhHi\(aq: Key.WhiteIsHigh, b\(aqWhPt\(aq: Key.WholePath, b\(aqWhat\(aq: Key.What, b\(aqWhtC\(aq: Key.WhiteClip, b\(aqWhtI\(aq: Key.WhiteIntensity, b\(aqWhtL\(aq: Key.WhiteLevel, b\(aqWhtP\(aq: Key.WhitePoint, b\(aqWith\(aq: Key.With, b\(aqWndM\(aq: Key.WindMethod, b\(aqWrPt\(aq: Key.WorkPath, b\(aqWrkP\(aq: Key.WorkPathIndex, b\(aqWtcS\(aq: Key.WatchSuspension, b\(aqWtdg\(aq: Key.WetEdges, b\(aqWvtp\(aq: Key.WaveType, b\(aqX \(aq: Key.X, b\(aqY \(aq: Key.Y, b\(aqYlw \(aq: Key.Yellow, b\(aqZZTy\(aq: Key.ZigZagType, b\(aqblfl\(aq: Key.CreateLayersFromLayerFX, b\(aqblueFloat\(aq: Key.BlueFloat, b\(aqblur\(aq: Key.Blur, b\(aqbvlD\(aq: Key.BevelDirection, b\(aqbvlS\(aq: Key.BevelStyle, b\(aqbvlT\(aq: Key.BevelTechnique, b\(aqc@#^\(aq: Key.Inherits, b\(aqcomp\(aq: Key.comp, b\(aqebbl\(aq: Key.BevelEmboss, b\(aqenab\(aq: Key.Enabled, b\(aqflst\(aq: Key.FilesList, b\(aqgagl\(aq: Key.GlobalLightingAngle, b\(aqgblA\(aq: Key.GlobalAngle, b\(aqglwS\(aq: Key.InnerGlowSource, b\(aqgreenFloat\(aq: Key.GreenFloat, b\(aqhglC\(aq: Key.HighlightColor, b\(aqhglM\(aq: Key.HighlightMode, b\(aqhglO\(aq: Key.HighlightOpacity, b\(aqkIBP\(aq: Key.InputBlackPoint, b\(aqkIWP\(aq: Key.InputWhitePoint, b\(aqkLog\(aq: Key.Logarithmic, b\(aqkOBP\(aq: Key.OutputBlackPoint, b\(aqkOWP\(aq: Key.OutputWhitePoint, b\(aqlSNs\(aq: Key.LegacySerialString, b\(aqlagl\(aq: Key.LocalLightingAngle, b\(aqlfxv\(aq: Key.LayerFXVisible, b\(aqlnkE\(aq: Key.LinkEnable, b\(aqnull\(aq: Key.Null, b\(aqredFloat\(aq: Key.RedFloat, b\(aqsdwC\(aq: Key.ShadowColor, b\(aqsdwM\(aq: Key.ShadowMode, b\(aqsdwO\(aq: Key.ShadowOpacity, b\(aqsrgR\(aq: Key.StrengthRatio, b\(aqsrgh\(aq: Key.Strength, b\(aquglg\(aq: Key.UseGlobalAngle, b\(aqwatr\(aq: Key.Watermark} .UNINDENT .INDENT 7.0 .TP .B _value_repr_() Return repr(self). .UNINDENT .INDENT 7.0 .TP .B comp = b\(aqcomp\(aq .UNINDENT .UNINDENT .SS Type .INDENT 0.0 .TP .B class psd_tools.terminology.Type(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Type definitions extracted from PITerminology.h. .sp See \fI\%https://www.adobe.com/devnet/photoshop/sdk.html\fP .INDENT 7.0 .TP .B ActionData = b\(aqActD\(aq .UNINDENT .INDENT 7.0 .TP .B ActionReference = b\(aq#Act\(aq .UNINDENT .INDENT 7.0 .TP .B AlignDistributeSelector = b\(aqADSt\(aq .UNINDENT .INDENT 7.0 .TP .B Alignment = b\(aqAlg \(aq .UNINDENT .INDENT 7.0 .TP .B Amount = b\(aqAmnt\(aq .UNINDENT .INDENT 7.0 .TP .B AntiAlias = b\(aqAnnt\(aq .UNINDENT .INDENT 7.0 .TP .B AreaSelector = b\(aqArSl\(aq .UNINDENT .INDENT 7.0 .TP .B AssumeOptions = b\(aqAssO\(aq .UNINDENT .INDENT 7.0 .TP .B BevelEmbossStampStyle = b\(aqBESs\(aq .UNINDENT .INDENT 7.0 .TP .B BevelEmbossStyle = b\(aqBESl\(aq .UNINDENT .INDENT 7.0 .TP .B BitDepth = b\(aqBtDp\(aq .UNINDENT .INDENT 7.0 .TP .B BlackGeneration = b\(aqBlcG\(aq .UNINDENT .INDENT 7.0 .TP .B BlendMode = b\(aqBlnM\(aq .UNINDENT .INDENT 7.0 .TP .B BlurMethod = b\(aqBlrM\(aq .UNINDENT .INDENT 7.0 .TP .B BlurQuality = b\(aqBlrQ\(aq .UNINDENT .INDENT 7.0 .TP .B BrushType = b\(aqBrsT\(aq .UNINDENT .INDENT 7.0 .TP .B BuiltInContour = b\(aqBltC\(aq .UNINDENT .INDENT 7.0 .TP .B BuiltinProfile = b\(aqBltP\(aq .UNINDENT .INDENT 7.0 .TP .B CMYKSetupEngine = b\(aqCMYE\(aq .UNINDENT .INDENT 7.0 .TP .B Calculation = b\(aqClcn\(aq .UNINDENT .INDENT 7.0 .TP .B Channel = b\(aqChnl\(aq .UNINDENT .INDENT 7.0 .TP .B ChannelReference = b\(aq#ChR\(aq .UNINDENT .INDENT 7.0 .TP .B CheckerboardSize = b\(aqChck\(aq .UNINDENT .INDENT 7.0 .TP .B ClassColor = b\(aq#Clr\(aq .UNINDENT .INDENT 7.0 .TP .B ClassElement = b\(aq#ClE\(aq .UNINDENT .INDENT 7.0 .TP .B ClassExport = b\(aq#Cle\(aq .UNINDENT .INDENT 7.0 .TP .B ClassFormat = b\(aq#ClF\(aq .UNINDENT .INDENT 7.0 .TP .B ClassHueSatHueSatV2 = b\(aq#HsV\(aq .UNINDENT .INDENT 7.0 .TP .B ClassImport = b\(aq#ClI\(aq .UNINDENT .INDENT 7.0 .TP .B ClassMode = b\(aq#ClM\(aq .UNINDENT .INDENT 7.0 .TP .B ClassStringFormat = b\(aq#ClS\(aq .UNINDENT .INDENT 7.0 .TP .B ClassTextExport = b\(aq#CTE\(aq .UNINDENT .INDENT 7.0 .TP .B ClassTextImport = b\(aq#ClT\(aq .UNINDENT .INDENT 7.0 .TP .B Color = b\(aqClr \(aq .UNINDENT .INDENT 7.0 .TP .B ColorChannel = b\(aq#ClC\(aq .UNINDENT .INDENT 7.0 .TP .B ColorPalette = b\(aqClrP\(aq .UNINDENT .INDENT 7.0 .TP .B ColorSpace = b\(aqClrS\(aq .UNINDENT .INDENT 7.0 .TP .B ColorStopType = b\(aqClry\(aq .UNINDENT .INDENT 7.0 .TP .B Colors = b\(aqClrs\(aq .UNINDENT .INDENT 7.0 .TP .B Compensation = b\(aqCmpn\(aq .UNINDENT .INDENT 7.0 .TP .B ContourEdge = b\(aqCntE\(aq .UNINDENT .INDENT 7.0 .TP .B Convert = b\(aqCnvr\(aq .UNINDENT .INDENT 7.0 .TP .B CorrectionMethod = b\(aqCrcM\(aq .UNINDENT .INDENT 7.0 .TP .B CursorKind = b\(aqCrsK\(aq .UNINDENT .INDENT 7.0 .TP .B DCS = b\(aqDCS \(aq .UNINDENT .INDENT 7.0 .TP .B DeepDepth = b\(aqDpDp\(aq .UNINDENT .INDENT 7.0 .TP .B Depth = b\(aqDpth\(aq .UNINDENT .INDENT 7.0 .TP .B DiffuseMode = b\(aqDfsM\(aq .UNINDENT .INDENT 7.0 .TP .B Direction = b\(aqDrct\(aq .UNINDENT .INDENT 7.0 .TP .B DisplacementMap = b\(aqDspM\(aq .UNINDENT .INDENT 7.0 .TP .B Distribution = b\(aqDstr\(aq .UNINDENT .INDENT 7.0 .TP .B Dither = b\(aqDthr\(aq .UNINDENT .INDENT 7.0 .TP .B DitherQuality = b\(aqDthq\(aq .UNINDENT .INDENT 7.0 .TP .B DocumentReference = b\(aq#DcR\(aq .UNINDENT .INDENT 7.0 .TP .B EPSPreview = b\(aqEPSP\(aq .UNINDENT .INDENT 7.0 .TP .B ElementReference = b\(aq#ElR\(aq .UNINDENT .INDENT 7.0 .TP .B Encoding = b\(aqEncd\(aq .UNINDENT .INDENT 7.0 .TP .B EraserKind = b\(aqErsK\(aq .UNINDENT .INDENT 7.0 .TP .B ExtrudeRandom = b\(aqExtR\(aq .UNINDENT .INDENT 7.0 .TP .B ExtrudeType = b\(aqExtT\(aq .UNINDENT .INDENT 7.0 .TP .B EyeDropperSample = b\(aqEyDp\(aq .UNINDENT .INDENT 7.0 .TP .B FPXCompress = b\(aqFxCm\(aq .UNINDENT .INDENT 7.0 .TP .B Fill = b\(aqFl \(aq .UNINDENT .INDENT 7.0 .TP .B FillColor = b\(aqFlCl\(aq .UNINDENT .INDENT 7.0 .TP .B FillContents = b\(aqFlCn\(aq .UNINDENT .INDENT 7.0 .TP .B FillMode = b\(aqFlMd\(aq .UNINDENT .INDENT 7.0 .TP .B ForcedColors = b\(aqFrcC\(aq .UNINDENT .INDENT 7.0 .TP .B FrameFill = b\(aqFrFl\(aq .UNINDENT .INDENT 7.0 .TP .B FrameStyle = b\(aqFStl\(aq .UNINDENT .INDENT 7.0 .TP .B GIFColorFileType = b\(aqGFPT\(aq .UNINDENT .INDENT 7.0 .TP .B GIFPaletteType = b\(aqGFPL\(aq .UNINDENT .INDENT 7.0 .TP .B GIFRequiredColorSpaceType = b\(aqGFCS\(aq .UNINDENT .INDENT 7.0 .TP .B GIFRowOrderType = b\(aqGFIT\(aq .UNINDENT .INDENT 7.0 .TP .B GlobalClass = b\(aqGlbC\(aq .UNINDENT .INDENT 7.0 .TP .B GlobalObject = b\(aqGlbO\(aq .UNINDENT .INDENT 7.0 .TP .B GradientForm = b\(aqGrdF\(aq .UNINDENT .INDENT 7.0 .TP .B GradientType = b\(aqGrdT\(aq .UNINDENT .INDENT 7.0 .TP .B GrainType = b\(aqGrnt\(aq .UNINDENT .INDENT 7.0 .TP .B GrayBehavior = b\(aqGrBh\(aq .UNINDENT .INDENT 7.0 .TP .B GuideGridColor = b\(aqGdGr\(aq .UNINDENT .INDENT 7.0 .TP .B GuideGridStyle = b\(aqGdGS\(aq .UNINDENT .INDENT 7.0 .TP .B HistoryStateSource = b\(aqHstS\(aq .UNINDENT .INDENT 7.0 .TP .B HorizontalLocation = b\(aqHrzL\(aq .UNINDENT .INDENT 7.0 .TP .B ImageReference = b\(aq#ImR\(aq .UNINDENT .INDENT 7.0 .TP .B InnerGlowSource = b\(aqIGSr\(aq .UNINDENT .INDENT 7.0 .TP .B IntegerChannel = b\(aq#inC\(aq .UNINDENT .INDENT 7.0 .TP .B Intent = b\(aqInte\(aq .UNINDENT .INDENT 7.0 .TP .B InterlaceCreateType = b\(aqIntC\(aq .UNINDENT .INDENT 7.0 .TP .B InterlaceEliminateType = b\(aqIntE\(aq .UNINDENT .INDENT 7.0 .TP .B Interpolation = b\(aqIntp\(aq .UNINDENT .INDENT 7.0 .TP .B Kelvin = b\(aqKlvn\(aq .UNINDENT .INDENT 7.0 .TP .B KelvinCustomWhitePoint = b\(aq#Klv\(aq .UNINDENT .INDENT 7.0 .TP .B Lens = b\(aqLns \(aq .UNINDENT .INDENT 7.0 .TP .B LightDirection = b\(aqLghD\(aq .UNINDENT .INDENT 7.0 .TP .B LightPosition = b\(aqLghP\(aq .UNINDENT .INDENT 7.0 .TP .B LightType = b\(aqLghT\(aq .UNINDENT .INDENT 7.0 .TP .B LocationReference = b\(aq#Lct\(aq .UNINDENT .INDENT 7.0 .TP .B MaskIndicator = b\(aqMskI\(aq .UNINDENT .INDENT 7.0 .TP .B MatteColor = b\(aqMttC\(aq .UNINDENT .INDENT 7.0 .TP .B MatteTechnique = b\(aqBETE\(aq .UNINDENT .INDENT 7.0 .TP .B MenuItem = b\(aqMnIt\(aq .UNINDENT .INDENT 7.0 .TP .B Method = b\(aqMthd\(aq .UNINDENT .INDENT 7.0 .TP .B MezzotintType = b\(aqMztT\(aq .UNINDENT .INDENT 7.0 .TP .B Mode = b\(aqMd \(aq .UNINDENT .INDENT 7.0 .TP .B Notify = b\(aqNtfy\(aq .UNINDENT .INDENT 7.0 .TP .B Object = b\(aqObjc\(aq .UNINDENT .INDENT 7.0 .TP .B ObjectReference = b\(aqobj \(aq .UNINDENT .INDENT 7.0 .TP .B OnOff = b\(aqOnOf\(aq .UNINDENT .INDENT 7.0 .TP .B Ordinal = b\(aqOrdn\(aq .UNINDENT .INDENT 7.0 .TP .B Orientation = b\(aqOrnt\(aq .UNINDENT .INDENT 7.0 .TP .B PNGFilter = b\(aqPNGf\(aq .UNINDENT .INDENT 7.0 .TP .B PNGInterlaceType = b\(aqPGIT\(aq .UNINDENT .INDENT 7.0 .TP .B PagePosition = b\(aqPgPs\(aq .UNINDENT .INDENT 7.0 .TP .B PathKind = b\(aqPthK\(aq .UNINDENT .INDENT 7.0 .TP .B PathReference = b\(aq#PtR\(aq .UNINDENT .INDENT 7.0 .TP .B Phosphors = b\(aqPhsp\(aq .UNINDENT .INDENT 7.0 .TP .B PhosphorsCustomPhosphors = b\(aq#Phs\(aq .UNINDENT .INDENT 7.0 .TP .B PickerKind = b\(aqPckK\(aq .UNINDENT .INDENT 7.0 .TP .B PixelPaintSize = b\(aqPPSz\(aq .UNINDENT .INDENT 7.0 .TP .B Platform = b\(aqPltf\(aq .UNINDENT .INDENT 7.0 .TP .B Preview = b\(aqPrvw\(aq .UNINDENT .INDENT 7.0 .TP .B PreviewCMYK = b\(aqPrvt\(aq .UNINDENT .INDENT 7.0 .TP .B ProfileMismatch = b\(aqPrfM\(aq .UNINDENT .INDENT 7.0 .TP .B PurgeItem = b\(aqPrgI\(aq .UNINDENT .INDENT 7.0 .TP .B QuadCenterState = b\(aqQCSt\(aq .UNINDENT .INDENT 7.0 .TP .B Quality = b\(aqQlty\(aq .UNINDENT .INDENT 7.0 .TP .B QueryState = b\(aqQurS\(aq .UNINDENT .INDENT 7.0 .TP .B RGBSetupSource = b\(aqRGBS\(aq .UNINDENT .INDENT 7.0 .TP .B RawData = b\(aqtdta\(aq .UNINDENT .INDENT 7.0 .TP .B RippleSize = b\(aqRplS\(aq .UNINDENT .INDENT 7.0 .TP .B RulerUnits = b\(aqRlrU\(aq .UNINDENT .INDENT 7.0 .TP .B ScreenType = b\(aqScrT\(aq .UNINDENT .INDENT 7.0 .TP .B Shape = b\(aqShp \(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurMode = b\(aqSmBM\(aq .UNINDENT .INDENT 7.0 .TP .B SmartBlurQuality = b\(aqSmBQ\(aq .UNINDENT .INDENT 7.0 .TP .B SourceMode = b\(aqCndn\(aq .UNINDENT .INDENT 7.0 .TP .B SpherizeMode = b\(aqSphM\(aq .UNINDENT .INDENT 7.0 .TP .B State = b\(aqStte\(aq .UNINDENT .INDENT 7.0 .TP .B StringChannel = b\(aq#sth\(aq .UNINDENT .INDENT 7.0 .TP .B StringClassFormat = b\(aq#StC\(aq .UNINDENT .INDENT 7.0 .TP .B StringCompensation = b\(aq#Stm\(aq .UNINDENT .INDENT 7.0 .TP .B StringFSS = b\(aq#Stf\(aq .UNINDENT .INDENT 7.0 .TP .B StringInteger = b\(aq#StI\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeDirection = b\(aqStrD\(aq .UNINDENT .INDENT 7.0 .TP .B StrokeLocation = b\(aqStrL\(aq .UNINDENT .INDENT 7.0 .TP .B TextureType = b\(aqTxtT\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyGridColors = b\(aqTrnl\(aq .UNINDENT .INDENT 7.0 .TP .B TransparencyGridSize = b\(aqTrnG\(aq .UNINDENT .INDENT 7.0 .TP .B TypeClassModeOrClassMode = b\(aq#TyM\(aq .UNINDENT .INDENT 7.0 .TP .B UndefinedArea = b\(aqUndA\(aq .UNINDENT .INDENT 7.0 .TP .B UnitFloat = b\(aqUntF\(aq .UNINDENT .INDENT 7.0 .TP .B Urgency = b\(aqUrgn\(aq .UNINDENT .INDENT 7.0 .TP .B UserMaskOptions = b\(aqUsrM\(aq .UNINDENT .INDENT 7.0 .TP .B ValueList = b\(aqVlLs\(aq .UNINDENT .INDENT 7.0 .TP .B VerticalLocation = b\(aqVrtL\(aq .UNINDENT .INDENT 7.0 .TP .B WaveType = b\(aqWvtp\(aq .UNINDENT .INDENT 7.0 .TP .B WindMethod = b\(aqWndM\(aq .UNINDENT .INDENT 7.0 .TP .B YesNo = b\(aqYsN \(aq .UNINDENT .INDENT 7.0 .TP .B ZigZagType = b\(aqZZTy\(aq .UNINDENT .INDENT 7.0 .TP .B _generate_next_value_(start, count, last_values) Generate the next value when not given. .sp name: the name of the member start: the initial start value or None count: the number of existing members last_values: the list of values assigned .UNINDENT .INDENT 7.0 .TP .B _member_map_ = {\(aqActionData\(aq: Type.ActionData, \(aqActionReference\(aq: Type.ActionReference, \(aqAlignDistributeSelector\(aq: Type.AlignDistributeSelector, \(aqAlignment\(aq: Type.Alignment, \(aqAmount\(aq: Type.Amount, \(aqAntiAlias\(aq: Type.AntiAlias, \(aqAreaSelector\(aq: Type.AreaSelector, \(aqAssumeOptions\(aq: Type.AssumeOptions, \(aqBevelEmbossStampStyle\(aq: Type.BevelEmbossStampStyle, \(aqBevelEmbossStyle\(aq: Type.BevelEmbossStyle, \(aqBitDepth\(aq: Type.BitDepth, \(aqBlackGeneration\(aq: Type.BlackGeneration, \(aqBlendMode\(aq: Type.BlendMode, \(aqBlurMethod\(aq: Type.BlurMethod, \(aqBlurQuality\(aq: Type.BlurQuality, \(aqBrushType\(aq: Type.BrushType, \(aqBuiltInContour\(aq: Type.BuiltInContour, \(aqBuiltinProfile\(aq: Type.BuiltinProfile, \(aqCMYKSetupEngine\(aq: Type.CMYKSetupEngine, \(aqCalculation\(aq: Type.Calculation, \(aqChannel\(aq: Type.Channel, \(aqChannelReference\(aq: Type.ChannelReference, \(aqCheckerboardSize\(aq: Type.CheckerboardSize, \(aqClassColor\(aq: Type.ClassColor, \(aqClassElement\(aq: Type.ClassElement, \(aqClassExport\(aq: Type.ClassExport, \(aqClassFormat\(aq: Type.ClassFormat, \(aqClassHueSatHueSatV2\(aq: Type.ClassHueSatHueSatV2, \(aqClassImport\(aq: Type.ClassImport, \(aqClassMode\(aq: Type.ClassMode, \(aqClassStringFormat\(aq: Type.ClassStringFormat, \(aqClassTextExport\(aq: Type.ClassTextExport, \(aqClassTextImport\(aq: Type.ClassTextImport, \(aqColor\(aq: Type.Color, \(aqColorChannel\(aq: Type.ColorChannel, \(aqColorPalette\(aq: Type.ColorPalette, \(aqColorSpace\(aq: Type.ColorSpace, \(aqColorStopType\(aq: Type.ColorStopType, \(aqColors\(aq: Type.Colors, \(aqCompensation\(aq: Type.Compensation, \(aqContourEdge\(aq: Type.ContourEdge, \(aqConvert\(aq: Type.Convert, \(aqCorrectionMethod\(aq: Type.CorrectionMethod, \(aqCursorKind\(aq: Type.CursorKind, \(aqDCS\(aq: Type.DCS, \(aqDeepDepth\(aq: Type.DeepDepth, \(aqDepth\(aq: Type.Depth, \(aqDiffuseMode\(aq: Type.DiffuseMode, \(aqDirection\(aq: Type.Direction, \(aqDisplacementMap\(aq: Type.DisplacementMap, \(aqDistribution\(aq: Type.Distribution, \(aqDither\(aq: Type.Dither, \(aqDitherQuality\(aq: Type.DitherQuality, \(aqDocumentReference\(aq: Type.DocumentReference, \(aqEPSPreview\(aq: Type.EPSPreview, \(aqElementReference\(aq: Type.ElementReference, \(aqEncoding\(aq: Type.Encoding, \(aqEraserKind\(aq: Type.EraserKind, \(aqExtrudeRandom\(aq: Type.ExtrudeRandom, \(aqExtrudeType\(aq: Type.ExtrudeType, \(aqEyeDropperSample\(aq: Type.EyeDropperSample, \(aqFPXCompress\(aq: Type.FPXCompress, \(aqFill\(aq: Type.Fill, \(aqFillColor\(aq: Type.FillColor, \(aqFillContents\(aq: Type.FillContents, \(aqFillMode\(aq: Type.FillMode, \(aqForcedColors\(aq: Type.ForcedColors, \(aqFrameFill\(aq: Type.FrameFill, \(aqFrameStyle\(aq: Type.FrameStyle, \(aqGIFColorFileType\(aq: Type.GIFColorFileType, \(aqGIFPaletteType\(aq: Type.GIFPaletteType, \(aqGIFRequiredColorSpaceType\(aq: Type.GIFRequiredColorSpaceType, \(aqGIFRowOrderType\(aq: Type.GIFRowOrderType, \(aqGlobalClass\(aq: Type.GlobalClass, \(aqGlobalObject\(aq: Type.GlobalObject, \(aqGradientForm\(aq: Type.GradientForm, \(aqGradientType\(aq: Type.GradientType, \(aqGrainType\(aq: Type.GrainType, \(aqGrayBehavior\(aq: Type.GrayBehavior, \(aqGuideGridColor\(aq: Type.GuideGridColor, \(aqGuideGridStyle\(aq: Type.GuideGridStyle, \(aqHistoryStateSource\(aq: Type.HistoryStateSource, \(aqHorizontalLocation\(aq: Type.HorizontalLocation, \(aqImageReference\(aq: Type.ImageReference, \(aqInnerGlowSource\(aq: Type.InnerGlowSource, \(aqIntegerChannel\(aq: Type.IntegerChannel, \(aqIntent\(aq: Type.Intent, \(aqInterlaceCreateType\(aq: Type.InterlaceCreateType, \(aqInterlaceEliminateType\(aq: Type.InterlaceEliminateType, \(aqInterpolation\(aq: Type.Interpolation, \(aqKelvin\(aq: Type.Kelvin, \(aqKelvinCustomWhitePoint\(aq: Type.KelvinCustomWhitePoint, \(aqLens\(aq: Type.Lens, \(aqLightDirection\(aq: Type.LightDirection, \(aqLightPosition\(aq: Type.LightPosition, \(aqLightType\(aq: Type.LightType, \(aqLocationReference\(aq: Type.LocationReference, \(aqMaskIndicator\(aq: Type.MaskIndicator, \(aqMatteColor\(aq: Type.MatteColor, \(aqMatteTechnique\(aq: Type.MatteTechnique, \(aqMenuItem\(aq: Type.MenuItem, \(aqMethod\(aq: Type.Method, \(aqMezzotintType\(aq: Type.MezzotintType, \(aqMode\(aq: Type.Mode, \(aqNotify\(aq: Type.Notify, \(aqObject\(aq: Type.Object, \(aqObjectReference\(aq: Type.ObjectReference, \(aqOnOff\(aq: Type.OnOff, \(aqOrdinal\(aq: Type.Ordinal, \(aqOrientation\(aq: Type.Orientation, \(aqPNGFilter\(aq: Type.PNGFilter, \(aqPNGInterlaceType\(aq: Type.PNGInterlaceType, \(aqPagePosition\(aq: Type.PagePosition, \(aqPathKind\(aq: Type.PathKind, \(aqPathReference\(aq: Type.PathReference, \(aqPhosphors\(aq: Type.Phosphors, \(aqPhosphorsCustomPhosphors\(aq: Type.PhosphorsCustomPhosphors, \(aqPickerKind\(aq: Type.PickerKind, \(aqPixelPaintSize\(aq: Type.PixelPaintSize, \(aqPlatform\(aq: Type.Platform, \(aqPreview\(aq: Type.Preview, \(aqPreviewCMYK\(aq: Type.PreviewCMYK, \(aqProfileMismatch\(aq: Type.ProfileMismatch, \(aqPurgeItem\(aq: Type.PurgeItem, \(aqQuadCenterState\(aq: Type.QuadCenterState, \(aqQuality\(aq: Type.Quality, \(aqQueryState\(aq: Type.QueryState, \(aqRGBSetupSource\(aq: Type.RGBSetupSource, \(aqRawData\(aq: Type.RawData, \(aqRippleSize\(aq: Type.RippleSize, \(aqRulerUnits\(aq: Type.RulerUnits, \(aqScreenType\(aq: Type.ScreenType, \(aqShape\(aq: Type.Shape, \(aqSmartBlurMode\(aq: Type.SmartBlurMode, \(aqSmartBlurQuality\(aq: Type.SmartBlurQuality, \(aqSourceMode\(aq: Type.SourceMode, \(aqSpherizeMode\(aq: Type.SpherizeMode, \(aqState\(aq: Type.State, \(aqStringChannel\(aq: Type.StringChannel, \(aqStringClassFormat\(aq: Type.StringClassFormat, \(aqStringCompensation\(aq: Type.StringCompensation, \(aqStringFSS\(aq: Type.StringFSS, \(aqStringInteger\(aq: Type.StringInteger, \(aqStrokeDirection\(aq: Type.StrokeDirection, \(aqStrokeLocation\(aq: Type.StrokeLocation, \(aqTextureType\(aq: Type.TextureType, \(aqTransparencyGridColors\(aq: Type.TransparencyGridColors, \(aqTransparencyGridSize\(aq: Type.TransparencyGridSize, \(aqTypeClassModeOrClassMode\(aq: Type.TypeClassModeOrClassMode, \(aqUndefinedArea\(aq: Type.UndefinedArea, \(aqUnitFloat\(aq: Type.UnitFloat, \(aqUrgency\(aq: Type.Urgency, \(aqUserMaskOptions\(aq: Type.UserMaskOptions, \(aqValueList\(aq: Type.ValueList, \(aqVerticalLocation\(aq: Type.VerticalLocation, \(aqWaveType\(aq: Type.WaveType, \(aqWindMethod\(aq: Type.WindMethod, \(aqYesNo\(aq: Type.YesNo, \(aqZigZagType\(aq: Type.ZigZagType} .UNINDENT .INDENT 7.0 .TP .B _member_names_ = [\(aqActionReference\(aq, \(aqActionData\(aq, \(aqAlignDistributeSelector\(aq, \(aqAlignment\(aq, \(aqAmount\(aq, \(aqAntiAlias\(aq, \(aqAreaSelector\(aq, \(aqAssumeOptions\(aq, \(aqBevelEmbossStampStyle\(aq, \(aqBevelEmbossStyle\(aq, \(aqBitDepth\(aq, \(aqBlackGeneration\(aq, \(aqBlendMode\(aq, \(aqBlurMethod\(aq, \(aqBlurQuality\(aq, \(aqBrushType\(aq, \(aqBuiltinProfile\(aq, \(aqBuiltInContour\(aq, \(aqCMYKSetupEngine\(aq, \(aqCalculation\(aq, \(aqChannel\(aq, \(aqChannelReference\(aq, \(aqCheckerboardSize\(aq, \(aqClassColor\(aq, \(aqClassElement\(aq, \(aqClassExport\(aq, \(aqClassFormat\(aq, \(aqClassHueSatHueSatV2\(aq, \(aqClassImport\(aq, \(aqClassMode\(aq, \(aqClassStringFormat\(aq, \(aqClassTextExport\(aq, \(aqClassTextImport\(aq, \(aqColor\(aq, \(aqColorChannel\(aq, \(aqColorPalette\(aq, \(aqColorSpace\(aq, \(aqColorStopType\(aq, \(aqColors\(aq, \(aqCompensation\(aq, \(aqContourEdge\(aq, \(aqConvert\(aq, \(aqCorrectionMethod\(aq, \(aqCursorKind\(aq, \(aqDCS\(aq, \(aqDeepDepth\(aq, \(aqDepth\(aq, \(aqDiffuseMode\(aq, \(aqDirection\(aq, \(aqDisplacementMap\(aq, \(aqDistribution\(aq, \(aqDither\(aq, \(aqDitherQuality\(aq, \(aqDocumentReference\(aq, \(aqEPSPreview\(aq, \(aqElementReference\(aq, \(aqEncoding\(aq, \(aqEraserKind\(aq, \(aqExtrudeRandom\(aq, \(aqExtrudeType\(aq, \(aqEyeDropperSample\(aq, \(aqFPXCompress\(aq, \(aqFill\(aq, \(aqFillColor\(aq, \(aqFillContents\(aq, \(aqFillMode\(aq, \(aqForcedColors\(aq, \(aqFrameFill\(aq, \(aqFrameStyle\(aq, \(aqGIFColorFileType\(aq, \(aqGIFPaletteType\(aq, \(aqGIFRequiredColorSpaceType\(aq, \(aqGIFRowOrderType\(aq, \(aqGlobalClass\(aq, \(aqGlobalObject\(aq, \(aqGradientType\(aq, \(aqGradientForm\(aq, \(aqGrainType\(aq, \(aqGrayBehavior\(aq, \(aqGuideGridColor\(aq, \(aqGuideGridStyle\(aq, \(aqHistoryStateSource\(aq, \(aqHorizontalLocation\(aq, \(aqImageReference\(aq, \(aqInnerGlowSource\(aq, \(aqIntegerChannel\(aq, \(aqIntent\(aq, \(aqInterlaceCreateType\(aq, \(aqInterlaceEliminateType\(aq, \(aqInterpolation\(aq, \(aqKelvin\(aq, \(aqKelvinCustomWhitePoint\(aq, \(aqLens\(aq, \(aqLightDirection\(aq, \(aqLightPosition\(aq, \(aqLightType\(aq, \(aqLocationReference\(aq, \(aqMaskIndicator\(aq, \(aqMatteColor\(aq, \(aqMatteTechnique\(aq, \(aqMenuItem\(aq, \(aqMethod\(aq, \(aqMezzotintType\(aq, \(aqMode\(aq, \(aqNotify\(aq, \(aqObject\(aq, \(aqObjectReference\(aq, \(aqOnOff\(aq, \(aqOrdinal\(aq, \(aqOrientation\(aq, \(aqPNGFilter\(aq, \(aqPNGInterlaceType\(aq, \(aqPagePosition\(aq, \(aqPathKind\(aq, \(aqPathReference\(aq, \(aqPhosphors\(aq, \(aqPhosphorsCustomPhosphors\(aq, \(aqPickerKind\(aq, \(aqPixelPaintSize\(aq, \(aqPlatform\(aq, \(aqPreview\(aq, \(aqPreviewCMYK\(aq, \(aqProfileMismatch\(aq, \(aqPurgeItem\(aq, \(aqQuadCenterState\(aq, \(aqQuality\(aq, \(aqQueryState\(aq, \(aqRGBSetupSource\(aq, \(aqRawData\(aq, \(aqRippleSize\(aq, \(aqRulerUnits\(aq, \(aqScreenType\(aq, \(aqShape\(aq, \(aqSmartBlurMode\(aq, \(aqSmartBlurQuality\(aq, \(aqSourceMode\(aq, \(aqSpherizeMode\(aq, \(aqState\(aq, \(aqStringClassFormat\(aq, \(aqStringChannel\(aq, \(aqStringCompensation\(aq, \(aqStringFSS\(aq, \(aqStringInteger\(aq, \(aqStrokeDirection\(aq, \(aqStrokeLocation\(aq, \(aqTextureType\(aq, \(aqTransparencyGridColors\(aq, \(aqTransparencyGridSize\(aq, \(aqTypeClassModeOrClassMode\(aq, \(aqUndefinedArea\(aq, \(aqUnitFloat\(aq, \(aqUrgency\(aq, \(aqUserMaskOptions\(aq, \(aqValueList\(aq, \(aqVerticalLocation\(aq, \(aqWaveType\(aq, \(aqWindMethod\(aq, \(aqYesNo\(aq, \(aqZigZagType\(aq] .UNINDENT .INDENT 7.0 .TP .B _member_type_ alias of \fBbytes\fP .UNINDENT .INDENT 7.0 .TP .B _new_member_(**kwargs) Create and return a new object. See help(type) for accurate signature. .UNINDENT .INDENT 7.0 .TP .B _unhashable_values_ = [] .UNINDENT .INDENT 7.0 .TP .B _use_args_ = True .UNINDENT .INDENT 7.0 .TP .B _value2member_map_ = {b\(aq#Act\(aq: Type.ActionReference, b\(aq#CTE\(aq: Type.ClassTextExport, b\(aq#ChR\(aq: Type.ChannelReference, b\(aq#ClC\(aq: Type.ColorChannel, b\(aq#ClE\(aq: Type.ClassElement, b\(aq#ClF\(aq: Type.ClassFormat, b\(aq#ClI\(aq: Type.ClassImport, b\(aq#ClM\(aq: Type.ClassMode, b\(aq#ClS\(aq: Type.ClassStringFormat, b\(aq#ClT\(aq: Type.ClassTextImport, b\(aq#Cle\(aq: Type.ClassExport, b\(aq#Clr\(aq: Type.ClassColor, b\(aq#DcR\(aq: Type.DocumentReference, b\(aq#ElR\(aq: Type.ElementReference, b\(aq#HsV\(aq: Type.ClassHueSatHueSatV2, b\(aq#ImR\(aq: Type.ImageReference, b\(aq#Klv\(aq: Type.KelvinCustomWhitePoint, b\(aq#Lct\(aq: Type.LocationReference, b\(aq#Phs\(aq: Type.PhosphorsCustomPhosphors, b\(aq#PtR\(aq: Type.PathReference, b\(aq#StC\(aq: Type.StringClassFormat, b\(aq#StI\(aq: Type.StringInteger, b\(aq#Stf\(aq: Type.StringFSS, b\(aq#Stm\(aq: Type.StringCompensation, b\(aq#TyM\(aq: Type.TypeClassModeOrClassMode, b\(aq#inC\(aq: Type.IntegerChannel, b\(aq#sth\(aq: Type.StringChannel, b\(aqADSt\(aq: Type.AlignDistributeSelector, b\(aqActD\(aq: Type.ActionData, b\(aqAlg \(aq: Type.Alignment, b\(aqAmnt\(aq: Type.Amount, b\(aqAnnt\(aq: Type.AntiAlias, b\(aqArSl\(aq: Type.AreaSelector, b\(aqAssO\(aq: Type.AssumeOptions, b\(aqBESl\(aq: Type.BevelEmbossStyle, b\(aqBESs\(aq: Type.BevelEmbossStampStyle, b\(aqBETE\(aq: Type.MatteTechnique, b\(aqBlcG\(aq: Type.BlackGeneration, b\(aqBlnM\(aq: Type.BlendMode, b\(aqBlrM\(aq: Type.BlurMethod, b\(aqBlrQ\(aq: Type.BlurQuality, b\(aqBltC\(aq: Type.BuiltInContour, b\(aqBltP\(aq: Type.BuiltinProfile, b\(aqBrsT\(aq: Type.BrushType, b\(aqBtDp\(aq: Type.BitDepth, b\(aqCMYE\(aq: Type.CMYKSetupEngine, b\(aqChck\(aq: Type.CheckerboardSize, b\(aqChnl\(aq: Type.Channel, b\(aqClcn\(aq: Type.Calculation, b\(aqClr \(aq: Type.Color, b\(aqClrP\(aq: Type.ColorPalette, b\(aqClrS\(aq: Type.ColorSpace, b\(aqClrs\(aq: Type.Colors, b\(aqClry\(aq: Type.ColorStopType, b\(aqCmpn\(aq: Type.Compensation, b\(aqCndn\(aq: Type.SourceMode, b\(aqCntE\(aq: Type.ContourEdge, b\(aqCnvr\(aq: Type.Convert, b\(aqCrcM\(aq: Type.CorrectionMethod, b\(aqCrsK\(aq: Type.CursorKind, b\(aqDCS \(aq: Type.DCS, b\(aqDfsM\(aq: Type.DiffuseMode, b\(aqDpDp\(aq: Type.DeepDepth, b\(aqDpth\(aq: Type.Depth, b\(aqDrct\(aq: Type.Direction, b\(aqDspM\(aq: Type.DisplacementMap, b\(aqDstr\(aq: Type.Distribution, b\(aqDthq\(aq: Type.DitherQuality, b\(aqDthr\(aq: Type.Dither, b\(aqEPSP\(aq: Type.EPSPreview, b\(aqEncd\(aq: Type.Encoding, b\(aqErsK\(aq: Type.EraserKind, b\(aqExtR\(aq: Type.ExtrudeRandom, b\(aqExtT\(aq: Type.ExtrudeType, b\(aqEyDp\(aq: Type.EyeDropperSample, b\(aqFStl\(aq: Type.FrameStyle, b\(aqFl \(aq: Type.Fill, b\(aqFlCl\(aq: Type.FillColor, b\(aqFlCn\(aq: Type.FillContents, b\(aqFlMd\(aq: Type.FillMode, b\(aqFrFl\(aq: Type.FrameFill, b\(aqFrcC\(aq: Type.ForcedColors, b\(aqFxCm\(aq: Type.FPXCompress, b\(aqGFCS\(aq: Type.GIFRequiredColorSpaceType, b\(aqGFIT\(aq: Type.GIFRowOrderType, b\(aqGFPL\(aq: Type.GIFPaletteType, b\(aqGFPT\(aq: Type.GIFColorFileType, b\(aqGdGS\(aq: Type.GuideGridStyle, b\(aqGdGr\(aq: Type.GuideGridColor, b\(aqGlbC\(aq: Type.GlobalClass, b\(aqGlbO\(aq: Type.GlobalObject, b\(aqGrBh\(aq: Type.GrayBehavior, b\(aqGrdF\(aq: Type.GradientForm, b\(aqGrdT\(aq: Type.GradientType, b\(aqGrnt\(aq: Type.GrainType, b\(aqHrzL\(aq: Type.HorizontalLocation, b\(aqHstS\(aq: Type.HistoryStateSource, b\(aqIGSr\(aq: Type.InnerGlowSource, b\(aqIntC\(aq: Type.InterlaceCreateType, b\(aqIntE\(aq: Type.InterlaceEliminateType, b\(aqInte\(aq: Type.Intent, b\(aqIntp\(aq: Type.Interpolation, b\(aqKlvn\(aq: Type.Kelvin, b\(aqLghD\(aq: Type.LightDirection, b\(aqLghP\(aq: Type.LightPosition, b\(aqLghT\(aq: Type.LightType, b\(aqLns \(aq: Type.Lens, b\(aqMd \(aq: Type.Mode, b\(aqMnIt\(aq: Type.MenuItem, b\(aqMskI\(aq: Type.MaskIndicator, b\(aqMthd\(aq: Type.Method, b\(aqMttC\(aq: Type.MatteColor, b\(aqMztT\(aq: Type.MezzotintType, b\(aqNtfy\(aq: Type.Notify, b\(aqObjc\(aq: Type.Object, b\(aqOnOf\(aq: Type.OnOff, b\(aqOrdn\(aq: Type.Ordinal, b\(aqOrnt\(aq: Type.Orientation, b\(aqPGIT\(aq: Type.PNGInterlaceType, b\(aqPNGf\(aq: Type.PNGFilter, b\(aqPPSz\(aq: Type.PixelPaintSize, b\(aqPckK\(aq: Type.PickerKind, b\(aqPgPs\(aq: Type.PagePosition, b\(aqPhsp\(aq: Type.Phosphors, b\(aqPltf\(aq: Type.Platform, b\(aqPrfM\(aq: Type.ProfileMismatch, b\(aqPrgI\(aq: Type.PurgeItem, b\(aqPrvt\(aq: Type.PreviewCMYK, b\(aqPrvw\(aq: Type.Preview, b\(aqPthK\(aq: Type.PathKind, b\(aqQCSt\(aq: Type.QuadCenterState, b\(aqQlty\(aq: Type.Quality, b\(aqQurS\(aq: Type.QueryState, b\(aqRGBS\(aq: Type.RGBSetupSource, b\(aqRlrU\(aq: Type.RulerUnits, b\(aqRplS\(aq: Type.RippleSize, b\(aqScrT\(aq: Type.ScreenType, b\(aqShp \(aq: Type.Shape, b\(aqSmBM\(aq: Type.SmartBlurMode, b\(aqSmBQ\(aq: Type.SmartBlurQuality, b\(aqSphM\(aq: Type.SpherizeMode, b\(aqStrD\(aq: Type.StrokeDirection, b\(aqStrL\(aq: Type.StrokeLocation, b\(aqStte\(aq: Type.State, b\(aqTrnG\(aq: Type.TransparencyGridSize, b\(aqTrnl\(aq: Type.TransparencyGridColors, b\(aqTxtT\(aq: Type.TextureType, b\(aqUndA\(aq: Type.UndefinedArea, b\(aqUntF\(aq: Type.UnitFloat, b\(aqUrgn\(aq: Type.Urgency, b\(aqUsrM\(aq: Type.UserMaskOptions, b\(aqVlLs\(aq: Type.ValueList, b\(aqVrtL\(aq: Type.VerticalLocation, b\(aqWndM\(aq: Type.WindMethod, b\(aqWvtp\(aq: Type.WaveType, b\(aqYsN \(aq: Type.YesNo, b\(aqZZTy\(aq: Type.ZigZagType, b\(aqobj \(aq: Type.ObjectReference, b\(aqtdta\(aq: Type.RawData} .UNINDENT .INDENT 7.0 .TP .B _value_repr_() Return repr(self). .UNINDENT .UNINDENT .SS Unit .INDENT 0.0 .TP .B class psd_tools.terminology.Unit(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) Unit definitions extracted from PITerminology.h. .sp See \fI\%https://www.adobe.com/devnet/photoshop/sdk.html\fP .INDENT 7.0 .TP .B Angle = b\(aq#Ang\(aq .UNINDENT .INDENT 7.0 .TP .B Density = b\(aq#Rsl\(aq .UNINDENT .INDENT 7.0 .TP .B Distance = b\(aq#Rlt\(aq .UNINDENT .INDENT 7.0 .TP .B Millimeters = b\(aq#Mlm\(aq .UNINDENT .INDENT 7.0 .TP .B Percent = b\(aq#Prc\(aq .UNINDENT .INDENT 7.0 .TP .B Pixels = b\(aq#Pxl\(aq .UNINDENT .INDENT 7.0 .TP .B Points = b\(aq#Pnt\(aq .UNINDENT .INDENT 7.0 .TP .B _None = b\(aq#Nne\(aq .UNINDENT .INDENT 7.0 .TP .B _generate_next_value_(start, count, last_values) Generate the next value when not given. .sp name: the name of the member start: the initial start value or None count: the number of existing members last_values: the list of values assigned .UNINDENT .INDENT 7.0 .TP .B _member_map_ = {\(aqAngle\(aq: Unit.Angle, \(aqDensity\(aq: Unit.Density, \(aqDistance\(aq: Unit.Distance, \(aqMillimeters\(aq: Unit.Millimeters, \(aqPercent\(aq: Unit.Percent, \(aqPixels\(aq: Unit.Pixels, \(aqPoints\(aq: Unit.Points, \(aq_None\(aq: Unit._None} .UNINDENT .INDENT 7.0 .TP .B _member_names_ = [\(aqAngle\(aq, \(aqDensity\(aq, \(aqDistance\(aq, \(aq_None\(aq, \(aqPercent\(aq, \(aqPixels\(aq, \(aqMillimeters\(aq, \(aqPoints\(aq] .UNINDENT .INDENT 7.0 .TP .B _member_type_ alias of \fBbytes\fP .UNINDENT .INDENT 7.0 .TP .B _new_member_(**kwargs) Create and return a new object. See help(type) for accurate signature. .UNINDENT .INDENT 7.0 .TP .B _unhashable_values_ = [] .UNINDENT .INDENT 7.0 .TP .B _use_args_ = True .UNINDENT .INDENT 7.0 .TP .B _value2member_map_ = {b\(aq#Ang\(aq: Unit.Angle, b\(aq#Mlm\(aq: Unit.Millimeters, b\(aq#Nne\(aq: Unit._None, b\(aq#Pnt\(aq: Unit.Points, b\(aq#Prc\(aq: Unit.Percent, b\(aq#Pxl\(aq: Unit.Pixels, b\(aq#Rlt\(aq: Unit.Distance, b\(aq#Rsl\(aq: Unit.Density} .UNINDENT .INDENT 7.0 .TP .B _value_repr_() Return repr(self). .UNINDENT .UNINDENT .SH INDICES AND TABLES .INDENT 0.0 .IP \(bu 2 \fI\%Index\fP .IP \(bu 2 \fI\%Module Index\fP .IP \(bu 2 \fI\%Search Page\fP .UNINDENT .SH AUTHOR Kota Yamaguchi .SH COPYRIGHT 2023, Kota Yamaguchi .\" Generated by docutils manpage writer. .