more
This commit is contained in:
parent
5a513eeb61
commit
48a3ba7462
2
Changes
2
Changes
|
@ -1,6 +1,6 @@
|
|||
2.5 (Upcoming 2022)
|
||||
|
||||
o New operation -typeset will typeset a text file as a PDF
|
||||
o New operation -typeset typesets a text file as a PDF
|
||||
o New operation -table-of-contents makes table of contents from bookmarks
|
||||
o When adding text or graphics, may choose CYMK or Grey instead of RGB
|
||||
o Append e.g DUP2 to a page range to make 1,2,3 --> 1,1,2,2,3,3 etc.
|
||||
|
|
5
cpdf.ml
5
cpdf.ml
|
@ -1924,6 +1924,11 @@ let transform_rect transform rect =
|
|||
let maxy = fmax (fmax y0 y1) (fmax y2 y3) in
|
||||
Pdf.Array [Pdf.Real minx; Pdf.Real miny; Pdf.Real maxx; Pdf.Real maxy]
|
||||
|
||||
(*let transform_quadpoints transform quadpoints =*)
|
||||
|
||||
(* FIXME: We probably discovered this was wrong and that it isn't needed, and
|
||||
removed it. But check this before actually removing the commented code
|
||||
entirely. *)
|
||||
(* This is used to transform the BBox inside a form xobject representing an
|
||||
* annotation appearance.*)
|
||||
(*let transform_xobject_in_place pdf transform i =
|
||||
|
|
Loading…
Reference in New Issue