xtd 0.2.0
rotate_flip_type.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace drawing {
19  enum class rotate_flip_type {
28 
32  rotate_90_flip_x = 5,
37 
46 
55  };
56  }
57 }
58 
60 template<> struct xtd::enum_register<xtd::drawing::rotate_flip_type> {
62 };
rotate_flip_type
Specifies how much an image is rotated and the axis used to flip the image.
Definition: rotate_flip_type.h:19
Specifies a 270-degree clockwise rotation followed by a horizontal flip.
Specifies a 180-degree clockwise rotation followed by a vertical flip.
Specifies a 270-degree clockwise rotation without flipping.
Specifies no clockwise rotation followed by a horizontal flip.
Specifies a 180-degree clockwise rotation without flipping.
Specifies a 270-degree clockwise rotation followed by a vertical flip.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
Specifies no clockwise rotation followed by a vertical flip.
Specifies a 90-degree clockwise rotation followed by a horizontal flip.
Specifies no clockwise rotation followed by a horizontal and vertical flip.
Specifies a 90-degree clockwise rotation followed by a horizontal and vertical flip.
Specifies a 270-degree clockwise rotation followed by a horizontal and vertical flip.
Specifies a 90-degree clockwise rotation followed by a vertical flip.
Specifies a 90-degree clockwise rotation without flipping.
Specifies no clockwise rotation and no flipping.
Specifies a 180-degree clockwise rotation followed by a horizontal flip.
Specifies a 180-degree clockwise rotation followed by a horizontal and vertical flip.
Provides the registration struct for enumerations.
Definition: enum_register.h:36