mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2025-03-25 16:00:24 +01:00
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)
|
||||
|
||||
|
5
cpdfjpeg2000.ml
Normal file
5
cpdfjpeg2000.ml
Normal file
@ -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)
|
4
cpdfjpeg2000.mli
Normal file
4
cpdfjpeg2000.mli
Normal file
@ -0,0 +1,4 @@
|
||||
(** JPEG2000 Utilities *)
|
||||
|
||||
(** Return the width and height of a JPEG2000 stream *)
|
||||
val jpeg2000_dimensions : Pdfio.bytes -> int * int
|
Loading…
x
Reference in New Issue
Block a user