Lines Matching defs:info
59 std::cout << " --help help info." << std::endl;
68 std::cout << " --mirror (optional) image mirror info. 0: HORIZONTAL, 1: VERTICAL" << std::endl;
69 std::cout << " --rotate (optional) image rotate info. " << rotateValueOpt << std::endl;
122 static string GetMirrorPrintInfo(ImageMirror info)
124 if (info == ImageMirror::NONE) {
127 if (info == ImageMirror::HORIZONTAL) {
130 if (info == ImageMirror::VERTICAL) {
133 return "unknown mirror info";
136 static string GetRotatePrintInfo(ImageRotation info)
138 if (info == ImageRotation::NONE) {
141 if (info == ImageRotation::ANTI_CLOCKWISE_90) {
144 if (info == ImageRotation::ANTI_CLOCKWISE_180) {
147 if (info == ImageRotation::ANTI_CLOCKWISE_270) {
150 return "unknown rotate info";