org.pdfbox.filter
Class FilterManager
java.lang.Object
org.pdfbox.filter.FilterManager
public class FilterManager
extends java.lang.Object
This will contain manage all the different types of filters that are available.
FilterManager
public FilterManager()
Constructor.
addFilter
public void addFilter(COSName filterName,
Filter filter)
This will add an available filter.
filterName
- The name of the filter.filter
- The filter to use.
getFilter
public Filter getFilter(String filterName)
throws IOException
This will get a filter by name.
filterName
- The name of the filter to retrieve.
- The filter that matches the name.
getFilter
public Filter getFilter(COSName filterName)
throws IOException
This will get a filter by name.
filterName
- The name of the filter to retrieve.
- The filter that matches the name.
getFilters
public Collection getFilters()
This will get all of the filters that are available in the system.
- All available filters in the system.