Library
Module
Module type
Parameter
Class
Class type
I
is for image.
Construction and composition of images.
Consult the basics for an overview.
TL;DR:
I.((string a1 "Left" <|> string a2 "Right") <->
string a3 "below" <|> char a4 '!' 1 1)
type t = image
val height : image -> int
val width : image -> int
val empty : image
empty
is a zero-sized image.
uchars attr us
is an image containing text us
, styled with attr
.
val void : int -> int -> image
void w h
is a w * h
rectangle of transparent cells.
void
is magical: it has geometry, but no displayable content. This is different, for example, from the space character U+0020
, which renders as a cell filled with the background color. This means that void
interacts specially with overlays.
A negative size is treated as 0
. void 0 0
is empty
. Void with only one dimension 0
acts as a spacing element in the other dimension.
Three basic composition modes allow construction of more complex images from simpler ones.
i1 <-> i2
is an image with i1
above i2
.
Its width
= max (width i1) (width i2)
and height
= height i1 +
height i2
. Images are left-aligned. The missing region is implicitly filled with void
.
[xx] <-> [y] = [xx] [y.]
<->
and void
form a monoid. <->
is left-associative.
i1 </> i2
is an image with i1
overlaid over i2
.
Its width
= max (width i1) (width i2)
and height
= max (height i1)
(height i2)
. Images are top-left-aligned. In the region of their overlap, only the void
cells of i1
show fragments of i2
.
[x.x] </> [yyyy] = [xyxy]
</>
and void
form a monoid. </>
is left-associative.
hcrop left right i
is i
with left
leftmost, and right
rightmost columns missing. If left + right >= width i
the result is empty
.
If either left
or right
is negative, instead of being cropped, the image is padded on that side.
For example:
hcrop 0 1 [abc]
= [ab]
hcrop 1 1 [abc]
= [b]
hcrop (-1) 1 [abc]
= void 1 1 <|> hcrop 0 1 [abc]
= [.ab]
hcrop 2 2 [abc]
= empty
crop ~l:left ~r:right ~t:top ~b:bottom i
is vcrop left right (hcrop top bottom) i
.
Missing arguments default to 0
.
tile m n i
is a grid of m
horizontal and n
vertical repetitions of i
.
hsnap ~align w i
is an image of width strictly w
obtained by either horizontally padding or cropping i
and positioning it according to ~align
.
~align
defaults to `Middle
.
vsnap ~align h i
is an image of height strictly h
obtained by either vertically padding or cropping i
and positioning it according to ~align
.
~align
defaults to `Middle
.
Format
interoperabilityval strf :
?attr:attr ->
?w:int ->
('a, Format.formatter, unit, image) Pervasives.format4 ->
'a
strf ?attr ?w:width format ...
pretty-prints like Format.asprintf format ...
, but returns an image
.
attr
is the (outermost) attribute. Defaults to A.empty
.
width
is used to set the margin on the formatter. This is only a hint, and does not guarantee the width of the result. Consult Format.set_margin
for details. Defaults to an unspecified, large number.
val kstrf :
?attr:attr ->
?w:int ->
(image -> 'a) ->
('b, Format.formatter, unit, 'a) Pervasives.format4 ->
'b
kstrf ?attr ?w k format ...
is continuation-based strf ?attr ?w format ...
.
val pp_attr :
attr ->
(Format.formatter -> 'a -> unit) ->
Format.formatter ->
'a ->
unit
attr a f
is a pretty-printer like f
, except its output is styled with a
. This applies only outside of any styling f
itself might embed.