2011-11-16 13:40:46 +00:00
|
|
|
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
|
|
|
/*
|
|
|
|
* LuminanceSource.cpp
|
|
|
|
* zxing
|
|
|
|
*
|
|
|
|
* Copyright 2008 ZXing authors All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <zxing/LuminanceSource.h>
|
|
|
|
#include <zxing/common/IllegalArgumentException.h>
|
|
|
|
|
|
|
|
namespace zxing {
|
|
|
|
|
|
|
|
LuminanceSource::LuminanceSource() {
|
|
|
|
}
|
|
|
|
|
|
|
|
LuminanceSource::~LuminanceSource() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LuminanceSource::isCropSupported() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<LuminanceSource> LuminanceSource::crop(int left, int top, int width, int height) {
|
2012-05-13 20:47:37 +00:00
|
|
|
(void)left;
|
|
|
|
(void)top;
|
|
|
|
(void)width;
|
|
|
|
(void)height;
|
2011-11-16 13:40:46 +00:00
|
|
|
throw IllegalArgumentException("This luminance source does not support cropping.");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LuminanceSource::isRotateSupported() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<LuminanceSource> LuminanceSource::rotateCounterClockwise() {
|
|
|
|
throw IllegalArgumentException("This luminance source does not support rotation.");
|
|
|
|
}
|
|
|
|
|
|
|
|
LuminanceSource::operator std::string() {
|
|
|
|
unsigned char* row = 0;
|
|
|
|
std::ostringstream oss;
|
|
|
|
for (int y = 0; y < getHeight(); y++) {
|
|
|
|
row = getRow(y, row);
|
|
|
|
for (int x = 0; x < getWidth(); x++) {
|
|
|
|
int luminance = row[x] & 0xFF;
|
|
|
|
char c;
|
|
|
|
if (luminance < 0x40) {
|
|
|
|
c = '#';
|
|
|
|
} else if (luminance < 0x80) {
|
|
|
|
c = '+';
|
|
|
|
} else if (luminance < 0xC0) {
|
|
|
|
c = '.';
|
|
|
|
} else {
|
|
|
|
c = ' ';
|
|
|
|
}
|
|
|
|
oss << c;
|
|
|
|
}
|
|
|
|
oss << '\n';
|
|
|
|
}
|
|
|
|
delete [] row;
|
|
|
|
return oss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|