com.daon.identityx.rest.model.pojo.DisplayPNGCharacteristicsDescriptor Maven / Gradle / Ivy
/*
* Copyright Daon.
*
* 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.
*/
package com.daon.identityx.rest.model.pojo;
public class DisplayPNGCharacteristicsDescriptor {
private long width;
private long height;
private int bitDepth;
private int colorType;
private int compression;
private int filter;
private int interlace;
private RgbPalletteEntry[] plte;
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;
}
public RgbPalletteEntry[] getPlte() {
return plte;
}
public void setPlte(RgbPalletteEntry[] plte) {
this.plte = plte;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy