Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
This module implements the Ascii85 Encoding as specified by Adobe's "PostScript LANGUAGE REFERENCE third edition". For the details of the format, see sections "ASCII Base-85 Strings" and "ASCII85Encode Filter".
Copyright (c) 2015, Christian Lindig <lindig@gmail.com> All rights reserved. See LICENSE.md.
val encode : string -> in_channel -> out_channel -> unit
encode head ic oc
writes head
to oc
and then reads a byte stream from ic
until the end and emits its Ascii85 encoding to oc
.