C++ port: add header file change
[zxing.git] / cpp / core / src / zxing / LuminanceSource.cpp
1 /*
2  *  LuminanceSource.cpp
3  *  zxing
4  *
5  *  Created by Ralf Kistner on 16/10/2009.
6  *  Copyright 2008 ZXing authors All rights reserved.
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20
21 #include <zxing/LuminanceSource.h>
22 #include <zxing/common/IllegalArgumentException.h>
23
24 namespace zxing {
25
26 LuminanceSource::LuminanceSource() {
27 }
28
29 LuminanceSource::~LuminanceSource() {
30 }
31
32 unsigned char* LuminanceSource::getMatrix() {
33   int width = getWidth();
34   int height =  getHeight();
35   unsigned char* matrix = new unsigned char[width * height];
36   unsigned char* row = new unsigned char[width];
37   for (int y = 0; y < height; y++) {
38     getRow(y, row);
39     memcpy(&matrix[y * width], row, width);
40   }
41   delete [] row;
42   return matrix;
43 }
44
45 bool LuminanceSource::isCropSupported() const {
46   return false;
47 }
48
49 Ref<LuminanceSource> LuminanceSource::crop(int left, int top, int width, int height) {
50   throw IllegalArgumentException("This luminance source does not support cropping.");
51 }
52
53 bool LuminanceSource::isRotateSupported() const {
54   return false;
55 }
56
57 Ref<LuminanceSource> LuminanceSource::rotateCounterClockwise() {
58   throw IllegalArgumentException("This luminance source does not support rotation.");
59 }
60
61 }