mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Removed deprecation of 'cropping' constructor -- in the end replacing it introduced some non-trivial performance hit, not worth it
git-svn-id: https://zxing.googlecode.com/svn/trunk@938 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
793f4c7176
commit
6d472ea18a
|
@ -60,10 +60,7 @@ public final class BufferedImageMonochromeBitmapSource extends BaseMonochromeBit
|
|||
* @param right one more than the x coordinate of rightmost pixels to decode, i.e. we will decode
|
||||
* pixels whose x coordinate is in [left,right)
|
||||
* @param bottom likewise, one more than the y coordinate of the bottommost pixels to decode
|
||||
* @deprecated use
|
||||
* {@link com.google.zxing.CroppedMonochromeBitmapSource#CroppedMonochromeBitmapSource(MonochromeBitmapSource, int, int, int, int)}
|
||||
*/
|
||||
@Deprecated
|
||||
public BufferedImageMonochromeBitmapSource(BufferedImage image, int left, int top, int right,
|
||||
int bottom) {
|
||||
super(right - left, bottom - top);
|
||||
|
|
Loading…
Reference in a new issue