Skeleton for JPEG2000 support
This commit is contained in:
parent
1c8cbfb015
commit
ac6645da52
4
Makefile
4
Makefile
|
@ -7,8 +7,8 @@ DOC = cpdfunicodedata cpdferror cpdfdebug cpdfjson cpdfstrftime cpdfcoord \
|
|||
cpdfembed cpdffont cpdftype cpdfaddtext cpdfpad cpdfocg \
|
||||
cpdfsqueeze cpdfdraft cpdfspot cpdfpagelabels cpdfcreate cpdfannot \
|
||||
cpdfxobject cpdfimpose cpdfchop cpdftweak cpdftexttopdf cpdftoc \
|
||||
cpdfjpeg cpdfpng cpdfimage cpdfdraw cpdfcomposition cpdfshape \
|
||||
cpdfcolours cpdfdrawcontrol cpdfcommand
|
||||
cpdfjpeg cpdfjpeg2000 cpdfpng cpdfimage cpdfdraw cpdfcomposition \
|
||||
cpdfshape cpdfcolours cpdfdrawcontrol cpdfcommand
|
||||
|
||||
MODS = $(NONDOC) $(DOC)
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
open Pdfutil
|
||||
open Pdfio
|
||||
|
||||
(* Return the width and height of a JPEG2000 image, per Michael Petrov's C version. *)
|
||||
let jpeg2000_dimensions bs = (0, 0)
|
|
@ -0,0 +1,4 @@
|
|||
(** JPEG2000 Utilities *)
|
||||
|
||||
(** Return the width and height of a JPEG2000 stream *)
|
||||
val jpeg2000_dimensions : Pdfio.bytes -> int * int
|
Loading…
Reference in New Issue