package camlimages

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Bitmap.MakeSource

Parameters

module B : Bitdepth

Signature

Sourcetype t

Bitmap type

Sourceval create : int -> int -> bytes option -> t

create width height initopt creates a bitmap of size width x height. You can set initopt the value to fill the bitmap.

create has no check of the size of initopt.

Sourceval create_with : int -> int -> bytes -> t

create_with width height initdata creates a bitmap whose initial data is initdata.

create_with has no check of the input size.

Sourceval create_with_scanlines : int -> int -> bytes array -> t

create_with_scanlines width height scanlines creates a bitmap whose initial data consists of scanlines. scanlines are raw data of each row of the image.

create_with_scanlines has no check of the input size.

Sourceval destroy : t -> unit

Destroy bitmaps

Sourceval access : t -> int -> int -> bytes * int

access t x y is the raw access to the image buffer. It returns the byte image and its offset to the point (x,y).

access has no boundary check.

Sourceval get_strip : t -> int -> int -> int -> bytes
Sourceval set_strip : t -> int -> int -> int -> bytes -> unit

Strip access

Here, "strip" means a rectangle region with height 1. get_strip t x y w returns the bytes reprensentation of strip of t at (x, y) - (x + w - 1, y). set_strip t x y w str write str to the strip of t at (x, y) - (x + w - 1, y).

Sourceval get_scanline : t -> int -> bytes
Sourceval set_scanline : t -> int -> bytes -> unit

Scanline access get_scanline t y returns the bytes representation of the scanline of t at y. set_scanline t y str writes str to the scanline of t at y.

Sourceval get_scanline_ptr : t -> (int -> (bytes * int) * int) option

get_scanline_ptr t returns a function to get a scanline of given y coordinate and the number of scanlines between y and the bottom of the image. It returns None if the internal image partitioning cannot provide such function efficiently.

Sourceval dump : t -> bytes

Create a bytes representation of a bitmap. It may easily raise an exception Out_of_memory for large images.

Sourceval copy : t -> t

Create a bitmap

Sourceval sub : t -> int -> int -> int -> int -> t

sub src x y width height returns sub-bitmap of src, at (x, y) - (x + width - 1, y + height - 1).

Sourceval blit : t -> int -> int -> t -> int -> int -> int -> int -> unit

blit src sx sy dst dx dy width height copies the rectangle region of src at (sx, sy) - (sx + width - 1, sy + height - 1) to dst, at (dx, dy) - (dx + width - 1, dy + height - 1)

Sourceval blocks : t -> int * int

returns number of blocks in row and column

Sourceval dump_block : t -> int -> int -> Block.t

dump_block t bx by returns the raw block of the given block coordinate. (not a pixel coodinate).

OCaml

Innovation. Community. Security.