bitmap-appendtiff

Synopsis

(bitmap-appendtiff bitmap filename)

Parameters

  • bitmap
  • filename

Description

The suppied bitmap is appended as a new page to the TIFF file in G3 encoding. If the file does not exist yet, it’s created with the bitmap contents becoming the first page.

Side Effects

Return Value

unspecified (ok)

Example

> (define page (bitmap-create 400 600))
page
> (bitmap-appendtiff page "test.tiff")
ok
>