Added printing of XMP dc:description
This commit is contained in:
parent
89337b4ca7
commit
ae113db050
3
cpdf.ml
3
cpdf.ml
|
@ -3454,7 +3454,8 @@ let output_xmp_info encoding pdf =
|
|||
print_out tree "XMP xmp:ModifyDate" xmp "ModifyDate";
|
||||
print_out tree "XMP dc:title" dc "title";
|
||||
print_out tree "XMP dc:creator" dc "creator";
|
||||
print_out tree "XMP dc:subject" dc "subject"
|
||||
print_out tree "XMP dc:subject" dc "subject";
|
||||
print_out tree "XMP dc:description" dc "description"
|
||||
with
|
||||
_ -> ()
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ let demo = false
|
|||
let noncomp = false
|
||||
let major_version = 2
|
||||
let minor_version = 3
|
||||
let version_date = "(devel, build of 17th July 2019)"
|
||||
let version_date = "(devel, build of 3rd August 2019)"
|
||||
|
||||
open Pdfutil
|
||||
open Pdfio
|
||||
|
|
Loading…
Reference in New Issue