Package com.idrsolutions.image.filter
Class LZWFilterOptions
java.lang.Object
com.idrsolutions.image.filter.FilterOptions
com.idrsolutions.image.filter.PredictorFilterOptions
com.idrsolutions.image.filter.LZWFilterOptions
Implementation of Filter options for LZW filtering
-
Nested Class Summary
Nested classes/interfaces inherited from class com.idrsolutions.image.filter.FilterOptions
FilterOptions.FilterMode -
Constructor Summary
ConstructorsConstructorDescriptionLZWFilterOptions(int bitsPerComponent, int colors, int columns, int earlyChange, int predictor, int rows) -
Method Summary
Modifier and TypeMethodDescriptionintGet an instance of the filter that uses these optionsintgetRows()voidsetEarlyChange(int earlyChange) voidsetRows(int rows) Methods inherited from class com.idrsolutions.image.filter.PredictorFilterOptions
getBitsPerComponent, getColors, getColumns, getPredictor, setBitsPerComponent, setColors, setColumns, setPredictorMethods inherited from class com.idrsolutions.image.filter.FilterOptions
getMode, setMode
-
Constructor Details
-
LZWFilterOptions
public LZWFilterOptions() -
LZWFilterOptions
public LZWFilterOptions(int bitsPerComponent, int colors, int columns, int earlyChange, int predictor, int rows)
-
-
Method Details
-
getEarlyChange
public int getEarlyChange() -
setEarlyChange
public void setEarlyChange(int earlyChange) -
getRows
public int getRows() -
setRows
public void setRows(int rows) -
getFilter
Description copied from class:FilterOptionsGet an instance of the filter that uses these options- Specified by:
getFilterin classFilterOptions- Returns:
- The filter represented by these options
-