xtd 0.2.0
drop_shadow_effect.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "effect.hpp"
6#include "../../color.hpp"
8
10namespace xtd {
12 namespace drawing {
15 namespace imaging {
17 namespace effects {
79 }
80 }
81 }
82}
Represents an ARGB (alpha, red, green, blue) color.
Definition color.hpp:46
static const xtd::drawing::color black
Gets a system-defined color that has an ARGB value of 0xFF000000. This field is constant.
Definition color.hpp:80
An abstract base class that provides functionality for the bitmap and metafile descended classes.
Definition image.hpp:49
Contains xtd::drawing::color class.
Contains xtd::drawing::imaging::effects::effect struct.
int32_t int32
Represents a 32-bit signed integer.
Definition int32.hpp:23
The xtd::drawing::imaging::effects namespace provides functionality for adding effects to images.
Definition bitonal_effect.hpp:16
The xtd::drawing::imaging namespace provides advanced GDI+ imaging functionality. Basic graphics func...
Definition bitmap_data.hpp:15
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
drop_shadow_effect()=default
Initialise the new instance of xtd::drawing::imaging::drop_shadow_effect object.
void apply(xtd::drawing::image &image) const override
Apply the effect.
int32 blur
Gets or sets the shadow blur radius.
Definition drop_shadow_effect.hpp:60
drop_shadow_effect(const xtd::drawing::size &shadow, int32 blur)
Initialise the new instance of xtd::drawing::imaging::drop_shadow_effect with horizontal and vertical...
drop_shadow_effect(const xtd::drawing::size &shadow, int32 blur, const xtd::drawing::color &color)
Initialise the new instance of xtd::drawing::imaging::drop_shadow_effect with horizontal and vertical...
xtd::drawing::size shadow
Gets or sets the horizontal and vertical shadow.
Definition drop_shadow_effect.hpp:66
drop_shadow_effect(const xtd::drawing::size &shadow)
Initialise the new instance of xtd::drawing::imaging::drop_shadow_effect with horizontal and vertical...
xtd::drawing::color color
Gets or sets the shadow color.
Definition drop_shadow_effect.hpp:63
Represents the base class for all effects.
Definition effect.hpp:31
Stores an ordered pair of integers, which specify a height and width.
Definition size.hpp:32
Contains xtd::drawing::system_colors factory.