Skip to content

artlayer

ArtLayer

Bases: Photoshop

An object within a document that contains the visual elements of the image

(equivalent to a layer in the Adobe Photoshop application).

Source code in photoshop/api/_artlayer.py
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
class ArtLayer(Photoshop):
    """An object within a document that contains the visual elements of the image

    (equivalent to a layer in the Adobe Photoshop application).

    """

    def __init__(self, parent: Any = None):
        super().__init__(parent=parent)
        self._flag_as_method(
            "add",
            "adjustBrightnessContrast",
            "adjustColorBalance",
            "adjustCurves",
            "adjustLevels",
            "applyAddNoise",
            "applyAverage",
            "applyBlur",
            "applyBlurMore",
            "applyClouds",
            "applyCustomFilter",
            "applyDeInterlace",
            "applyDespeckle",
            "applyDifferenceClouds",
            "applyDiffuseGlow",
            "applyDisplace",
            "applyDustAndScratches",
            "applyGaussianBlur",
            "applyGlassEffect",
            "applyHighPass",
            "applyLensBlur",
            "applyLensFlare",
            "applyMaximum",
            "applyMedianNoise",
            "applyMinimum",
            "applyMotionBlur",
            "applyNTSC",
            "applyOceanRipple",
            "applyOffset",
            "applyPinch",
            "delete",
            "duplicate",
            "invert",
            "link",
            "merge",
            "move",
            "posterize",
            "rasterize",
            "unlink",
        )

    @property
    def allLocked(self):
        return self.app.allLocked

    @allLocked.setter
    def allLocked(self, value):
        self.app.allLocked = value

    @property
    def blendMode(self):
        return self.app.blendMode

    @blendMode.setter
    def blendMode(self, mode):
        self.app.blendMode = mode

    @property
    def bounds(self):
        """The bounding rectangle of the layer."""
        return self.app.bounds

    @property
    def linkedLayers(self) -> list:
        """Get all layers linked to this layer.

        Returns:
            list: Layer objects"""
        return [ArtLayer(layer) for layer in self.app.linkedLayers]

    @property
    def name(self) -> str:
        return self.app.name

    @name.setter
    def name(self, text: str):
        self.app.name = text

    @property
    def fillOpacity(self):
        """The interior opacity of the layer. Range: 0.0 to 100.0."""
        return self.app.fillOpacity

    @fillOpacity.setter
    def fillOpacity(self, value):
        """The interior opacity of the layer. Range: 0.0 to 100.0."""
        self.app.fillOpacity = value

    @property
    def filterMaskDensity(self):
        return self.app.filterMaskDensity

    @filterMaskDensity.setter
    def filterMaskDensity(self, value):
        self.app.filterMaskDensity = value

    @property
    def filterMaskFeather(self):
        return self.app.filterMaskFeather

    @filterMaskFeather.setter
    def filterMaskFeather(self, value):
        self.app.filterMaskFeather = value

    @property
    def grouped(self) -> bool:
        """If true, the layer is grouped with the layer below."""
        return self.app.grouped

    @grouped.setter
    def grouped(self, value):
        self.app.grouped = value

    @property
    def isBackgroundLayer(self):
        """bool: If true, the layer is a background layer."""
        return self.app.isBackgroundLayer

    @isBackgroundLayer.setter
    def isBackgroundLayer(self, value):
        self.app.isBackgroundLayer = value

    @property
    def kind(self):
        """Sets the layer kind (such as ‘text layer’) for an empty layer.

        Valid only when the layer is empty and when `isBackgroundLayer` is
        false. You can use the ‘kind ‘ property to make a background layer a
         normal layer; however, to make a layer a background layer, you must
         set `isBackgroundLayer` to true.

        """
        return LayerKind(self.app.kind)

    @kind.setter
    def kind(self, layer_type):
        """set the layer kind."""
        self.app.kind = layer_type

    @property
    def layerMaskDensity(self):
        """The density of the layer mask (between 0.0 and 100.0)."""
        return self.app.layerMaskDensity

    @layerMaskDensity.setter
    def layerMaskDensity(self, value):
        self.app.layerMaskDensity = value

    @property
    def layerMaskFeather(self):
        """The feather of the layer mask (between 0.0 and 250.0)."""
        return self.app.layerMaskFeather

    @layerMaskFeather.setter
    def layerMaskFeather(self, value):
        self.app.layerMaskFeather = value

    @property
    def opacity(self):
        """The master opacity of the layer."""
        return round(self.app.opacity)

    @opacity.setter
    def opacity(self, value):
        self.app.opacity = value

    @property
    def parent(self):
        """The object’s container."""
        return self.app.parent

    @parent.setter
    def parent(self, value):
        """Set the object’s container."""
        self.app.parent = value

    @property
    def pixelsLocked(self):
        """If true, the pixels in the layer’s image cannot be edited."""
        return self.app.pixelsLocked

    @pixelsLocked.setter
    def pixelsLocked(self, value):
        self.app.pixelsLocked = value

    @property
    def positionLocked(self):
        """bool: If true, the pixels in the layer’s image cannot be moved
        within the layer."""
        return self.app.positionLocked

    @positionLocked.setter
    def positionLocked(self, value):
        self.app.positionLocked = value

    @property
    def textItem(self) -> TextItem:
        """The text that is associated with the layer. Valid only when ‘kind’
        is text layer.

        returns:
            TextItem:
        """
        return TextItem(self.app.textItem)

    @textItem.setter
    def textItem(self, value):
        self.app.textItem = value

    @property
    def transparentPixelsLocked(self):
        return self.app.transparentPixelsLocked

    @transparentPixelsLocked.setter
    def transparentPixelsLocked(self, value):
        self.app.transparentPixelsLocked = value

    @property
    def vectorMaskDensity(self):
        return self.app.vectorMaskDensity

    @vectorMaskDensity.setter
    def vectorMaskDensity(self, value):
        self.app.vectorMaskDensity = value

    @property
    def vectorMaskFeather(self):
        return self.app.vectorMaskFeather

    @vectorMaskFeather.setter
    def vectorMaskFeather(self, value):
        self.app.vectorMaskFeather = value

    @property
    def visible(self):
        return self.app.visible

    @visible.setter
    def visible(self, value):
        self.app.visible = value

    @property
    def length(self):
        return len(list(self.app))

    def add(self):
        return self.app.add()

    def adjustBrightnessContrast(self, brightness, contrast):
        """Adjusts the brightness and contrast.

        Args:
            brightness (int): The brightness amount. Range: -100 to 100.
            contrast (int): The contrast amount. Range: -100 to 100.

        """
        return self.app.adjustBrightnessContrast(brightness, contrast)

    def adjustColorBalance(
        self,
        shadows,
        midtones,
        highlights,
        preserveLuminosity,
    ):
        """Adjusts the color balance of the layer’s component channels.

        Args:
            shadows: The adjustments for the shadows. The array must include
                     three values (in the range -100 to 100), which represent
                     cyan or red, magenta or green, and yellow or blue, when
                     the document mode is CMYK or RGB.
            midtones: The adjustments for the midtones. The array must include
                      three values (in the range -100 to 100), which represent
                      cyan or red, magenta or green, and yellow or blue, when
                      the document mode is CMYK or RGB.
            highlights: The adjustments for the highlights. The array must
                        include three values (in the range -100 to 100), which
                        represent cyan or red, magenta or green, and yellow or
                        blue, when the document mode is CMYK or RGB.
            preserveLuminosity: If true, luminosity is preserved.

        """
        return self.app.adjustColorBalance(
            shadows,
            midtones,
            highlights,
            preserveLuminosity,
        )

    def adjustCurves(self, curveShape):
        """Adjusts the tonal range of the selected channel using up to fourteen
        points.



        Args:
            curveShape: The curve points. The number of points must be between
                2 and 14.

        Returns:

        """
        return self.app.adjustCurves(curveShape)

    def adjustLevels(
        self,
        inputRangeStart,
        inputRangeEnd,
        inputRangeGamma,
        outputRangeStart,
        outputRangeEnd,
    ):
        """Adjusts levels of the selected channels.

        Args:
            inputRangeStart:
            inputRangeEnd:
            inputRangeGamma:
            outputRangeStart:
            outputRangeEnd:

        Returns:

        """
        return self.app.adjustLevels(
            inputRangeStart,
            inputRangeEnd,
            inputRangeGamma,
            outputRangeStart,
            outputRangeEnd,
        )

    def applyAddNoise(self, amount, distribution, monochromatic):
        return self.app.applyAddNoise(amount, distribution, monochromatic)

    def applyDiffuseGlow(self, graininess, amount, clear_amount):
        """Applies the diffuse glow filter.

        Args:
            graininess: The amount of graininess. Range: 0 to 10.
            amount: The glow amount. Range: 0 to 20.
            clear_amount: The clear amount. Range: 0 to 20.

        Returns:

        """
        return self.app.applyDiffuseGlow(graininess, amount, clear_amount)

    def applyAverage(self):
        """Applies the average filter."""
        return self.app.applyAverage()

    def applyBlur(self):
        """Applies the blur filter."""
        return self.app.applyBlur()

    def applyBlurMore(self):
        """Applies the blur more filter."""
        return self.app.applyBlurMore()

    def applyClouds(self):
        """Applies the clouds filter."""
        return self.app.applyClouds()

    def applyCustomFilter(self, characteristics, scale, offset):
        """Applies the custom filter."""
        return self.app.applyCustomFilter(characteristics, scale, offset)

    def applyDeInterlace(self, eliminateFields, createFields):
        """Applies the de-interlace filter."""
        return self.app.applyDeInterlace(eliminateFields, createFields)

    def applyDespeckle(self):
        return self.app.applyDespeckle()

    def applyDifferenceClouds(self):
        """Applies the difference clouds filter."""
        return self.app.applyDifferenceClouds()

    def applyDisplace(
        self,
        horizontalScale,
        verticalScale,
        displacementType,
        undefinedAreas,
        displacementMapFile,
    ):
        """Applies the displace filter."""
        return self.app.applyDisplace(
            horizontalScale,
            verticalScale,
            displacementType,
            undefinedAreas,
            displacementMapFile,
        )

    def applyDustAndScratches(self, radius, threshold):
        """Applies the dust and scratches filter."""
        return self.app.applyDustAndScratches(radius, threshold)

    def applyGaussianBlur(self, radius):
        """Applies the gaussian blur filter."""
        return self.app.applyGaussianBlur(radius)

    def applyGlassEffect(
        self,
        distortion,
        smoothness,
        scaling,
        invert,
        texture,
        textureFile,
    ):
        return self.app.applyGlassEffect(
            distortion,
            smoothness,
            scaling,
            invert,
            texture,
            textureFile,
        )

    def applyHighPass(self, radius):
        """Applies the high pass filter."""
        return self.app.applyHighPass(radius)

    def applyLensBlur(
        self,
        source,
        focalDistance,
        invertDepthMap,
        shape,
        radius,
        bladeCurvature,
        rotation,
        brightness,
        threshold,
        amount,
        distribution,
        monochromatic,
    ):
        """Apply the lens blur filter."""
        return self.app.applyLensBlur(
            source,
            focalDistance,
            invertDepthMap,
            shape,
            radius,
            bladeCurvature,
            rotation,
            brightness,
            threshold,
            amount,
            distribution,
            monochromatic,
        )

    def applyLensFlare(self, brightness, flareCenter, lensType):
        return self.app.applyLensFlare(brightness, flareCenter, lensType)

    def applyMaximum(self, radius):
        self.app.applyMaximum(radius)

    def applyMedianNoise(self, radius):
        self.app.applyMedianNoise(radius)

    def applyMinimum(self, radius):
        self.app.applyMinimum(radius)

    def applyMotionBlur(self, angle, radius):
        self.app.applyMotionBlur(angle, radius)

    def applyNTSC(self):
        self.app.applyNTSC()

    def applyOceanRipple(self, size, magnitude):
        self.app.applyOceanRipple(size, magnitude)

    def applyOffset(self, horizontal, vertical, undefinedAreas):
        self.app.applyOffset(horizontal, vertical, undefinedAreas)

    def applyPinch(self, amount):
        self.app.applyPinch(amount)

    def remove(self):
        """Removes this layer from the document."""
        self.app.delete()

    def rasterize(self, target: RasterizeType):
        self.app.rasterize(target)

    def posterize(self, levels):
        self.app.posterize(levels)

    def move(self, relativeObject, insertionLocation):
        self.app.move(relativeObject, insertionLocation)

    def merge(self):
        return ArtLayer(self.app.merge())

    def link(self, with_layer):
        self.app.link(with_layer)

    def unlink(self):
        """Unlink this layer from any linked layers."""
        self.app.unlink()

    def invert(self):
        self.app.invert()

    def duplicate(self, relativeObject=None, insertionLocation=None):
        return ArtLayer(self.app.duplicate(relativeObject, insertionLocation))

