DrawEPS Drawing Command

Places an Encapsulated PostScript illustration frame.

draweps <left top right bottom> [CONTENTOFFSET offsetx offsety] [CONTENTSCALE scalex scaley] [ROTATE angle | SKEW slantangle twistangle | SLANT angle | TWIST angle] [ABOUT pointx pointy | ABOUTCENTER] [constraint] [printable] [stack] [frame] [stored] [FILE filepath] [PAGE number | MPG name | DOCUMENT name | WINDOW name]

left.../d The coordinates of the frame.

CONTENTOFFSET/d The offset in the frame. Default=0,0.

CONTENTSCALE/d The scale of the object in the frame. Default=100%.

ROTATE/d The rotation angle. Default=0.

SKEW/d The slant and twist angle. Default=0.

SLANT/d The slant angle. Default=0.

TWIST/d The twist angle. Default=0.

ABOUT/d The rotation point.

ABOUTCENTER Rotates around its center. Default.

constraint/k The aspect ratio constraint toggle.

Options: CONSTRAIN|FREE (default).

printable/k The print object toggle.

Options: PRINT (default)|NOPRINT.

stack/k The stack position.

Options: INFRONT (default)|INBACK.

frame/k Specifies whether the object is framed.

Options: FRAMED|FRAMELESS.

stored/k Specifies if the object is internal.

Options: INTERNAL (default)|EXTERNAL.

FILE/s The filepath and name of the object.

PAGE/s The page number. Default=current.

MPG/s The master page name and side. Default=current.

DOCUMENT/s The document name. Default=current.

WINDOW/s The window name. Default=current.

Results:

The identification number (handle) of the new object is returned to RESULT.

Examples:
ARexx:

draweps 1.75 1.5 2.75 2.5
draweps 3 3 6 6 offset -2 2 contentscale 80 constrain
draweps 2 2.5 3.125 5.625 page 'project.doc~6'

 

DrawEPS  Command Definition  url:PGScmd/draweps
  created:2006-03-30 13:47:47   last updated:2006-08-18 11:45:46
  Copyright © 1985-2024 GrasshopperLLC. All Rights Reserved.

User Contributed Comments For DrawEPS
Dan Kilroy wrote...2006-05-03 15:48:10

Script command submitted from PageStream internal documentation. Needs to be checked and merged with the command documentation above.

Draws an EPS frame {...} .

objectid = DrawEPS (left top right bottom [INTERNAL | EXTERNAL] [FILE file] [FRAMELESS | FRAMED] [CONTENTOFFSET x y] [CONTENTSCALE x y] [CONTENTROTATE rotation | CONTENTSKEW slant twist] [ROTATE rotation | SKEW slant twist | SLANT slant | TWIST twist] [ABOUT x y | ABOUTCENTER] [INFRONT | INBACK] [CONSTRAIN | FREE] [PRINT | NOPRINT] [PGS50PRO: DRAWPAGE n] [PAGE document:...-pagenum | MPG document:...-masterpage:sides | DOCUMENT document | WINDOW document-window])


Parameters:


Results:


Notes:


See Also:


Examples:
Python:


ARexx:

Applescript:

User Contributed Comments For DrawEPS