6#include "../../color.hpp"
7#include "../../system_colors.hpp"
Represents an ARGB (alpha, red, green, blue) color.
Definition color.hpp:49
static const xtd::drawing::color transparent
Gets a system-defined color that has an ARGB value of 0x00000000. This field is constant.
Definition color.hpp:59
An abstract base class that provides functionality for the bitmap and metafile descended classes.
Definition image.hpp:53
Contains xtd::drawing::imaging::effects::effect struct.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10
Represents the base class for all effects.
Definition effect.hpp:31
The xtd::drawing::imaging::effects::resize_effect resizes the image with new rectangle and optionnaly...
Definition resize_effect.hpp:35
void apply(xtd::drawing::image &image) const override
Apply the effect.
resize_effect(const xtd::drawing::rectangle &rectangle, bool auto_determine_fill_color)
Initialise the new instance of xtd::drawing::imaging::resize with rectangle and auto determine fill c...
bool auto_determine_fill_color
Gets or sets the fill color.
Definition resize_effect.hpp:79
resize_effect(const xtd::drawing::size &size, bool auto_determine_fill_color)
Initialise the new instance of xtd::drawing::imaging::resize_effect with size and auto determine fill...
resize_effect()=default
Initialise the new instance of xtd::drawing::imaging::resize_effect object.
void size(const xtd::drawing::size &value)
Sets the new size.
xtd::drawing::color fill_color
Gets or sets the fill color.
Definition resize_effect.hpp:85
xtd::drawing::rectangle rectangle
Gets or sets the new rectangle.
Definition resize_effect.hpp:89
resize_effect(const xtd::drawing::rectangle &rectangle)
Initialise the new instance of xtd::drawing::imaging::resize with rectangle.
resize_effect(const xtd::drawing::size &size, const xtd::drawing::color &fill_color)
Initialise the new instance of xtd::drawing::imaging::resize_effect resize with size and fill color.
resize_effect(const xtd::drawing::size &size)
Initialise the new instance of xtd::drawing::imaging::resize_effect with size.
resize_effect(const xtd::drawing::rectangle &rectangle, const xtd::drawing::color &fill_color)
Initialise the new instance of xtd::drawing::imaging::resize with rectangle and fill color.
Stores a set of four integers that represent the location and size of a rectangle.
Definition rectangle.hpp:44
Stores an ordered pair of integers, which specify a height and width.
Definition size.hpp:31