|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 3439 (0xd6f)
Types: TextFile
Names: »V«
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS
└─⟦91c658230⟧ »DATA«
└─⟦458657fb6⟧
└─⟦a5bbbb819⟧
└─⟦this⟧
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
└─⟦fc9b38f02⟧ »DATA«
└─⟦9b46a407a⟧
└─⟦eec0a994f⟧
└─⟦this⟧
package Postscript is
------------------------------------------------------------------------
-- MacDraw is a registered trademark of Claris Corporation.
-- Macintosh is a registered trademark of Apple Computer, Inc.
-- PostScript is a registered trademark of Adobe Systems, Inc.
------------------------------------------------------------------------
procedure Convert_Pictures (In_Postscript_File : String := "<CURSOR>";
Root_Filename : String := "";
First_Picture : Positive := 1;
Last_Picture : Positive := Positive'Last;
Options : String := "";
Response : String := "<PROFILE>");
-- Graphics tools sometimes produce PostScript output files that are
-- not "encapsulated". This procedure converts the pictures in these
-- files so that they can be included in documents generated by the
-- Rational document formatter (via the ~Picture command). These
-- pictures still will not adhere to all the rules of encapsulated
-- PostScript, so they probably will not work with other formatters
-- that are capable of importing encapsulated graphics.
--
-- In_Postscript_File is the name of a PostScript file produced by
-- MacDraw and uploaded to the R1000 from a Macintosh. No other
-- graphics tools are supported in this release. (Of course,
-- pictures from any tool that produces encapsulated PostScript
-- can be used without conversion.)
--
-- Root_Filename is the prefix to use when generating output file
-- names. For example, setting Root_Filename to "Figure" will generate
-- output files named "Figure1", "Figure2", etc. If Root_Filename is
-- not supplied, it will be derived from In_Postscript_File by
-- appending "_Eps".
--
-- First_Picture and Last_Picture allow specific pictures to be
-- selected when In_Postscript_File contains more than one picture.
-- Each picture will be placed in a separate output file, with
-- the picture number appended to Root_Filename to form the output
-- file name.
--
-- The Options string currently is ignored.
------------------------------------------------------------------------
procedure Compile_Font_Metrics (From_Afm_Files : String := "<CURSOR>";
Into_Library : String := "";
Options : String := "";
Response : String := "<PROFILE>");
-- Compile_Font_Metrics accepts Adobe Font Metrics (AFM) files for
-- PostScript fonts and translates them into the binary form required
-- by the Rational document formatter.
--
-- From_Afm_Files should resolve to one or more AFM files in Adobe's
-- standard interchange format. Each AFM file is compiled into a
-- binary file with simple name derived from the value of the FontName
-- key. The binary files are placed in Into_Library. If Into_Library
-- is not supplied, the binary files are placed directly into the
-- formatter's released Fonts directory -- be careful to avoid
-- inadvertent overwriting of existing files.
--
-- The Options string currently is ignored.
------------------------------------------------------------------------
end Postscript;