xtd 0.2.0
crop_effect.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "effect.hpp"
6#include "../../color.hpp"
7#include "../../system_colors.hpp"
8
10namespace xtd {
12 namespace drawing {
15 namespace imaging {
17 namespace effects {
38
41 crop_effect() = default;
50
52
57
60 void size(const xtd::drawing::size& value);
62
63 protected:
65
70 void apply(xtd::drawing::image& image) const override;
72 };
73 }
74 }
75 }
76}
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
The xtd::drawing::imaging::effects::crop_effect crops the image with new rectangle.
Definition crop_effect.hpp:36
void size(const xtd::drawing::size &value)
Sets the new size.
crop_effect(const xtd::drawing::rectangle &rectangle)
Initialise the new instance of xtd::drawing::imaging::crop_effect with specified rectangle.
void apply(xtd::drawing::image &image) const override
Apply the effect.
crop_effect(const xtd::drawing::size &size)
Initialise the new instance of xtd::drawing::imaging::crop_effect with specified size.
xtd::drawing::rectangle rectangle
Gets or sets the new rectangle.
Definition crop_effect.hpp:56
crop_effect()=default
Initialise the new instance of xtd::drawing::imaging::crop_effect object.
Represents the base class for all effects.
Definition effect.hpp:31
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