Function vizia::vg::image_filters::drop_shadow

pub fn drop_shadow(
    offset: impl Into<Point>,
    _: (f32, f32),
    color: impl Into<Color>,
    input: impl Into<Option<RCHandle<SkImageFilter>>>,
    crop_rect: impl Into<CropRect>,
) -> Option<RCHandle<SkImageFilter>>
Expand description

Create a filter that draws a drop shadow under the input content. This filter produces an image that includes the inputs’ content.

  • offset - The offset of the shadow.
  • sigma_x - The blur radius for the shadow, along the X axis.
  • sigma_y - The blur radius for the shadow, along the Y axis.
  • color - The color of the drop shadow.
  • input - The input filter, or will use the source bitmap if this is null.
  • crop_rect - Optional rectangle that crops the input and output.