<> <> DIRECTORY Graphics USING [Context], PressReader USING [Dots]; PressImage: DEFINITIONS SHARES Graphics = BEGIN PressImage: TYPE = REF PressImageData; PressImageData: TYPE; PressImageError: ERROR; MakePressImage: PROCEDURE [sampleType, dots, lines, mode, pd, dd, pl, dl: INT, width, height: REAL, bits: PressReader.Dots] RETURNS [self: PressImage _ NIL]; DrawPressImage: PROCEDURE [self: Graphics.Context, image: PressImage]; END. <> <> <<>> <> <> <<>> <> <>