Skip to main content

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

What does this warning message mean

Comments

2 comments

  • Eric Valk

    Rasterizing converts the Mask to a table of values for each pixel. There is no impact to the image pixels or to other layers.

    It means you can't go back and change the settings of the gradient mask.

    Parametric Mask means that the strength of the mask at each pixel is determined by a formula. The formula has parameters that determine its result.

    Simplified example:  For a horizontal gradient, suppose that X is the horizontal position of a pixel. The mask strength, M, for each pixel is  M=aX+b, where a and b are the parameters. b is the mask strength at the first pixel. a is how much the mask strength rises for each horizontal pixel. More formally one would write this as M(X), meaning that M changes with X.

    After rasterisation the formula is replaced by a list {M1, M2, M3, M4, ....}

    The actual implementation is more complex because each pixel has an X and a Y postion, the gradient can be both horizontal and vertical, the start position isn't an edge of the image, the end position isn't an edge of the image, the curve might be something more complicated than a straight line, and the user wants to set ending value not the rise per pixel. But its all just algebra.

    0
  • Permanently deleted user

    Thanks for the really clear explanation, I did not realize it was layer specific. 

    0

Post is closed for comments.