Interface RowTypeRenderer
-
- All Known Implementing Classes:
RowTypeRendererScanBit
,RowTypeRendererScanDot
public interface RowTypeRenderer
Renders a row of pixel types.
© 2002 Christian Treber, ct@ctreber.com (Nov 11, 2002)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
getPixelTypes(int pRowNo, int[] pPixelTypes)
Set pixel type for specified row number.void
startNewRun()
Each time when rendering an image, call startNewRun() first.
-
-
-
Method Detail
-
startNewRun
void startNewRun()
Each time when rendering an image, call startNewRun() first.
-
getPixelTypes
void getPixelTypes(int pRowNo, int[] pPixelTypes)
Set pixel type for specified row number. Note some pixel types might be already set. The renderer can build on this information or overwrite it.
- Parameters:
pRowNo
-pPixelTypes
-
-
-