bounds property

The bounding rectangle of the layer.

fillOpacity property writable

The interior opacity of the layer. Range: 0.0 to 100.0.

grouped: bool property writable

If true, the layer is grouped with the layer below.

isBackgroundLayer property writable

kind property writable

Sets the layer kind (such as ‘text layer’) for an empty layer.

Valid only when the layer is empty and when isBackgroundLayer is false. You can use the ‘kind ‘ property to make a background layer a normal layer; however, to make a layer a background layer, you must set isBackgroundLayer to true.

layerMaskDensity property writable

The density of the layer mask (between 0.0 and 100.0).

layerMaskFeather property writable

The feather of the layer mask (between 0.0 and 250.0).

linkedLayers: list property

Get all layers linked to this layer.

Returns:

Name Type Description
list list

Layer objects

opacity property writable

The master opacity of the layer.

parent property writable

The object’s container.

pixelsLocked property writable

If true, the pixels in the layer’s image cannot be edited.

positionLocked property writable

within the layer.

textItem: TextItem property writable

The text that is associated with the layer. Valid only when ‘kind’ is text layer.

Returns:

Name Type Description
TextItem TextItem

adjustBrightnessContrast(brightness, contrast)

Adjusts the brightness and contrast.

Parameters:

Name Type Description Default
brightness int

