summaryrefslogtreecommitdiff
path: root/support/dktools/f2lpdf.c
blob: 45e44416e7036b36b1556c3d6b0a04a74c7ac1f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
/*
	WARNING: This file was generated by dkct.
	Changes you make here will be lost if dkct is run again!
	You should modify the original source and run dkct on it.
	Original source: f2lpdf.ctr
*/

/*
Copyright (C) 2012-2017, Dirk Krause

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
  this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above opyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.
* Neither the name of the author nor the names of contributors may be used
  to endorse or promote products derived from this software without specific
  prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/**	@file f2lpdf.c The f2lpdf module.
*/


#line 699 "f2lpdf.ctr"

#include "dk3all.h"
#include "dk3bezcu.h"
#include "fig2lat.h"
#include "f2lud.h"
#include "f2lsvg.h"
#include "f2lpdf.h"
#include "dk3figto.h"
#if 0
#include "dkt-version.h"
#endif
#include "dk4vers.h"
#include "dk3bmeo.h"
#include "dk3bm.h"
#include "dk3pdf.h"
#include "dk3bif.h"





#line 719 "f2lpdf.ctr"



/**	Driver specific details for entire drawing.
*/
typedef struct {
  dk3_pdf_t		*opdf;		/**< Output PDF. */
  dk3_sto_t		*sFonts;	/**< Storage for fonts. */
  dk3_sto_it_t		*iFonts;	/**< Iterator for font storage. */
  dk3_sto_t		*sImages;	/**< Storage for image data. */
  dk3_sto_it_t		*iImages;	/**< Iterator for images storage. */
  char const		*shortOutFile;	/**< Short output file name. */
  unsigned long		 nFonts;	/**< Number of fonts in sFonts. */
  unsigned long		 nImages;	/**< Number of images in sImages. */
} f2l_pdf_drawing_info_t;






/* ************************************************************************ */
/* *                                                                      * */
/* *         Tool functions.                                              * */
/* *                                                                      * */
/* ************************************************************************ */


#line 743 "f2lpdf.ctr"



/**	Delete driver-specific details.
	@param	ptr	Structure to delete.
*/
static
void
f2lpdf_drawing_info_delete(f2l_pdf_drawing_info_t *ptr)
{
  f2l_text_handling_t		*th;
  f2l_image_t			*im;
  

#line 756 "f2lpdf.ctr"
  if(ptr) {
    dk3_release(ptr->shortOutFile);
    if(ptr->opdf) {
      dk3pdf_close(ptr->opdf);
    } ptr->opdf = NULL;
    if(ptr->sFonts) {
      if(ptr->iFonts) {
        dk3sto_it_reset(ptr->iFonts);
	while(NULL != (th = (f2l_text_handling_t *)dk3sto_it_next(ptr->iFonts)))
	{
	  dk3_delete(th);
	}
	dk3sto_it_close(ptr->iFonts);
      }
      dk3sto_close(ptr->sFonts);
    } ptr->sFonts = NULL; ptr->iFonts = NULL;
    if(ptr->sImages) {
      if(ptr->iImages) {
        dk3sto_it_reset(ptr->iImages);
	while(NULL != (im = (f2l_image_t *)dk3sto_it_next(ptr->iImages))) {
	  f2l_tool_image_delete(im);
	}
	dk3sto_it_close(ptr->iImages);
      }
      dk3sto_close(ptr->sImages);
    } ptr->sImages = NULL; ptr->iImages = NULL;
    ptr->nFonts = 0UL;
    ptr->nImages = 0UL;
    dk3_delete(ptr);
  } 

#line 786 "f2lpdf.ctr"
}



/**	Create structure for driver-specific details.
	@param	job	Job structure.
	@param	drw	Drawing structure.
	@return	Pointer to new structure on success, NULL on error.
*/
static
f2l_pdf_drawing_info_t *
f2lpdf_drawing_info_new(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw
)
{
  f2l_pdf_drawing_info_t	*back	= NULL;
  int				 ok	= 0;	/* Flag: No error. */
  

#line 805 "f2lpdf.ctr"
  if((job) && (drw)) {
    back = dk3_new_app(f2l_pdf_drawing_info_t,1,job->app);
    if(back) {
      back->shortOutFile = NULL;
      back->opdf = NULL;
      back->sFonts = NULL;
      back->iFonts = NULL;
      back->sImages = NULL;
      back->iImages = NULL;
      back->nFonts = 0UL;
      back->nImages = 0UL;
      back->sFonts = dk3sto_open_app(job->app);
      if(back->sFonts) {
        dk3sto_set_comp(back->sFonts, dk3fig_tool_text_handling_compare, 0);
        back->iFonts = dk3sto_it_open(back->sFonts);
	if(back->iFonts) {
	  back->sImages = dk3sto_open_app(job->app);
	  if(back->sImages) {
	    dk3sto_set_comp(back->sImages, f2l_tool_compare_images, 0);
	    back->iImages = dk3sto_it_open(back->sImages);
	    if(back->iImages) {
	      back->opdf = dk3pdf_open_app(job->app);
	      if(back->opdf) {
	        ok = 1;
	      }
	    }
	  }
	}
      }
      if(!(ok)) {
        f2lpdf_drawing_info_delete(back);
	back = NULL;
      }
    } else {
    }
  } 

#line 841 "f2lpdf.ctr"
  return back;
}



/* ************************************************************************ */
/* *                                                                      * */
/* *         PDF with LaTeX output driver.                                * */
/* *         This driver creates .tex/.pdf combinations to be included    * */
/* *         in a .tex source.                                            * */
/* *                                                                      * */
/* ************************************************************************ */


#line 851 "f2lpdf.ctr"



/**	Register image file name in pdi for later use.
	@param	job	Job structure.
	@param	drw	Drawing structure.
	@param	pdi	PDF information structure.
	@param	fn	Image file name to add.
	@param	li	Line number of image object definition.
	@return	1 on success, 0 on error.
*/
static
f2l_image_t *
f2lpdf_register_image(
  f2l_job_t			*job,
  dk3_fig_drawing_t		*drw,
  f2l_pdf_drawing_info_t	*pdi,
  char const			*fn,
  unsigned long			 li
)
{
  dk3_ufi_t		 ufi;		/* Unique file identifier. */
  f2l_image_t		*back = NULL;	/* Image information structure. */

  if(dk3ufi_c8_get_app(&ufi, fn, job->app)) {
    back = (f2l_image_t *)dk3sto_it_find_like(pdi->iImages, (void *)(&ufi), 1);
    if(!(back)) {
      back = f2l_tool_image_new(fn, job->app, li);
      if(back) {
        if(dk3sto_add(pdi->sImages, (void *)back)) {
	  back->imageNumber = pdi->nImages;
	  pdi->nImages += 1UL;
	} else {
	  f2l_tool_image_delete(back);
	  back = NULL;
	  f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 887 "f2lpdf.ctr"
	}
      } else {
	f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 890 "f2lpdf.ctr"
      }
    }
  } else {
    f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 894 "f2lpdf.ctr"
  }
  return back;
}



/**	Add image XObject data to PDF.
	@param	job	Job structure.
	@param	drw	Drawing structure.
	@param	pdi	PDF information structure.
	@param	im	Image information to add.
	@return	1 on success, 0 on error.
*/
static
int
f2lpdf_add_image_to_pdf(
  f2l_job_t			*job,
  dk3_fig_drawing_t		*drw,
  f2l_pdf_drawing_info_t	*pdi,
  f2l_image_t			*im
)
{
  dk3_bm_eps_options_t	 options;	/* Options for PDF conversion. */
  dk3_bif_t		*bif;		/* Bitmap image file. */
  int			 back = 0;
  

#line 920 "f2lpdf.ctr"
  bif = dk3bif_open_c8_filename_app(
    im->filename, DK3_BIF_IMAGE_TYPE_UNKNOWN, job->app
  );
  if(bif) {
    dk3bmeo_init(&options);
    options.app = job->app;
    options.ip = 1;
    options.jip = 0;
    options.mode = DK3_BMEPS_MODE_PLACED_OBJECT;
    options.szmode = DK3_BMEPS_SIZE_1_1;	

#line 930 "f2lpdf.ctr"
    options.dr = DK3_BMEPS_DRIVER_PDF;
    options.rbpc = 1;
    options.dct = 1;
    options.color = 1;
    if(dk3bif_read_data(bif)) {
      im->xo = dk3pdf_create_ixobject_progress(pdi->opdf,bif,&options,NULL,0,0);
      im->width = dk3bif_get_width(bif);
      im->height = dk3bif_get_height(bif);
      im->xres = dk3bif_get_xres(bif);
      im->yres = dk3bif_get_yres(bif);
      if(im->xo) {
        back = 1;
      } else {
	f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 944 "f2lpdf.ctr"
      }
    } else {
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 947 "f2lpdf.ctr"
    }
    dk3bif_close(bif);
  } else {
    f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 951 "f2lpdf.ctr"
  }
  

#line 953 "f2lpdf.ctr"
  return back;
}



int
f2lpdf_pdf_with_tex_initialize(f2l_job_t *job, dk3_fig_drawing_t *drw)
{
  f2l_pdf_drawing_info_t	*pdi;			/* Driver spec det. */
  dk3_fig_obj_t			*pobj;			/* Current object. */
  f2l_image_t			*im;			/* Current image. */
  dkChar const			*oldsourcefile = NULL;	/* Old source file. */
  unsigned long			 oldsourceline = 0UL;	/* Old source line. */
  int		 		 back = 0;
  int				 ff;			/* Font flags. */
  

#line 969 "f2lpdf.ctr"
  pdi = f2lpdf_drawing_info_new(job, drw);
  if(pdi) {
    drw->dsd = (void *)pdi;
    pdi->shortOutFile = dk3fig_tool_short_output_file_name(job->on2, job->app);
    if(pdi->shortOutFile) {
      back = 1;
      dk3pdf_set_next_mediabox(pdi->opdf, 0L, job->lwidth, 0L, job->lheight);
        oldsourcefile = dk3app_get_source_file(job->app);
        oldsourceline = dk3app_get_source_line(job->app);
        dk3sto_it_reset(drw->iobj);
        while(NULL != (pobj = (dk3_fig_obj_t *)dk3sto_it_next(drw->iobj))) {
          

#line 981 "f2lpdf.ctr"
	  dk3app_set_source_line(job->app, pobj->li);
	  switch(pobj->ot) {
	    case DK3_FIG_OBJ_TEXT: {
	      ff = (pobj->dt).txt.ff;
	      if(!(ff & DK3_FIG_FONT_FLAG_HIDDEN)) {	

#line 986 "f2lpdf.ctr"
	        if(!(ff & DK3_FIG_FONT_FLAG_SPECIAL)) {	

#line 987 "f2lpdf.ctr"
	          if(ff & DK3_FIG_FONT_FLAG_PS) {		

#line 988 "f2lpdf.ctr"
	            if(job->ntf) {			

#line 989 "f2lpdf.ctr"
		      pobj->dsd = (void *)f2l_tool_register_font(
		        pdi->sFonts, pdi->iFonts, &(pdi->nFonts),
		        (pobj->dt).txt.fo, (pobj->dt).txt.fs, job->app
		      );
		      if(!(pobj->dsd)) {
		        back = 0;			

#line 995 "f2lpdf.ctr"
			f2l_tool_set_exit_status(job,FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 996 "f2lpdf.ctr"
		      }
		    } else {				

#line 998 "f2lpdf.ctr"
		    }
	          }
	        }
	      }
	    } break;
	    case DK3_FIG_OBJ_POLYLINE: {
	      if(5 == pobj->st) {				

#line 1005 "f2lpdf.ctr"
	        pobj->dsd = 
		(void *)f2lpdf_register_image(
		  job, drw, pdi, (pobj->dt).pol.fn, pobj->li
		);
		if(!(pobj->dsd)) {
		  back = 0;
		  f2l_tool_set_exit_status(job,FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1012 "f2lpdf.ctr"
		}
	      }
	    } break;
	  }
        }
        dk3sto_it_reset(pdi->iImages);
        while(NULL != (im = (f2l_image_t *)dk3sto_it_next(pdi->iImages))) {
	  if(!f2lpdf_add_image_to_pdf(job, drw, pdi, im)) {	

#line 1020 "f2lpdf.ctr"
	    back = 0;
	    f2l_tool_set_exit_status(job,FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1022 "f2lpdf.ctr"
	  }
        }
        dk3app_set_source_file(job->app, oldsourcefile);
        dk3app_set_source_line(job->app, oldsourceline);
    } else {
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1028 "f2lpdf.ctr"
    }
  } else {
    f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1031 "f2lpdf.ctr"
  } 

#line 1032 "f2lpdf.ctr"
  return back;
}



void
f2lpdf_pdf_with_tex_end(f2l_job_t *job, dk3_fig_drawing_t *drw)
{
  if(drw->dsd) {
    f2lpdf_drawing_info_delete((f2l_pdf_drawing_info_t *)(drw->dsd));
    drw->dsd = NULL;
  }
}



int
f2lpdf_pdf_with_tex_open_output_files(f2l_job_t *job)
{
  int		 back = 0;
  job->of1 = dk3sf_fopen_app(job->on1, dkT("w"), job->app);
  if(job->of1) {
    job->of2 = dk3sf_fopen_app(job->on2, dkT("wb"), job->app);
    if(job->of2) {
      back = 1;
    } else {
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1059 "f2lpdf.ctr"
    }
  } else {
    f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1062 "f2lpdf.ctr"
  }
  return back;
}



void
f2lpdf_pdf_with_tex_close_output_files(f2l_job_t *job)
{
  if(job->of2) {
    dk3sf_fclose_app(job->of2, job->app);
  }
  if(job->of1) {
    dk3sf_fclose_app(job->of1, job->app);
  }
}



int
f2lpdf_pdf_with_tex_start_processing(f2l_job_t *job, dk3_fig_drawing_t *drw)
{

  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int		 back = 0;

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  f2l_tool_start_tex_part(
    job->of1, job, drw, pdi->shortOutFile, pdi->iFonts, pdi->nFonts
  );
  if(dk3pdf_open_page_with_clip(pdi->opdf, 1)) {
    back = 1;
  } else {
    f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1096 "f2lpdf.ctr"
  }
  return back;
}



void
f2lpdf_pdf_with_tex_end_processing(f2l_job_t *job, dk3_fig_drawing_t *drw)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  f2l_tool_end_tex_part(job->of1);
  dk3pdf_close_page(pdi->opdf);
  if(!dk3pdf_write_file(pdi->opdf, job->of2)) {
    /* ERROR: Failed to write PDF output file! */
    f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1113 "f2lpdf.ctr"
  }
}



void
f2lpdf_pdf_with_tex_text_object(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 x,
  double		 y
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    f2l_tool_text_object(job->of1, job, drw, obj, x, y, pdi->nFonts);
  }
}



void
f2lpdf_pdf_with_tex_image_object(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  dk3_bb_t		*outbb,
  int			 drawdir,
  int			*ec
)
{
  dk3_coordinates_transformation_t	 trans;	/* Graphics state transform. */
  f2l_pdf_drawing_info_t		*pdi;	/* Driver specific details. */
  f2l_image_t				*im;	/* Current image. */
  int					 res;	/* Search result. */
  

#line 1152 "f2lpdf.ctr"
  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  im = (f2l_image_t *)(obj->dsd);
  if((im) && (pdi)) {		

#line 1155 "f2lpdf.ctr"
    if(im->xo) {		

#line 1156 "f2lpdf.ctr"
      res = dk3bm_find_transformation(
        &trans, outbb, drawdir, (double)(im->width), (double)(im->height),
	im->xres, im->yres, ec
      );
      if(res) {			

#line 1161 "f2lpdf.ctr"
        res = dk3pdf_gsave(pdi->opdf);
	if(!(res)) {		

#line 1163 "f2lpdf.ctr"
	  /* ERROR */
          dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
	  f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1166 "f2lpdf.ctr"
	}
	res =
	dk3pdf_translate_double(pdi->opdf,trans.x_translate,trans.y_translate);
	if(!(res)) {		

#line 1170 "f2lpdf.ctr"
	  /* ERROR */
          dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
	  f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1173 "f2lpdf.ctr"
	}
	if(trans.rot) {
	  res = dk3pdf_rotate_int(pdi->opdf, (90 * trans.rot));
	  if(!(res)) {		

#line 1177 "f2lpdf.ctr"
	    /* ERROR */
            dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
	    f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1180 "f2lpdf.ctr"
	  }
	}
	res = dk3pdf_scale_double(pdi->opdf, trans.x_scale, trans.y_scale);
	if(!(res)) {		

#line 1184 "f2lpdf.ctr"
	  /* ERROR */
          dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
	  f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1187 "f2lpdf.ctr"
	}
	res = dk3pdf_add_xobject_to_page(pdi->opdf, im->xo);
	if(!(res)) {		

#line 1190 "f2lpdf.ctr"
	  /* ERROR */
          dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
	  f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1193 "f2lpdf.ctr"
	}
	res = dk3pdf_grestore(pdi->opdf);
	if(!(res)) {		

#line 1196 "f2lpdf.ctr"
	  /* ERROR */
          dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
	  f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1199 "f2lpdf.ctr"
	}
      } else {			

#line 1201 "f2lpdf.ctr"
        /* ERROR: Math error while searching transformation! */
        dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 35);
        f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_MATH); 

#line 1204 "f2lpdf.ctr"
      }
    } else {			

#line 1206 "f2lpdf.ctr"
    }
  } else {			

#line 1208 "f2lpdf.ctr"
  } 

#line 1209 "f2lpdf.ctr"
}



void
f2lpdf_pdf_with_tex_newpath(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  /* Do nothing, in PDF the moveto operator includes newpath. */
}



void
f2lpdf_pdf_with_tex_moveto(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 x,
  double		 y
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_newpath_moveto(pdi->opdf, x, y);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1243 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_lineto(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 x,
  double		 y
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Ouutput operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_lineto(pdi->opdf, x, y);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1267 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_curveto(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 xcs,
  double		 ycs,
  double		 xce,
  double		 yce,
  double		 xe,
  double		 ye
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */
  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_curveto(pdi->opdf, xcs, ycs, xce, yce, xe, ye);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1294 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_closepath(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_closepath(pdi->opdf);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1316 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_fill(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_fill_eo(pdi->opdf);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1338 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_clip(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_clip_eo(pdi->opdf);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1360 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_stroke(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_stroke(pdi->opdf);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1382 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_gsave(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_gsave(pdi->opdf);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1404 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_grestore(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_grestore(pdi->opdf);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1426 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_setcolor(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 r,
  double		 g,
  double		 b
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_nonstroking_rgb(pdi->opdf, r, g, b);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1451 "f2lpdf.ctr"
    }
    res = dk3pdf_stroking_rgb(pdi->opdf, r, g, b);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1456 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_set_line_width(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 lw
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_set_linewidth(pdi->opdf, lw);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1479 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_set_line_style(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  int			 ls,
  double		 sv,
  double		 lw
)
{
  double		 	 xsv[32];	/* Strokes and gaps lengths. */
  f2l_pdf_drawing_info_t	*pdi;		/* Driver specific details. */
  double			 ph;		/* Phase. */
  double			 gw;		/* Gap width. */
  size_t			 nsv;		/* Number of elements xsv. */
  int				 res;		/* Output operation result. */

  ph = 0.0;
  nsv = 0;
  xsv[0] = 0.0;
  gw = f2lto_find_gap_length(job, lw, sv);
  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    switch(ls) {
      case DK3_FIG_LS_DASH_TRIPLE_DOTTED: {
        xsv[0] = sv;
	xsv[1] = gw;
	xsv[2] = lw;
	xsv[3] = gw;
	xsv[4] = lw;
	xsv[5] = gw;
	xsv[6] = lw;
	xsv[7] = gw;
	nsv = 8;
      } break;
      case DK3_FIG_LS_DASH_DOUBLE_DOTTED: {
        xsv[0] = sv;
	xsv[1] = gw;
	xsv[2] = lw;
	xsv[3] = gw;
	xsv[4] = lw;
	xsv[5] = gw;
	nsv = 6;
      } break;
      case DK3_FIG_LS_DASH_DOTTED: {
        xsv[0] = sv;
	xsv[1] = gw;
	xsv[2] = lw;
	xsv[3] = gw;
	nsv = 4;
      } break;
      case DK3_FIG_LS_DOTTED: {
        xsv[0] = lw; xsv[1] = gw;
	nsv = 2;
      } break;
      case DK3_FIG_LS_DASHED: {
        xsv[0] = sv; xsv[1] = gw;
	nsv = 2;
      } break;
    }
    res = dk3pdf_set_line_dash(pdi->opdf, xsv, nsv, ph);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1549 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_set_line_end(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  int			 le
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_set_linecap(pdi->opdf, le);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1572 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_set_line_join(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  int			 lj
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_set_linejoin(pdi->opdf, lj);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1595 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_set_color_1(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_rgb_color_t	*rgb
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_stroking_rgb(pdi->opdf, rgb->r, rgb->g, rgb->b);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1617 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_set_color_2(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_rgb_color_t	*rgb
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)(drw->dsd);
  if(pdi) {
    res = dk3pdf_nonstroking_rgb(pdi->opdf, rgb->r, rgb->g, rgb->b);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1639 "f2lpdf.ctr"
    }
  }
}



void
f2lpdf_pdf_with_tex_debug(
  f2l_job_t		*job,
  char const		*msg
)
{
  f2l_pdf_drawing_info_t	*pdi;	/* Driver specific details. */
  int				 res;	/* Output operation result. */

  pdi = (f2l_pdf_drawing_info_t *)((job->drw)->dsd);
  if(pdi) {
    res = dk3pdf_write_debug_line(pdi->opdf, msg);
    if(!(res)) {
      dk3app_log_1(job->app, DK3_LL_ERROR, job->msg, 41);
      f2l_tool_set_exit_status(job, FIG2LAT_EXIT_ERROR_SYSTEM); 

#line 1660 "f2lpdf.ctr"
    }
  }
}



/* ************************************************************************ */
/* *                                                                      * */
/* *         LaTeX with PDF output driver.                                * */
/* *         This driver combines .tex/.pdf combinations to be            * */
/* *         processed with pdflatex directly.                            * */
/* *                                                                      * */
/* ************************************************************************ */


#line 1671 "f2lpdf.ctr"



int
f2lpdf_tex_with_pdf_initialize(f2l_job_t *job, dk3_fig_drawing_t *drw)
{
  int		 back = 0;
  back = f2lpdf_pdf_with_tex_initialize(job, drw);
  return back;
}



void
f2lpdf_tex_with_pdf_end(f2l_job_t *job, dk3_fig_drawing_t *drw)
{
  f2lpdf_pdf_with_tex_end(job, drw);
}



int
f2lpdf_tex_with_pdf_open_output_files(f2l_job_t *job)
{
  int		 back = 0;
  back = f2lpdf_pdf_with_tex_open_output_files(job);
  return back;
}



void
f2lpdf_tex_with_pdf_close_output_files(f2l_job_t *job)
{
  f2lpdf_pdf_with_tex_close_output_files(job);
}



int
f2lpdf_tex_with_pdf_start_processing(f2l_job_t *job, dk3_fig_drawing_t *drw)
{
  int		 back = 0;
  f2l_tool_begin_latex_document(job->of1, job, drw);
  back = f2lpdf_pdf_with_tex_start_processing(job, drw);
  return back;
}



void
f2lpdf_tex_with_pdf_end_processing(f2l_job_t *job, dk3_fig_drawing_t *drw)
{
  f2lpdf_pdf_with_tex_end_processing(job, drw);
  f2l_tool_end_latex_document(job->of1, job, drw);
}



void
f2lpdf_tex_with_pdf_text_object(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 x,
  double		 y
)
{
  f2lpdf_pdf_with_tex_text_object(job, drw, obj, x, y);
}



void
f2lpdf_tex_with_pdf_image_object(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  dk3_bb_t		*outbb,
  int			 drawdir,
  int			*ec
)
{
  f2lpdf_pdf_with_tex_image_object(job, drw, obj, outbb, drawdir, ec);
}



void
f2lpdf_tex_with_pdf_newpath(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2lpdf_pdf_with_tex_newpath(job, drw, obj);
}



void
f2lpdf_tex_with_pdf_moveto(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 x,
  double		 y
)
{
  f2lpdf_pdf_with_tex_moveto(job, drw, obj, x, y);
}



void
f2lpdf_tex_with_pdf_lineto(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 x,
  double		 y
)
{
  f2lpdf_pdf_with_tex_lineto(job, drw, obj, x, y);
}



void
f2lpdf_tex_with_pdf_curveto(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 xcs,
  double		 ycs,
  double		 xce,
  double		 yce,
  double		 xe,
  double		 ye
)
{
  f2lpdf_pdf_with_tex_curveto(job, drw, obj, xcs, ycs, xce, yce, xe, ye);
}



void
f2lpdf_tex_with_pdf_closepath(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2lpdf_pdf_with_tex_closepath(job, drw, obj);
}



void
f2lpdf_tex_with_pdf_fill(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2lpdf_pdf_with_tex_fill(job, drw, obj);
}



void
f2lpdf_tex_with_pdf_clip(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2lpdf_pdf_with_tex_clip(job, drw, obj);
}



void
f2lpdf_tex_with_pdf_stroke(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2lpdf_pdf_with_tex_stroke(job, drw, obj);
}



void
f2lpdf_tex_with_pdf_gsave(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2lpdf_pdf_with_tex_gsave(job, drw, obj);
}



void
f2lpdf_tex_with_pdf_grestore(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj
)
{
  f2lpdf_pdf_with_tex_grestore(job, drw, obj);
}



void
f2lpdf_tex_with_pdf_setcolor(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 r,
  double		 g,
  double		 b
)
{
  f2lpdf_pdf_with_tex_setcolor(job, drw, obj, r, g, b);
}



void
f2lpdf_tex_with_pdf_set_line_width(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  double		 lw
)
{
  f2lpdf_pdf_with_tex_set_line_width(job, drw, obj, lw);
}



void
f2lpdf_tex_with_pdf_set_line_style(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  int			 ls,
  double		 sv,
  double		 lw
)
{
  f2lpdf_pdf_with_tex_set_line_style(job, drw, obj, ls, sv, lw);
}



void
f2lpdf_tex_with_pdf_set_line_end(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  int			 le
)
{
  f2lpdf_pdf_with_tex_set_line_end(job, drw, obj, le);
}



void
f2lpdf_tex_with_pdf_set_line_join(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_fig_obj_t		*obj,
  int			 lj
)
{
  f2lpdf_pdf_with_tex_set_line_join(job, drw, obj, lj);
}



void
f2lpdf_tex_with_pdf_set_color_1(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_rgb_color_t	*rgb
)
{
  f2lpdf_pdf_with_tex_set_color_1(job, drw, rgb);
}



void
f2lpdf_tex_with_pdf_set_color_2(
  f2l_job_t		*job,
  dk3_fig_drawing_t	*drw,
  dk3_rgb_color_t	*rgb
)
{
  f2lpdf_pdf_with_tex_set_color_2(job, drw, rgb);
}



void
f2lpdf_tex_with_pdf_debug(
  f2l_job_t		*job,
  char const		*msg
)
{
  f2lpdf_pdf_with_tex_debug(job, msg);
}