Package com.adobe.fontengine.font
Interface ScanConverter
-
public interface ScanConverter
A scan converter turns outlines into bitmaps. The methodsetDebugger(com.adobe.fontengine.font.ScalerDebugger)
can be called at any time. The calls to the other methods must follow the pattern (setScanType, getOutlineConsumer2, calls on that object to describe the outline, getBitmap)*.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
getBitmap(BitmapConsumer dest)
OutlineConsumer2
getOutlineConsumer2()
void
setDebugger(ScalerDebugger debugger)
void
setScanType(int scanType)
-
-
-
Method Detail
-
setDebugger
void setDebugger(ScalerDebugger debugger)
-
setScanType
void setScanType(int scanType)
-
getOutlineConsumer2
OutlineConsumer2 getOutlineConsumer2()
-
getBitmap
void getBitmap(BitmapConsumer dest)
-
-