Page
Library
Module
Module type
Parameter
Class
Class type
Source
Vg.IImages.
Consult their semantics.
The |> operator is used to compose images. For this reason image combinators always take the image to use as the last argument.
type t = imageThe type for images.
val void : imagevoid is const Gg.Color.void, an invisible black image. void is an identity element for blend.
val axial : Gg.Color.stops -> Gg.p2 -> Gg.p2 -> imageaxial stops pt pt' is an image with an axial color gradient varying between pt and pt' according to color stops stops.
axial stops pt pt']q = [stops]t if q is on the line perpendicular to the line pt and pt' at the point pt + t * (pt' - pt).val radial : Gg.Color.stops -> ?f:Gg.p2 -> Gg.p2 -> float -> imageradial stops ~f c r is an image with a color gradient varying according to color stops stops on circles whose center are on the segment from f to c and radius vary, respectively, from 0 to r. The focus f defaults to c, it must be inside the circle (c, r).
radial stops ~f c r]p = [stops]t if t is the smallest value such that p is on the circle defined by radius t * r and center f + t * (c - f).cut area p i is i with the area outside [a, p] cut out, i.e. mapped to Gg.Color.void. area defaults to `Anz.
cut area p i]pt = [i]pt if [a, p]ptcut area p i]pt = Gg.Color.void otherwise.Warning. For outline cuts most renderers support only cutting into const axial and radial images. Consult the individual renderer documentation.
val cut_glyphs :
?area:[ `O of P.outline ] ->
?text:string ->
?blocks:(bool * (int * int) list) ->
?advances:Gg.v2 list ->
font ->
glyph list ->
image ->
imageWARNING. The interface and specifics of glyph rendering are still subject to change in the future.
cut_glyphs area text blocks advances font glyphs i is like cut except the path cut is the union of all the paths of the glyphs glyphs of the font font.
The origin of the first glyph is set to P2.o, the origin of each subsequent glyph in glyphs is offset by the advance vector of the previous glyph as provided by font. Advance vectors for each glyph can be overriden by providing their value in advances, if the length of advances is smaller than glyphs the rendering results are undefined.
If provided the text parameter indicates the UTF-8 text corresponding to the sequence of glyphs. This may be used by certain renderer to allow text search in the result or to draw the text if it lacks control over glyph rendering (in which case an empty list of glyphs may be passed).
If provided blocks is used to specify a sequential map between glyphs and the characters of text. The number of elements in the list defines the number of blocks. Starting at the head of each sequence, each block (char_adv, glyph_adv) indicates the number of characters and glyphs that make the next block (one or the other may be 0). If the boolean is true the glyph sequence is reversed for peforming the map. If blocks is unspecified a one to one map between glyphs and characters is assumed with undefined results if the number of glyphs and characters differ.
If area is provided, the outline area of the glyphs are cut as specified, otherwise the area of the glyphs is determined as mandated by the font. Warning. Backend support is poor this may be removed in the future.
blend src dst is src blended over dst using source over destination alpha blending.
blend src dst]p = Color.blend [src]p [dst]prot a i is i rotated by a.
rot a i]pt = [i]m⋅pt for any pt and with m = M2.rot -a.scale s i is i scaled by s.
scale s i](x,y) = [i](x/sx,y/sy) for any (x,y)tr m i is the affine transform in homogenous 2D space of each point of i by m (see Gg.P2.tr).
tr m i]pt = [i]m-1⋅pt for any ptNote. These predicates consider the structure of image values not their denotational interpretation; a single denotational interpretation can have many structural representations.
val is_void : image -> boolis_void i is i == void.
equal eq i i' is like equal but uses eq to test floating point values.
Note. Raster images are tested with Gg.Raster.equal.
compare_f cmp i i' is like compare but uses cmp to compare floating point values.
Note. Raster images are tested with Gg.Raster.compare.
val pp : Format.formatter -> image -> unitpp ppf i prints a textual representation of i on ppf.
val pp_f :
(Format.formatter -> float -> unit) ->
Format.formatter ->
image ->
unitpp_f pp_float ppf i prints i like pp but uses pp_float to print floating point values.
val to_string : image -> string