41 lines
781 B
Java
41 lines
781 B
Java
package com.kofax.kmc.ken.engines.iplib;
|
|
|
|
import com.kofax.kmc.kut.utilities.error.ErrorInfo;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class IpImage {
|
|
public ErrorInfo mErrorInfo;
|
|
int mChannels = 0;
|
|
int mBitDepth = 0;
|
|
public int mDpiX = 0;
|
|
public int mDpiY = 0;
|
|
int mWidth = 0;
|
|
int mHeight = 0;
|
|
public int mJniImageHandle = -1;
|
|
public int mDoFakeCall = 0;
|
|
|
|
public int getWidth() {
|
|
return this.mWidth;
|
|
}
|
|
|
|
public int getHeight() {
|
|
return this.mHeight;
|
|
}
|
|
|
|
public int getDpiY() {
|
|
return this.mDpiY;
|
|
}
|
|
|
|
public int getDpiX() {
|
|
return this.mDpiX;
|
|
}
|
|
|
|
public int getChannels() {
|
|
return this.mChannels;
|
|
}
|
|
|
|
public int getBitDepth() {
|
|
return this.mBitDepth;
|
|
}
|
|
}
|