more
This commit is contained in:
parent
7adcd23388
commit
c2f6d5779f
|
@ -990,7 +990,7 @@ let anon_fun s =
|
||||||
Not_found ->
|
Not_found ->
|
||||||
match args.inputs with
|
match args.inputs with
|
||||||
| [] ->
|
| [] ->
|
||||||
Pdfe.log (Printf.sprintf "Warning: range '%s' ignored\n" s)
|
Pdfe.log (Printf.sprintf "Warning: '%s' ignored\n" s)
|
||||||
| (a, _, d, e, f, g)::t ->
|
| (a, _, d, e, f, g)::t ->
|
||||||
args.inputs <- (a, fixdashes s, d, e, f, g)::t
|
args.inputs <- (a, fixdashes s, d, e, f, g)::t
|
||||||
|
|
||||||
|
|
|
@ -186,7 +186,7 @@ let rec ops_of_drawop pdf endpage filename bates batespad num page = function
|
||||||
| CYMK (c, y, m, k) -> [Op_K (c, y, m, k)]
|
| CYMK (c, y, m, k) -> [Op_K (c, y, m, k)]
|
||||||
| NoCol -> []
|
| NoCol -> []
|
||||||
end
|
end
|
||||||
| ClosePath
|
| ClosePath -> [Pdfops.Op_h]
|
||||||
| Fill -> [Pdfops.Op_f]
|
| Fill -> [Pdfops.Op_f]
|
||||||
| FillEvenOdd -> [Pdfops.Op_f']
|
| FillEvenOdd -> [Pdfops.Op_f']
|
||||||
| Stroke -> [Pdfops.Op_S]
|
| Stroke -> [Pdfops.Op_S]
|
||||||
|
@ -194,7 +194,7 @@ let rec ops_of_drawop pdf endpage filename bates batespad num page = function
|
||||||
| FillStrokeEvenOdd -> [Pdfops.Op_B']
|
| FillStrokeEvenOdd -> [Pdfops.Op_B']
|
||||||
| Clip -> [Pdfops.Op_W; Pdfops.Op_n]
|
| Clip -> [Pdfops.Op_W; Pdfops.Op_n]
|
||||||
| ClipEvenOdd -> [Pdfops.Op_W']
|
| ClipEvenOdd -> [Pdfops.Op_W']
|
||||||
| SetLineThickness t -> [Pdfops.Op_w t; Pdfops.Op_n]
|
| SetLineThickness t -> [Pdfops.Op_w t]
|
||||||
| SetLineCap c -> [Pdfops.Op_J c]
|
| SetLineCap c -> [Pdfops.Op_J c]
|
||||||
| SetLineJoin j -> [Pdfops.Op_j j]
|
| SetLineJoin j -> [Pdfops.Op_j j]
|
||||||
| SetMiterLimit m -> [Pdfops.Op_M m]
|
| SetMiterLimit m -> [Pdfops.Op_M m]
|
||||||
|
|
Loading…
Reference in New Issue