-
Notifications
You must be signed in to change notification settings - Fork 16
LispKit Draw
Library (lispkit draw)
provides an API for creating drawings. A drawing is defined in terms of a sequence of instructions for drawing shapes and images. Drawings can be composed and saved as a PDF. It is also possible to draw a drawing into a bitmap and save it in formats like PNG, JPG, or TIFF. A bitmap is a special image that is not based on vector graphics.
Both drawings and shapes are based on a coordinate system whose zero point is in the upper left corner of a plane. The x and y axis extend to the right and down. Coordinates and dimensions are always expressed in terms of floating-point numbers.
Drawings are mutable objects created via make-drawing
. The functions listed in this section change the state of a drawing object and they persist drawing instructions defining the drawing. For most functions, the drawing is an optional argument. If it is not provided, the function applies to the drawing provided by the current-drawing
parammeter object.
current-drawing [parameter object]
Defines the current drawing, which is used as a default by all functions for which the drawing argument is optional. If there is no current drawing, this parameter is set to #f
.
(drawing? obj) [procedure]
Returns #t
if obj is a drawing. Otherwise, it returns #f
.
(make-drawing) [procedure]
Returns a new, empty drawing. A drawing consists of a sequence of drawing instructions and drawing state consisting of the following components:
- Stroke color (set via
set-color
) - Fill color (set via
fill-color
) - Shadow (set via
set-shadow
andremove-shadow
) - Transformation (add transformation via
enable-transformation
and remove viadisable-transformation
)
(copy-drawing drawing) [procedure]
Returns a copy of the given drawing.
(set-color color) [procedure]
(set-color color drawing)
Sets the stroke color for the given drawing, or current-drawing
if the drawing argument is not provided.
(set-fill-color color) [procedure]
(set-fill-color color drawing)
Sets the fill color for the given drawing, or current-drawing
if the drawing argument is not provided.
(set-line-width width) [procedure]
(set-line-width width drawing)
Sets the default stroke width for the given drawing, or current-drawing
if the drawing argument is not provided.
(set-shadow color size blur-radius) [procedure]
(set-shadow color size blur-radius drawing)
Defines a shadow for the given drawing, or current-drawing
if the drawing argument is not provided. color is the color of the shade, blur-radius defines the radius for bluring the shadow.
(remove-shadow) [procedure]
(remove-shadow drawing)
Removes shadow for the subsequent drawing instructions of the given drawing, or current-drawing
if the drawing argument is missing.
(enable-transformation tf) [procedure]
(enable-transformation tf drawing)
Enables the transformation tf for subsequent drawing instructions of the given drawing, or current-drawing
if the drawing argument is missing. Each drawing maintains an active affine transformation for shifting, rotating, and scaling the coordinate systems of subsequent drawing instructions.
(disable-transformation tf) [procedure]
(disable-transformation tf drawing)
Disables the transformation tf for subsequent drawing instructions of the given drawing, or current-drawing
if the drawing argument is missing.
(draw shape) [procedure]
(draw shape width)
(draw shape width drawing)
Draws shape with a given stroke width into the drawing specified via drawing or parameter object current-drawing
if drawing is not provided. The default for width, in case it is not provided, is set via set-line-width. The stroke is drawn in the current stroke color of the drawing.
(draw-dashed shape lengths phase) [procedure]
(draw-dashed shape lengths phase width)
(draw-dashed shape lengths phase width drawing)
Draws shape with a dashed stroke of width width into the drawing specified via drawing or parameter object current-drawing
if drawing is not provided. 1.0
is the default for width in case it is not provided. lengths specifies an alternating list of dash/space lengths. phase determines the start of the dash/space pattern. The dashed stroke is drawn in the current stroke color of the drawing.
(fill shape) [procedure]
(fill shape drawing)
Fills shape with the current fill color in the drawing specified via drawing or parameter object current-drawing
if drawing is not provided.
(fill-gradient shape colors) [procedure]
(fill-gradient shape colors spec)
(fill-gradient shape colors spec drawing)
Fills shape with a gradient in the drawing specified via argument drawing or parameter object current-drawing
if drawing is not provided. The gradient is specified in terms of a list of colors and argument spec. spec can either be a number or a point. If spec is a number, this number determines an angle for a linear gradient. If spec is a point, it is the center of a radial gradient.
(draw-line start end) [procedure]
(draw-line start end drawing)
Draws a line between point start and point end in the drawing specified via argument drawing or parameter object current-drawing
, if drawing is not provided. The line is drawn in the default stroke width and the current stroke color.
(draw-rect rect) [procedure]
(draw-rect rect drawing)
Draws a rectangular given by rect in the drawing specified via argument drawing or parameter object current-drawing
, if drawing is not provided. The rectangular is drawn in the default stroke width and the current stroke color.
(fill-rect rect) [procedure]
(fill-rect rect drawing)
Fills a rectangular given by rect with the current fill color in the drawing specified via argument drawing or parameter object current-drawing
, if drawing is not provided.
(draw-ellipse rect) [procedure]
(draw-ellipse rect drawing)
Draws an ellipse into the rectangular rect in the drawing specified via argument drawing or parameter object current-drawing
, if drawing is not provided. The ellipse is drawn in the default stroke width and the current stroke color.
(fill-ellipse rect) [procedure]
(fill-ellipse rect drawing)
Fills an ellipse given by rectangular rect with the current fill color in the drawing specified via argument drawing or parameter object current-drawing
, if drawing is not provided.
(draw-text str location font) [procedure]
(draw-text str location font color)
(draw-text str location font color drawing)
Draws string str at location in the given font and color in the drawing specified by argument drawing or parameter object current-drawing
if drawing is not provided. location is either the left, top-most point at which the string is drawn, or it is a rect specifying a bounding box. color specifies the text color. If it is not provided, the text is drawn in black.
(text-size text) [procedure]
(text-size text font)
(text-size text font dimensions)
Returns a size object describing the width and height needed to draw string html using font in a space constrained by dimensions. dimensions is either a size object specifying the maximum width and height, or it is a number constraining the width only, assuming infinite hight. If dimensions is omitted, the maximum width and height is infinity.
(draw-html html location) [procedure]
(draw-html html location drawing)
Draws a string html containing HTML source code at location in the drawing specified by argument drawing or parameter object current-drawing
if drawing is not provided. location is either the left, top-most point at which the HTML is drawn, or it is a rect specifying a bounding box.
(html-size html) [procedure]
(html-size html dimensions)
Returns a size object describing the width and height needed to render the HTML in string html in a space constrained by dimensions. dimensions is either a size object specifying the maximum width and height, or it is a number constraining the width only, assuming infinite hight. If dimensions is omitted, the maximum width and height is infinity.
(draw-image image location) [procedure]
(draw-image image location opacity)
(draw-image image location opacity composition)
(draw-image image location opacity composition drawing)
Draws image image at location with the given opacity and composition method. The image is drawn in the drawing specified by argument drawing or parameter object current-drawing
if drawing is not provided. location is either the left, top-most point at which the image is drawn, or it is a rect specifying a bounding box for the image. composition is a floating-point number between 0.0 (= transparent) and 1.0 (= completely not transparent) with 1.0 being the default. composition refers to a symbol specifying a composition method. The following methods are supported (the source is the image, the destination is the drawing):
-
clear
: Transparency everywhere. -
copy
: The source image (default). -
multiply
: The source color is multiplied by the destination color. -
overlay
: Source colors overlay the destination. -
source-over
: The source image wherever it is opaque, and the destination elsewhere. -
source-in
: The source image wherever both images are opaque, and transparent elsewhere. -
source-out
: The source image wherever it is opaque and the destination is transparent, and transparent elsewhere. -
source-atop
: The source image wherever both source and destination are opaque, the destination wherever it is opaque but the source image is transparent, and transparent elsewhere. -
destination-over
: The destination wherever it is opaque, and the source image elsewhere. -
destination-in
: The destination wherever both images are opaque, and transparent elsewhere. -
destination-out
: The destination wherever it is opaque and the source image is transparent, and transparent elsewhere. -
destination-atop
: The destination wherever both image and destination are opaque, the source image wherever it is opaque and the destination is transparent, and transparent elsehwere.
(draw-drawing other) [procedure]
(draw-drawing other drawing)
Draws drawing other into the drawing specified by argument drawing or parameter object current-drawing
if drawing is not provided. This function can be used
to compose drawings.
(clip-drawing other clippingshape) [procedure]
(clip-drawing other clippingshape drawing)
Draws drawing other into the drawing specified by argument drawing or parameter object current-drawing
if drawing is not provided. This function clips the drawing using shape clippingshape; i.e. only parts within clippingshape are drawn.
(inline-drawing other) [procedure]
(inline-drawing other drawing)
Draws drawing other into the drawing specified by argument drawing or parameter object current-drawing
if drawing is not provided. This function can be used to compose drawings in a way such that the drawing instructions from other are inlined into drawing.
(save-drawing path drawing size) [procedure]
(save-drawing path drawing size title)
(save-drawing path drawing size title author)
Saves drawing into a PDF file at the given filepath path. size is a size specifying the width and height of the PDF page containing the drawing in points; i.e. the media box of the page is (rect zero-point
size)
. title and author are optional strings defining the title and author metadata for the generated PDF file.
(save-drawings path pages) [procedure]
(save-drawings path pages title)
(save-drawings path pages title author)
Saves a list of pages into a PDF file at the given filepath path. A page is defined in terms of a list of two elements (drawing size), where drawing is a drawing for that page and size is a media box for the page. title and author are optional strings defining the title and author metadata for the generated PDF file.
(drawing body ...) [syntax]
Creates a new empty drawing, binds parameter object current-drawing
to it and executes the body statements in the dynamic scope of this binding. This special form returns the new drawing.
(with-drawing drawing body ...) [syntax]
Binds parameter object current-drawing
to drawing and executes the body statements in the dynamic scope of this binding. This special form returns the result of the last statement in the body.
(transform tf body ...) [syntax]
This form is used in the context of drawing into current-drawing
. It enables the transformation tf, executes the statements in the body and disables the transformation again.
Shapes are mutable objects created via a number of constructors, including make-shape
, copy-shape
, line
, polygon
, rectangular
, circle
, oval
, arc
, and glyphs
. Besides the constructors, functions like move-to
, line-to
and curve-to
are used to extend a shape. For those functions, the affected shape is an optional argument. If it is not provided, the function applies to the shape defined by the current-shape
parammeter object.
current-shape [parameter object]
Defines the current shape, which is used as a default by all functions for which the shape argument is optional. If there is no current shape, this parameter is set to #f
.
(shape? obj) [procedure]
Returns #t
if obj is a shape. Otherwise, it returns #f
.
(make-shape) [procedure]
(make-shape prototype)
Returns a new shape object. If argument prototype is provided, the new shape object will inherit from shape prototype; i.e. the new shape's definition will extend the definition of shape prototype.
(copy-shape shape) [procedure]
Returns a copy of shape.
(line start end) [procedure]
Retuns a new line shape. start and end are the start and end points of the line.
(polygon point ...) [procedure]
Returns a new polygon shape. The polygon is defined in terms of a sequence of points.
(rectangle point size) [procedure]
(rectangle point size radius)
(rectangle point size xradius yradius)
Returns a new rectangular shape. The rectangle is defined in terms of the left, topmost point and a size defining both width and height of the rectangle. The optional radius, xradius and yradius arguments are used to create a rounded rectangular whose rounded edges are defined in terms of an x and y-radius. If only one radius is provided, it defines both x and y-radius.
(circle point radius) [procedure]
Returns a new circle shape. The circle is defined in terms of a center point and a radius.
(oval point size) [procedure]
Returns a new oval shape. The oval is defined in terms of a rectangle whose left, topmost point is provided as argument point, and whose width and height are given via argument size.
(arc point radius start end) [procedure]
(arc point radius start end clockwise)
Returns a new arc shape. The arc is defined via the arguments point, radius, start , end and optionally clockwise. point is the starting point of the arc, radius defines the radius of the arc, start is a starting angle in radians, and end is the end angle in radians. clockwise is a boolean argument defining whether the arc is drawn clockwise or counter-clockwise. The default is #t
.
(glyphs str point size font) [procedure]
Returns a new "glyphs" shape. This is a shape defined by a string str rendered in the given size and font at a given point. font is a font object, size is the font size in points, and point are the start coordinates where the glyphs are drawn.
(transform-shape shape tf) [procedure]
Returns a new shape derived from shape by applying transformation tf.
(flip-shape shape) [procedure]
(flip-shape shape box)
(flip-shape shape box orientation)
Returns a new shape by flipping/mirroring shape within box. box is a rect. If it is not provided, the bounding box of shape is used as a default. Argument orientation is a symbol defining along which axis the shape is flipped. Supported are horizontal
, vertical
, and mirror
. Default is vertical
.
(interpolate points) [procedure]
(interpolate points closed)
(interpolate points closed alpha)
(interpolate points closed alpha method)
Returns a shape interpolating a list of points. closed is an optional boolean argument specifying whether the shape is closed. The default for closed is #f
. alpha is an interpolation parameter in the range [0.0,1.0]; default is 0.33. method specifies the interpolation method via a symbol. The following two methods are supported: hermite
and catmull-rom
; default is hermite
.
(move-to point) [procedure]
(move-to point shape)
Sets the "current point" to point for the shape specified by argument shape or parameter object current-shape
if shape is not provided.
(line-to point ...) [procedure]
(line-to point ... shape)
Creates a line from the "current point" to point for the shape specified by argument shape or parameter object current-shape
if shape is not provided. point becomes the new "current point".
(curve-to point cntrl1 cntrl2) [procedure]
(curve-to point cntrl1 cntrl2 shape)
Creates a curve from the "current point" to point for the shape specified by argument shape or parameter object current-shape
if shape is not provided. cntrl1 and cntrl2 are control points defining tangets shaping the curve at the start and end points.
(relative-move-to point) [procedure]
(relative-move-to point shape)
This function is equivalent to move-to
with the exception that point is relative to the "current point".
(relative-line-to point ...) [procedure]
(relative-line-to point ... shape)
This function is equivalent to line-to
with the exception that point is relative to the "current point".
(relative-curve-to point cntrl1 cntrl2) [procedure]
(relative-curve-to point cntrl1 cntrl2 shape)
This function is equivalent to curve-to
with the exception that point, cntrl1 and cntrl2 are relative to the "current point".
(add-shape other) [procedure]
(add-shape other shape)
Adds shape other to the shape specified by argument shape or parameter object current-shape
if shape is not provided. This function is typically used to compose shapes.
(shape-bounds shape) [procedure]
Returns the bounding box for the given shape as a rect.
(shape body ...) [syntax]
Creates a new empty shape, binds parameter object current-shape
to it and executes the body statements in the dynamic scope of this binding. This special form returns the new drawing.
(with-shape shape body ...) [syntax]
Binds parameter object current-shape
to shape and executes the body statements in the dynamic scope of this binding. This special form returns the result of the last statement in the body.
Images are objects representing immutable pictures of mutable size and metadata. Images are either loaded from image files or they are created from drawings. Images are either vector-based or bitmap-based. The current image API only allows loading vector-based images from PDF files. Bitmap-based images, on the other hand, can be loaded from PNG, JPG, GIF, etc. image files or they are created by drawing a drawing object into an empty bitmap. Bitmap-based images optionally have mutable EXIF data.
(image? obj) [procedure]
Returns #t
if obj is an image. Otherwise, it returns #f
.
(load-image path) [procedure]
Loads an image from the file at path and returns the corresponding image object.
(load-image-asset path type) [procedure]
(load-image-asset path type dir)
Loads an image from the file at the given relative file path and returns the corresponding image object. type refers to the default suffix of the file to load (e.g. "png"
for PNG images).
load-image-asset
constructs a relative file path in the following way (assuming path does not have a suffix already):
dir/path.type
where dir is "Images"
if it is not provided as a parameter. It then searches the asset paths in their given order for a file matching this relative file path. Once the first matching file is found, the file is loaded as an image file and the image gets returned by load-image-asset
. It is an error if no matching image was found.
(image-size image) [procedure]
Returns the size of the given image object in points.
(set-image-size! image size) [procedure]
Sets the size of image to size, a size in points.
(bitmap? obj) [procedure]
Returns #t
if obj is a bitmap-based image. Otherwise, it returns #f
.
(bitmap-size bmap) [procedure]
Returns the size of the bitmap bmap in points. If bmap is not a bitmap object, bitmap-size
returns #f
.
(bitmap-pixels bmap) [procedure]
Returns the number of horizontal and vertical pixels of the bitmap bmap as a size. If bmap is not a bitmap object, bitmap-size
returns #f
.
(bitmap-exif-data bmap) [procedure]
Returns the EXIF metadata associated with bitmap bmap. EXIF metadata is represented as an association list in which symbols are used as keys.
> (define photo (load-image (asset-file-path "Regensberg" "jpeg" "Images")))
> (bitmap-exif-data photo)
((ExposureBiasValue . 0)
(CustomRendered . 6)
(SensingMethod . 2)
(SubsecTimeOriginal . "615")
(SubsecTimeDigitized . "615")
(Flash . 0)
(ExposureTime . 0.00040306328093510683)
(OffsetTime . "+01:00")
(PixelXDimension . 8066)
(ExifVersion 2 3 1)
(OffsetTimeDigitized . "+01:00")
(ISOSpeedRatings 25)
(OffsetTimeOriginal . "+01:00")
(DateTimeDigitized . "2019:10:27 14:21:39")
(FlashPixVersion 1 0)
(WhiteBalance . 0)
(PixelYDimension . 3552)
(LensSpecification 4.25 4.25 1.7999999523162842 1.7999999523162842)
(ColorSpace . 65535)
(LensModel . "iPhone XS back camera 4.25mm f/1.8")
(SceneCaptureType . 0)
(ApertureValue . 1.6959938128383605)
(SceneType . 1)
(ShutterSpeedValue . 11.276932534193945)
(FocalLength . 4.25)
(FNumber . 1.8)
(LensMake . "Apple")
(FocalLenIn35mmFilm . 26)
(BrightnessValue . 10.652484683458134)
(ComponentsConfiguration 1 2 3 0)
(MeteringMode . 5)
(DateTimeOriginal . "2019:10:27 14:21:39"))
(set-bitmap-exif-data! bmap exif) [procedure]
Sets the EXIF metadata for the given bitmap bmap to exif. exif is an association list defining all the EXIF attributes with symbols being used as keys.
> (define photo (load-image (asset-file-path "Regensberg" "jpeg" "Images")))
> (set-bitmap-exif-data! photo
'((ExposureBiasValue . 0)
(Flash . 0)
(ExposureTime . 0.0005)
(PixelXDimension . 8066)
(PixelYDimension . 3552)
(ExifVersion 2 3 1)
(ISOSpeedRatings 25)
(FlashPixVersion 1 0)
(WhiteBalance . 0)
(LensSpecification 4.25 4.25 1.7999999523162842 1.7999999523162842)
(ColorSpace . 65535)
(SceneCaptureType . 0)
(ApertureValue . 1.6959938128383605)
(SceneType . 1)
(ShutterSpeedValue . 11.276932534193945)
(FocalLength . 4.25)
(FNumber . 1.8)
(BrightnessValue . 10.652484683458134)
(ComponentsConfiguration 1 2 3 0)
(OffsetTime . "+01:00")
(OffsetTimeOriginal . "+01:00")
(DateTimeOriginal . "2019:10:27 14:21:39")
(OffsetTimeDigitized . "+01:00")
(DateTimeDigitized . "2019:10:27 14:21:39")))
(make-bitmap drawing size) [procedure]
(make-bitmap drawing size ppi)
Creates a new bitmap-based image by drawing the object drawing into an empty bitmap of size size in points. ppi determines the number of pixels per inch. By default, ppi is set to 72. In this case, the number of pixels of the bitmap corresponds to the number of points (since 1 pixel corresponds to 1/72 of an inch). For a ppi value of 144, the horizontal and vertial number of pixels is doubled, etc.
(bitmap-crop bitmap rect) [procedure]
Crops a rectangle from the given bitmap and returns the result in a new bitmap. rect is a rectangle in pixels. Its intersection with the dimensions of bitmap (in pixels) are used for cropping.
(bitmap-blur bitmap radius) [procedure]
Blurs the given bitmap with the given blur radius and returns the result in a new bitmap of the same size.
(save-bitmap path bitmap format) [procedure]
Saves a given bitmap-based image bitmap in a file at filepath path. format is a symbol specifying the image file format. Supported are: png
, jpg
, gif
, bmp
, and tiff
.
(bitmap->bytevector bitmap format) [procedure]
Returns a bytevector with an encoding of bitmap in the given format. format is a symbol specifying the image format. Supported are: png
, jpg
, gif
, bmp
, and tiff
.
A transformation is an immutable object defining an affine transformation. Transformations can be used to:
- shift,
- scale, and
- rotate coordinate systems.
Transformations are typically used in drawings to transform drawing instructions. They can also be used to transform shapes.
(transformation? obj) [procedure]
Returns #t
if obj is a transformation. Otherwise, it returns #f
.
(transformation tf ...) [procedure]
Creates a new transformation by composing the given transformations tf.
(invert tf) [procedure]
Inverts transformation tf and returns a new transformation object for it.
(translate dx dy) [procedure]
(translate dx dy tf)
Returns a transformation for shifting the coordinate system by dx and dy. If transformation tf is provided, the translation transformation extends tf.
(scale dx dy) [procedure]
(scale dx dy tf)
Returns a transformation for scaling the coordinate system by dx and dy. If transformation tf is provided, the scaling transformation extends tf.
(rotate angle) [procedure]
(rotate angle tf)
Returns a transformation for rotating the coordinate system by angle (in radians). If transformation tf is provided, the rotation transformation extends tf.
Colors are immutable objects defining colors in terms of four components: red, green, blue and alpha. Library (lispkit draw)
currently only supports RGB color spaces.
(lispkit draw)
supports the concept of color lists on macOS. A color list is provided as a .plist
file and stored in the "ColorLists" asset directory of LispKit. It maps color names expressed as symbols to color values. Color lists need to be loaded explicitly via procedure load-color-list
.
(color? obj) [procedure]
Returns #t
if obj is a color. Otherwise, it returns #f
.
(color spec) [procedure]
(color name clist)
(color r g b)
(color r g b alpha)
This procedure returns new color objects. If spec is provided, it either is a string containing a color description in hex format, or it is a symbol referring to the name of a color in the default color list (White Yellow Red Purple Orange Magenta Green Cyan Brown Blue Black)
. If a different color list should be used, its name can be specified via string clist. Procedure (available-color-lists)
returns a list of all available color lists. If the color is specified via a hex string, the following formats can be used: "ccc"
, "#ccc"
, "rrggbb"
, and "#rrggbb"
.
The color can also be specified using color components r, g, b, and alpha. alpha determines the transparency of the color (0.0 = fully transparent, 1.0 = no transparency). The default value for alpha is 1.0.
(color-red color) [procedure]
Returns the red color component of color.
(color-green color) [procedure]
Returns the green color component of color.
(color-blue color) [procedure]
Returns the blue color component of color.
(color-alpha color) [procedure]
Returns the alpha color component of color.
(color->hex color) [procedure]
Returns a representation of the given color in hex form as a string.
(color->hex (color 1.0 0.5 0.1)) ⇒ "#FF801A"
(color->hex (color "#6AF")) ⇒ "#66AAFF"
black [object]
gray
white
red
green
blue
yellow
Predefined color objects.
(available-color-lists) [procedure]
Returns a list of available color lists. The LispKit installation guarantees that there is at least color list "HTML" containing all named colors from the HTML 5 specification.
(available-color-lists)
⇒ ("HTML" "Web Safe Colors" "Crayons" "System" "Apple")
(load-color-list name path) [procedure]
Loads a new color list stored as a .plist
file in the assets directory of LispKit at the given file path (which can also refer to color lists outside of the assets directory via absolute file paths). name is a string which specifies the name of the color list. It is added to the list of available colors if loading of the color list was successful. load-color-list
returns #t
if the color list could be successfully loaded, #f
otherwise.
(available-colors clist) [procedure]
Returns a list of color identifiers supported by the given color list. clist is a string specifying the name of the color list.
(available-colors "HTML")
⇒ (YellowGreen Yellow WhiteSmoke White Wheat Violet Turquoise Tomato Thistle Teal Tan SteelBlue Snow SlateGrey SlateGray SlateBlue SkyBlue Silver Sienna SeaShell SeaGreen SandyBrown Salmon SaddleBrown RoyalBlue RosyBrown Red RebeccaPurple Purple PowderBlue Plum Pink Peru PeachPuff PapayaWhip PaleVioletRed PaleTurquoise PaleGreen PaleGoldenRod Orchid OrangeRed Orange OliveDrab Olive OldLace Navy NavajoWhite Moccasin MistyRose MintCream MidnightBlue MediumVioletRed MediumTurquoise MediumSpringGreen MediumSlateBlue MediumSeaGreen MediumPurple MediumOrchid MediumBlue MediumAquaMarine Maroon Magenta Linen LimeGreen Lime LightYellow LightSteelBlue LightSlateGrey LightSlateGray LightSkyBlue LightSeaGreen LightSalmon LightPink LightGrey LightGreen LightGray LightGoldenRodYellow LightCyan LightCoral LightBlue LemonChiffon LawnGreen LavenderBlush Lavender Khaki Ivory Indigo IndianRed HotPink HoneyDew Grey GreenYellow Green Gray GoldenRod Gold GhostWhite Gainsboro Fuchsia ForestGreen FloralWhite FireBrick DodgerBlue DimGrey DimGray DeepSkyBlue DeepPink DarkViolet DarkTurquoise DarkSlateGrey DarkSlateGray DarkSlateBlue DarkSeaGreen DarkSalmon DarkRed DarkOrchid DarkOrange DarkOliveGreen DarkMagenta DarkKhaki DarkGrey DarkGreen DarkGray DarkGoldenRod DarkCyan DarkBlue Cyan Crimson Cornsilk CornflowerBlue Coral Chocolate Chartreuse CadetBlue BurlyWood Brown BlueViolet Blue BlanchedAlmond Black Bisque Beige Azure Aquamarine Aqua AntiqueWhite AliceBlue)
Fonts are immutable objects defining fonts in terms of a font name and a font size (in points).
(font? obj) [procedure]
Returns #t
if obj is a font. Otherwise, it returns #f
.
(font fontname size) [procedure]
(font familyname size weight trait ...)
If only two arguments, fontname and size, are provided, font
will return a new font object for a font with the given font name and font size (in points). If more than two arguments are provided, font
will return a new font object for a font with the given font family name, font size (in points), font weight, as well as a number of font traits.
The weight of a font is specified as an integer on a scale from 0 to 15. Library (lispkit draw)
exports the following weight constants:
-
ultralight
(1) -
thin
(2) -
light
(3) -
book
(4) -
normal
(5) -
medium
(6) -
demi
(7) -
semi
(8) -
bold
(9) -
extra
(10) -
heavy
(11) -
super
(12) -
ultra
(13) -
extrablack
(14)
Font traits are specified as integer masks. The following trait constants are exported from library (lispkit draw)
:
italic
boldface
unitalic
unboldface
narrow
expanded
condensed
small-caps
poster
compressed
monospace
(font-name font) [procedure]
Returns the font name of font.
(font-family-name font) [procedure]
Returns the font family name of font.
(font-size font) [procedure]
Returns the font size of font in points.
(font-weight font) [procedure]
Returns the font weight of font. See documentation of function font
for details.
(font-traits font) [procedure]
Returns the font traits of font as an integer bitmask. See documentation of function font
for details.
(font-has-traits font trait ...) [procedure]
Returns #t
if font font has all the given traits.
(available-fonts) [procedure]
(available-fonts trait ...)
Returns all the available fonts that have matching font traits.
(available-font-families) [procedure]
Returns all the available font families, i.e. all font families for which there is at least one font installed.
A point describes a location on a two-dimensional plane consisting of a x and y coordinate. Points are represented as pairs of floating-point numbers where the car representes the x-coordinate and the cdr represents the y-coordinate. Even though an expression like '(3.5 . -2.0)
does represent a point, it is recommended to always construct points via function point
; e.g. (point 3.5 -2.0)
.
(point? obj) [procedure]
Returns #t
if obj is a valid point. Otherwise, it returns #f
.
(point x y) [procedure]
Returns a point for coordinates x and y.
(move-point point dx fy) [procedure]
Moves point by dx and dy and returns the result as a point.
(point-x point) [procedure]
Returns the x-coordinate for point.
(point-y point) [procedure]
Returns the y-coordinate for point.
zero-point [object]
The zero point, i.e (point 0.0 0.0)
.
A size describes the dimensions of a rectangle consisting of width and height values. Sizes are represented as pairs of floating-point numbers where the car representes the width and the cdr represents the height. Even though an expression like '(5.0 . 3.0)
does represent a size, it is recommended to always construct sizes via function size
; e.g. (size 5.0 3.0)
.
(size? obj) [procedure]
Returns #t
if obj is a valid size. Otherwise, it returns #f
.
(size w h) [procedure]
Returns a size for the given width w and height h.
(size-width size) [procedure]
Returns the width for size.
(size-height size) [procedure]
Returns the height for size.
(increase-size size dx dy) [procedure]
Returns a new size object whose width is increased by dx and whose height is increased by dy.
(scale-size size factor) [procedure]
Returns a new size object whose width and height is multiplied by factor.
A rect describes a rectangle in terms of an upper left point and a size. Rects are represented as pairs whose car is a point and whose cdr is a size. Even though an expression like '((1.0 . 2.0) . (3.0 4.0))
does represent a rect, it is recommended to always construct rects via function rect
; e.g. (rect (point 1.0 2.0) (size 3.0 4.0))
.
(rect? obj) [procedure]
Returns #t
if obj is a valid rect. Otherwise, it returns #f
.
(rect point size) [procedure]
(rect x y width height)
Returns a rect either from the given point and size, or from x-coordinate x, y-coordinate y, width w, and height h.
(move-rect rect dx dy) [procedure]
Moves rect by dx and dy and returns the result.
(rect-point rect) [procedure]
Returns the upper left corner point of rect.
(rect-size rect) [procedure]
Returns the size of the rect.
(rect-x rect) [procedure]
Returns the x-coordinate of the upper left corner point of rect.
(rect-y rect) [procedure]
Returns the y-coordinate of the upper left corner point of rect.
(rect-size rect) [procedure]
Returns the size of rect as a size, i.e. as a pair of floating-point numbers where the car representes the width and the cdr represents the height of rect.
(rect-width rect) [procedure]
Returns the width of rect.
(rect-height rect) [procedure]
Returns the height of rect.