c38d1a105be90db1cfb4a970dc27a73e0786fd2c
[zxing.git] / cpp / core / src / zxing / common / GreyscaleRotatedLuminanceSource.h
1 #ifndef __GREYSCALE_ROTATED_LUMINANCE_SOURCE__
2 #define __GREYSCALE_ROTATED_LUMINANCE_SOURCE__
3 /*
4  *  GreyscaleRotatedLuminanceSource.h
5  *  zxing
6  *
7  *  Copyright 2010 ZXing authors All rights reserved.
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21
22
23 #include <zxing/LuminanceSource.h>
24
25 namespace zxing {
26
27 class GreyscaleRotatedLuminanceSource : public LuminanceSource {
28  private:
29   unsigned char* greyData_;
30   int dataWidth_;
31   int dataHeight_;
32   int left_;
33   int top_;
34   int width_;
35   int height_;
36
37 public:
38   GreyscaleRotatedLuminanceSource(unsigned char* greyData, int dataWidth, int dataHeight, int left, int top,
39       int width, int height);
40
41   unsigned char* getRow(int y, unsigned char* row);
42
43   unsigned char* getMatrix();
44
45   bool isRotateSupported() const {
46     return false;
47   }
48
49   int getWidth() const {
50     return width_;
51   }
52
53   int getHeight() const {
54     return height_;
55   }
56
57 };
58 } /* namespace */
59
60
61 #endif