The brightness amount. Range: -100 to 100.

required
contrast int

The contrast amount. Range: -100 to 100.

required
Source code in photoshop/api/_artlayer.py
270
271
272
273
274
275
276
277
278
def adjustBrightnessContrast(self, brightness, contrast):
    """Adjusts the brightness and contrast.

    Args:
        brightness (int): The brightness amount. Range: -100 to 100.
        contrast (int): The contrast amount. Range: -100 to 100.

    """
    return self.app.adjustBrightnessContrast(brightness, contrast)

adjustColorBalance(shadows, midtones, highlights, preserveLuminosity)

Adjusts the color balance of the layer’s component channels.

Parameters:

Name Type Description Default
shadows

The adjustments for the shadows. The array must include three values (in the range -100 to 100), which represent cyan or red, magenta or green, and yellow or blue, when the document mode is CMYK or RGB.

required
midtones

The adjustments for the midtones. The array must include three values (in the range -100 to 100), which represent cyan or red, magenta or green, and yellow or blue, when the document mode is CMYK or RGB.

required
highlights

The adjustments for the highlights. The array must include three values (in the range -100 to 100), which represent cyan or red, magenta or green, and yellow or blue, when the document mode is CMYK or RGB.

required
preserveLuminosity

If true, luminosity is preserved.

