1 58 package org.krysalis.barcode.output.bitmap; 59 60 import java.awt.image.BufferedImage ; 61 import java.io.IOException ; 62 import java.io.OutputStream ; 63 64 69 public interface BitmapEncoder { 70 71 75 String [] getSupportedMIMETypes(); 76 77 86 void encode(BufferedImage image, OutputStream out, 87 String mime, int resolution) throws IOException ; 88 89 } 90 | Popular Tags |