MacPICT.mesa
Copyright Ó 1988, 1992 by Xerox Corporation. All rights reserved.
Shibata Fumihiko, March 7, 1989 11:09:17 am JST
Import/Export of Macintosh PICT-format files.
DIRECTORY
Rope USING [ROPE],
ImagerPixelArray USING [PixelArray];
MacPICT: CEDAR DEFINITIONS
~ BEGIN
ROPE: TYPE ~ Rope.ROPE;
PixelArray: TYPE ~ ImagerPixelArray.PixelArray;
ToPixelArray: PROC [fileName: ROPE] RETURNS [PixelArray];
Read the given Macintosh PICT-format file and return a PixelArray with its contents.
Only PixelMaps of PICT files are supported.
FromPixelArray: PROC [fileName: ROPE, pa: PixelArray];
Create a Macintosh PICT-format file with the given name and contents.
This is not implemented yet.
END.