required
Source code in photoshop/api/_artlayer.py
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
def adjustColorBalance(
    self,
    shadows,
    midtones,
    highlights,
    preserveLuminosity,
):
    """Adjusts the color balance of the layer’s component channels.

    Args:
        shadows: The adjustments for the shadows. The array must include
                 three values (in the range -100 to 100), which represent
                 cyan or red, magenta or green, and yellow or blue, when
                 the document mode is CMYK or RGB.
        midtones: The adjustments for the midtones. The array must include
                  three values (in the range -100 to 100), which represent
                  cyan or red, magenta or green, and yellow or blue, when
                  the document mode is CMYK or RGB.
        highlights: The adjustments for the highlights. The array must
                    include three values (in the range -100 to 100), which
                    represent cyan or red, magenta or green, and yellow or
                    blue, when the document mode is CMYK or RGB.
        preserveLuminosity: If true, luminosity is preserved.

    """
    return self.app.adjustColorBalance(
        shadows,
        midtones,
        highlights,
        preserveLuminosity,
    )

adjustCurves(curveShape)

Adjusts the tonal range of the selected channel using up to fourteen points.

Parameters:

Name Type Description Default
curveShape

The curve points. The number of points must be between 2 and 14.

required
Source code in photoshop/api/_artlayer.py
312
313
314
315
316
317
318
319
320
321
322
323
324
325
def adjustCurves(self, curveShape):
    """Adjusts the tonal range of the selected channel using up to fourteen
    points.



    Args:
        curveShape: The curve points. The number of points must be between
            2 and 14.

    Returns:

    """
    return self.app.adjustCurves(curveShape)

