Package org.apache.fop.pdf
Class NullFilter
- java.lang.Object
-
- org.apache.fop.pdf.PDFFilter
-
- org.apache.fop.pdf.NullFilter
-
-
Constructor Summary
Constructors Constructor Description NullFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.OutputStream
applyFilter(java.io.OutputStream out)
Applies a filter to an OutputStream.PDFObject
getDecodeParms()
return a parameter dictionary for this filter, or nulljava.lang.String
getName()
return a PDF string representation of the filter, e.g.-
Methods inherited from class org.apache.fop.pdf.PDFFilter
isApplied, isASCIIFilter, setApplied
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
return a PDF string representation of the filter, e.g. /FlateDecode
-
getDecodeParms
public PDFObject getDecodeParms()
return a parameter dictionary for this filter, or null- Specified by:
getDecodeParms
in classPDFFilter
- Returns:
- the decode params for the filter
-
applyFilter
public java.io.OutputStream applyFilter(java.io.OutputStream out) throws java.io.IOException
Applies a filter to an OutputStream.- Specified by:
applyFilter
in classPDFFilter
- Parameters:
out
- contents to be filtered- Returns:
- OutputStream filtered contents
- Throws:
java.io.IOException
- In case of an I/O problem
-
-