1 58 package org.krysalis.barcode.output; 59 60 import org.krysalis.barcode.BarcodeDimension; 61 62 68 public interface CanvasProvider { 69 70 74 void establishDimensions(BarcodeDimension dim); 75 76 80 BarcodeDimension getDimensions(); 81 82 89 void deviceFillRect(double x, double y, double w, double h); 90 91 100 void deviceJustifiedText(String text, double x1, double x2, double y1, 101 String fontName, double fontSize); 102 103 112 void deviceCenteredText(String text, double x1, double x2, double y1, 113 String fontName, double fontSize); 114 115 } | Popular Tags |