adjustLevels(inputRangeStart, inputRangeEnd, inputRangeGamma, outputRangeStart, outputRangeEnd)

Adjusts levels of the selected channels.

Parameters:

Name Type Description Default
inputRangeStart
required
inputRangeEnd
required
inputRangeGamma
required
outputRangeStart
required
outputRangeEnd
required
Source code in photoshop/api/_artlayer.py
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
def adjustLevels(
    self,
    inputRangeStart,
    inputRangeEnd,
    inputRangeGamma,
    outputRangeStart,
    outputRangeEnd,
):
    """Adjusts levels of the selected channels.

    Args:
        inputRangeStart:
        inputRangeEnd:
        inputRangeGamma:
        outputRangeStart:
        outputRangeEnd:

    Returns:

    """
    return self.app.adjustLevels(
        inputRangeStart,
        inputRangeEnd,
        inputRangeGamma,
        outputRangeStart,
        outputRangeEnd,
    )

applyAverage()

Applies the average filter.

Source code in photoshop/api/_artlayer.py
371
372
373
def applyAverage(self):
    """Applies the average filter."""
    return self.app.applyAverage()

applyBlur()

Applies the blur filter.

Source code in photoshop/api/_artlayer.py
375
376
377
def applyBlur(self):
    """Applies the blur filter."""
    return self.app.applyBlur()

applyBlurMore()

Applies the blur more filter.

Source code in photoshop/api/_artlayer.py
379
380
381
def applyBlurMore(self):
    """Applies the blur more filter."""
    return self.app.applyBlurMore()

applyClouds()

Applies the clouds filter.

Source code in photoshop/api/_artlayer.py
383
384
385
def applyClouds(self):
    """Applies the clouds filter."""
    return self.app.applyClouds()

applyCustomFilter(characteristics, scale, offset)

Applies the custom filter.

Source code in photoshop/api/_artlayer.py
387
388
389
def applyCustomFilter(self, characteristics, scale, offset):
    """Applies the custom filter."""
    return self.app.applyCustomFilter(characteristics, scale, offset)

