1 31 package org.pdfbox.filter; 32 33 import java.io.IOException ; 34 import java.io.InputStream ; 35 import java.io.OutputStream ; 36 37 import org.pdfbox.cos.COSDictionary; 38 39 45 public class DCTFilter implements Filter 46 { 47 48 57 public void decode( InputStream compressedData, OutputStream result, COSDictionary options ) throws IOException 58 { 59 System.err.println( "Warning: DCTFilter.decode is not implemented yet, skipping this stream." ); 60 } 61 62 71 public void encode( InputStream rawData, OutputStream result, COSDictionary options ) throws IOException 72 { 73 System.err.println( "Warning: DCTFilter.encode is not implemented yet, skipping this stream." ); 74 } 75 } | Popular Tags |