com.identityx.clientSDK.piiSupport.DisplayPNGCharacteristics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of IdentityXClientSDK Show documentation
Show all versions of IdentityXClientSDK Show documentation
Client SDK for IdentityX Rest Services
package com.identityx.clientSDK.piiSupport;
public class DisplayPNGCharacteristics {
private long width;
private long height;
private int bitDepth;
private int colorType;
private int compression;
private int filter;
private int interlace;
public long getWidth() {
return width;
}
public void setWidth(long width) {
this.width = width;
}
public long getHeight() {
return height;
}
public void setHeight(long height) {
this.height = height;
}
public int getBitDepth() {
return bitDepth;
}
public void setBitDepth(int bitDepth) {
this.bitDepth = bitDepth;
}
public int getColorType() {
return colorType;
}
public void setColorType(int colorType) {
this.colorType = colorType;
}
public int getCompression() {
return compression;
}
public void setCompression(int compression) {
this.compression = compression;
}
public int getFilter() {
return filter;
}
public void setFilter(int filter) {
this.filter = filter;
}
public int getInterlace() {
return interlace;
}
public void setInterlace(int interlace) {
this.interlace = interlace;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy