We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb050c1 commit e5354d4Copy full SHA for e5354d4
1 file changed
crates/engine_xdvipdfmx/xdvipdfmx/dvipdfmx.c
@@ -339,6 +339,11 @@ dvipdfmx_main (
339
int has_id = 0;
340
unsigned char id1[16], id2[16];
341
struct pdf_setting settings;
342
+ int pdf_version_major = 1;
343
+ int pdf_version_minor = 5;
344
+ int compression_level = 9;
345
+ double annot_grow_x = 0;
346
+ double annot_grow_y = 0;
347
348
assert(pdf_filename);
349
assert(dvi_filename);
@@ -373,11 +378,6 @@ dvipdfmx_main (
373
378
374
379
select_paper(paperspec);
375
380
376
- int pdf_version_major = 1;
377
- int pdf_version_minor = 5;
- int compression_level = 9;
- double annot_grow_x = 0;
- double annot_grow_y = 0;
381
bookmark_open = 0;
382
key_bits = 40;
383
permission = 0x003C;
0 commit comments