Skip to content

bmp

Options for saving a document in BMO format.

BMPSaveOptions

Bases: Photoshop

Options for saving a document in BMP format.

Source code in photoshop/api/save_options/bmp.py
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class BMPSaveOptions(Photoshop):
    """Options for saving a document in BMP format."""

    object_name = "BMPSaveOptions"

    def __init__(self):
        super().__init__()

    @property
    def alphaChannels(self):
        """State to save the alpha channels."""
        return self.app.alphaChannels

    @alphaChannels.setter
    def alphaChannels(self, value):
        """Sets whether to save the alpha channels or not.

        Args:

        """
        self.app.alphaChannels = value

alphaChannels property writable

State to save the alpha channels.


Last update: 2024-03-05
Created: 2024-03-05