xtd 0.2.0
rotate_flip_effect.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "effect.hpp"
6#include "../../color.hpp"
7#include "../../rotate_flip_type.hpp"
8
10namespace xtd {
12 namespace drawing {
15 namespace imaging {
17 namespace effects {
37
40 rotate_flip_effect() = default;
45
47
53
54 protected:
56
61 void apply(xtd::drawing::image& image) const override;
63 };
64 }
65 }
66 }
67}
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.
rotate_flip_type
Specifies how much an image is rotated and the axis used to flip the image.
Definition rotate_flip_type.hpp:19
@ rotate_none_flip_none
Specifies no clockwise rotation and no flipping.
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::rotate_flip_effect Rotates, flips, or rotates and flips of the im...
Definition rotate_flip_effect.hpp:35
rotate_flip_effect()=default
Initialise the new instance of xtd::drawing::imaging::rotate_flip_effect object.
rotate_flip_effect(xtd::drawing::rotate_flip_type rotate_flip_type)
Initialise the new instance of xtd::drawing::imaging::rotate_flip_effect object with specified percen...
void apply(xtd::drawing::image &image) const override
Apply the effect.