applyDeInterlace(eliminateFields, createFields)

Applies the de-interlace filter.

Source code in photoshop/api/_artlayer.py
391
392
393
def applyDeInterlace(self, eliminateFields, createFields):
    """Applies the de-interlace filter."""
    return self.app.applyDeInterlace(eliminateFields, createFields)

applyDifferenceClouds()

Applies the difference clouds filter.

Source code in photoshop/api/_artlayer.py
398
399
400
def applyDifferenceClouds(self):
    """Applies the difference clouds filter."""
    return self.app.applyDifferenceClouds()

applyDiffuseGlow(graininess, amount, clear_amount)

Applies the diffuse glow filter.

Parameters:

Name Type Description Default
graininess

The amount of graininess. Range: 0 to 10.

required
amount

The glow amount. Range: 0 to 20.

required
clear_amount

The clear amount. Range: 0 to 20.

required
Source code in photoshop/api/_artlayer.py
358
359
360
361
362
363
364
365
366
367
368
369
def applyDiffuseGlow(self, graininess, amount, clear_amount):
    """Applies the diffuse glow filter.

    Args:
        graininess: The amount of graininess. Range: 0 to 10.
        amount: The glow amount. Range: 0 to 20.
        clear_amount: The clear amount. Range: 0 to 20.

    Returns:

    """
    return self.app.applyDiffuseGlow(graininess, amount, clear_amount)

applyDisplace(horizontalScale, verticalScale, displacementType, undefinedAreas, displacementMapFile)

Applies the displace filter.

Source code in photoshop/api/_artlayer.py
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
def applyDisplace(
    self,
    horizontalScale,
    verticalScale,
    displacementType,
    undefinedAreas,
    displacementMapFile,
):
    """Applies the displace filter."""
    return self.app.applyDisplace(
        horizontalScale,
        verticalScale,
        displacementType,
        undefinedAreas,
        displacementMapFile,
    )

applyDustAndScratches(radius, threshold)

Applies the dust and scratches filter.

Source code in photoshop/api/_artlayer.py
419
420
421
def applyDustAndScratches(self, radius, threshold):
    """Applies the dust and scratches filter."""
    return self.app.applyDustAndScratches(radius, threshold)

applyGaussianBlur(radius)

Applies the gaussian blur filter.

Source code in photoshop/api/_artlayer.py
423
424
425
def applyGaussianBlur(self, radius):
    """Applies the gaussian blur filter."""
    return self.app.applyGaussianBlur(radius)

applyHighPass(radius)

Applies the high pass filter.

Source code in photoshop/api/_artlayer.py
445
446
447
def applyHighPass(self, radius):
    """Applies the high pass filter."""
    return self.app.applyHighPass(radius)

applyLensBlur(source, focalDistance, invertDepthMap, shape, radius, bladeCurvature, rotation, brightness, threshold, amount, distribution, monochromatic)

Apply the lens blur filter.

Source code in photoshop/api/_artlayer.py
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
def applyLensBlur(
    self,
    source,
    focalDistance,
    invertDepthMap,
    shape,
    radius,
    bladeCurvature,
    rotation,
    brightness,
    threshold,
    amount,
    distribution,
    monochromatic,
):
    """Apply the lens blur filter."""
    return self.app.applyLensBlur(
        source,
        focalDistance,
        invertDepthMap,
        shape,
        radius,
        bladeCurvature,
        rotation,
        brightness,
        threshold,
        amount,
        distribution,
        monochromatic,
    )

remove()

Removes this layer from the document.

Source code in photoshop/api/_artlayer.py
507
508
509
def remove(self):
    """Removes this layer from the document."""
    self.app.delete()

Unlink this layer from any linked layers.

Source code in photoshop/api/_artlayer.py
526
527
528
def unlink(self):
    """Unlink this layer from any linked layers."""
    self.app.unlink()

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