more
This commit is contained in:
parent
e2371ac3f1
commit
42aaa374a2
|
@ -588,7 +588,6 @@ let reset_arguments () =
|
||||||
args.labelstyle <- Pdfpagelabels.DecimalArabic;
|
args.labelstyle <- Pdfpagelabels.DecimalArabic;
|
||||||
args.labelprefix <- None;
|
args.labelprefix <- None;
|
||||||
args.labelstartval <- 1;
|
args.labelstartval <- 1;
|
||||||
args.squeeze <- false;
|
|
||||||
args.embedfonts <- true;
|
args.embedfonts <- true;
|
||||||
args.extract_text_font_size <- None;
|
args.extract_text_font_size <- None;
|
||||||
args.padwith <- None;
|
args.padwith <- None;
|
||||||
|
@ -601,7 +600,7 @@ let reset_arguments () =
|
||||||
(* Do not reset original_filename or cpdflin or was_encrypted or
|
(* Do not reset original_filename or cpdflin or was_encrypted or
|
||||||
* was_decrypted_with_owner or recrypt or producer or creator or
|
* was_decrypted_with_owner or recrypt or producer or creator or
|
||||||
* path_to_ghostscript or gs_malformed, since we want these to work across
|
* path_to_ghostscript or gs_malformed, since we want these to work across
|
||||||
* ANDs. *)
|
* ANDs. Or squeeze: a little odd, but we want it to happen on eventual output. *)
|
||||||
|
|
||||||
let get_pagespec () =
|
let get_pagespec () =
|
||||||
match args.inputs with
|
match args.inputs with
|
||||||
|
@ -2308,6 +2307,7 @@ let filesize name =
|
||||||
let embed_missing_fonts fi fo =
|
let embed_missing_fonts fi fo =
|
||||||
if args.path_to_ghostscript = "" then begin
|
if args.path_to_ghostscript = "" then begin
|
||||||
Printf.eprintf "Please supply path to gs with -gs\n";
|
Printf.eprintf "Please supply path to gs with -gs\n";
|
||||||
|
exit 2
|
||||||
end;
|
end;
|
||||||
let gscall =
|
let gscall =
|
||||||
args.path_to_ghostscript ^
|
args.path_to_ghostscript ^
|
||||||
|
@ -4447,12 +4447,35 @@ let expand_args argv =
|
||||||
let l = Array.to_list argv in
|
let l = Array.to_list argv in
|
||||||
Array.of_list (expand_args_inner [] l)
|
Array.of_list (expand_args_inner [] l)
|
||||||
|
|
||||||
|
let gs_malformed_force fi fo =
|
||||||
|
if args.path_to_ghostscript = "" then begin
|
||||||
|
Printf.eprintf "Please supply path to gs with -gs\n";
|
||||||
|
exit 2
|
||||||
|
end;
|
||||||
|
let gscall =
|
||||||
|
args.path_to_ghostscript ^
|
||||||
|
" -dNOPAUSE -dQUIET -sDEVICE=pdfwrite -sOUTPUTFILE=" ^ fo ^
|
||||||
|
" -dBATCH " ^ fi
|
||||||
|
in
|
||||||
|
match Sys.command gscall with
|
||||||
|
| 0 -> exit 0
|
||||||
|
| _ -> Printf.eprintf "Failed to mend file.\n"; exit 2
|
||||||
|
|
||||||
(* FIXME: Now we call this repeatedly from interactive programs, careful to
|
(* FIXME: Now we call this repeatedly from interactive programs, careful to
|
||||||
ensure that all memory is cleaned. See clearance of filenames hashtable, for
|
ensure that all memory is cleaned. See clearance of filenames hashtable, for
|
||||||
example. *)
|
example. *)
|
||||||
|
|
||||||
(* Main function. *)
|
(* Main function. *)
|
||||||
let go_withargv argv =
|
let go_withargv argv =
|
||||||
|
(* Check for the standalone -gs-malformed-force special command line. This
|
||||||
|
* has exactly one file input and exactly one output and just -gs <gs>
|
||||||
|
* -gs-malformed-force between. *)
|
||||||
|
match argv with
|
||||||
|
[|_; inputfilename; "-gs"; gslocation; "-gs-malformed-force"; "-o"; outputfilename|] ->
|
||||||
|
args.path_to_ghostscript <- gslocation;
|
||||||
|
ignore (gs_malformed_force inputfilename outputfilename);
|
||||||
|
exit 0
|
||||||
|
| _ ->
|
||||||
Hashtbl.clear filenames;
|
Hashtbl.clear filenames;
|
||||||
if demo then
|
if demo then
|
||||||
flprint "This demo is for evaluation only. http://www.coherentpdf.com/\n";
|
flprint "This demo is for evaluation only. http://www.coherentpdf.com/\n";
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
%FIXME: Document new -pad-multiple-before
|
%FIXME: Document new -pad-multiple-before
|
||||||
%FIXME: Document new @N@@@ @E@@@, @S@@@ options
|
%FIXME: Document new @N@@@ @E@@@, @S@@@ options
|
||||||
%FIXME: Document the rotate dance for adding rotated text
|
%FIXME: Document the rotate dance for adding rotated text
|
||||||
%FIXME: Document -gs gs -gs-malformed
|
%FIXME: Document -gs gs -gs-malformed -gs-malformed-force (be careful to say if it works when i / o files the same)
|
||||||
%FIXME: Document -gs gs -gs-embed-fonts
|
%FIXME: Document -gs gs -gs-embed-fonts
|
||||||
%FIXME: Document -merge-add-bookmarks, -merge-add-bookmarks-use-titles
|
%FIXME: Document -merge-add-bookmarks, -merge-add-bookmarks-use-titles
|
||||||
%FIXME: Document -bookmarks-open-to-level <n>
|
%FIXME: Document -bookmarks-open-to-level <n>
|
||||||
|
|
Loading…
Reference in New Issue