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 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
|
/* Copyright (C) 2020-2023 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
using System;
using System.Runtime.InteropServices; /* Marshaling */
using System.ComponentModel; /* Background threading */
using System.Collections.Generic; /* Use of List */
using System.IO; /* Use of path */
using GhostAPI; /* Use of Ghostscript API */
namespace GhostNET
{
public enum GS_Task_t
{
PS_DISTILL,
CREATE_XPS,
SAVE_RESULT,
GET_PAGE_COUNT,
GENERIC,
DISPLAY_DEV_THUMBS,
DISPLAY_DEV_NON_PDF,
DISPLAY_DEV_PDF,
DISPLAY_DEV_RUN_FILE
}
public enum GS_Result_t
{
gsOK,
gsFAILED,
gsCANCELLED
}
public enum gsStatus
{
GS_READY,
GS_BUSY,
GS_ERROR
};
/* Parameters */
public struct gsParamState_t
{
public String outputfile;
public String inputfile;
public GS_Task_t task;
public GS_Result_t result;
public int num_pages;
public List<int> pages;
public int firstpage;
public int lastpage;
public int currpage;
public List<String> args;
public int return_code;
public double zoom;
public bool aa;
public bool is_valid;
};
public class gsEventArgs : EventArgs
{
private bool m_completed;
private int m_progress;
private gsParamState_t m_param;
public bool Completed
{
get { return m_completed; }
}
public gsParamState_t Params
{
get { return m_param; }
}
public int Progress
{
get { return m_progress; }
}
public gsEventArgs(bool completed, int progress, gsParamState_t param)
{
m_completed = completed;
m_progress = progress;
m_param = param;
}
}
class GSNET
{
public class GhostscriptException : Exception
{
public GhostscriptException(string message) : base(message)
{
}
}
/* Ghostscript display device callback delegates. Make sure that
these are using Cdecl calling convention, which means gsdll
is doing the stack cleanup after the call */
/* New device has been opened */
/* This is the first event from this device. */
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_open_del(IntPtr handle, IntPtr device);
/* Device is about to be closed. */
/* Device will not be closed until this function returns. */
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_preclose_del(IntPtr handle, IntPtr device);
/* Device has been closed. */
/* This is the last event from this device. */
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_close_del(IntPtr handle, IntPtr device);
/* Device is about to be resized. */
/* Resize will only occur if this function returns 0. */
/* raster is byte count of a row. */
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_presize_del(IntPtr handle, IntPtr device,
int width, int height, int raster, uint format);
/* Device has been resized. */
/* New pointer to raster returned in pimage */
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_size_del(IntPtr handle, IntPtr device,
int width, int height, int raster, uint format,
IntPtr pimage);
/* flushpage */
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_sync_del(IntPtr handle, IntPtr device);
/* showpage */
/* If you want to pause on showpage, then don't return immediately */
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_page_del(IntPtr handle, IntPtr device, int copies, int flush);
/* Notify the caller whenever a portion of the raster is updated. */
/* This can be used for cooperative multitasking or for
* progressive update of the display.
* This function pointer may be set to NULL if not required.
*/
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_update_del(IntPtr handle, IntPtr device, int x, int y,
int w, int h);
/* Allocate memory for bitmap */
/* This is provided in case you need to create memory in a special
* way, e.g. shared. If this is NULL, the Ghostscript memory device
* allocates the bitmap. This will only called to allocate the
* image buffer. The first row will be placed at the address
* returned by display_memalloc.
*/
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_memalloc_del(IntPtr handle, IntPtr device, ulong size);
/* Free memory for bitmap */
/* If this is NULL, the Ghostscript memory device will free the bitmap */
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int display_memfree_del(IntPtr handle, IntPtr device, IntPtr mem);
private int display_size(IntPtr handle, IntPtr device,
int width, int height, int raster, uint format,
IntPtr pimage)
{
m_pagewidth = width;
m_pageheight = height;
m_pageraster = raster;
m_pageptr = pimage;
return 0;
}
private int display_page(IntPtr handle, IntPtr device, int copies, int flush)
{
m_params.currpage += 1;
PageRenderedCallBack(m_pagewidth, m_pageheight, m_pageraster, m_pageptr, m_params);
return 0;
}
private int display_open(IntPtr handle, IntPtr device)
{
return 0;
}
private int display_preclose(IntPtr handle, IntPtr device)
{
return 0;
}
private int display_close(IntPtr handle, IntPtr device)
{
return 0;
}
private int display_presize(IntPtr handle, IntPtr device,
int width, int height, int raster, uint format)
{
return 0;
}
private int display_update(IntPtr handle, IntPtr device, int x, int y,
int w, int h)
{
return 0;
}
private int display_memalloc(IntPtr handle, IntPtr device, ulong size)
{
return 0;
}
private int display_memfree(IntPtr handle, IntPtr device, IntPtr mem)
{
return 0;
}
private int display_sync(IntPtr handle, IntPtr device)
{
return 0;
}
private int stdin_callback(IntPtr handle, IntPtr pointer, int count)
{
String output = Marshal.PtrToStringAnsi(pointer);
return count;
}
private int stdout_callback(IntPtr handle, IntPtr pointer, int count)
{
String output = null;
try
{
output = Marshal.PtrToStringAnsi(pointer);
}
catch (Exception except)
{
var mess = except.Message;
}
try
{
StdIOCallBack(output, count);
}
catch (Exception excep2)
{
var mess = excep2.Message;
}
/* Callback for progress on XPS creation */
if (m_params.task == GS_Task_t.CREATE_XPS)
{
/* See if we have a page number */
if (count >= 7 && output.Substring(0, 4) == "Page")
{
String page = output.Substring(5, count - 6);
int numVal;
try
{
double perc = 0.0;
numVal = System.Convert.ToInt32(page);
if (m_params.firstpage == -1 && m_params.lastpage == -1 &&
m_params.pages == null)
{
/* Doing full document */
perc = 100.0 * (double)numVal / (double)m_params.num_pages;
}
else
{
if (m_params.pages != null)
{
perc = 100.0 * ((double)numVal - m_params.currpage) / (double)m_params.num_pages;
m_params.currpage = m_params.currpage + 1;
}
else
{
/* continugous set of pages */
perc = 100.0 * ((double)numVal - m_params.firstpage + 1) / (double)m_params.num_pages;
}
}
m_worker.ReportProgress((int)perc, m_params);
}
catch (FormatException)
{
Console.WriteLine("XPSPrint Error: Input string is not a sequence of digits.");
}
catch (OverflowException)
{
Console.WriteLine("XPSPrint Error: The number cannot fit in an Int32.");
}
}
}
return count;
}
private int stderr_callback(IntPtr handle, IntPtr pointer, int count)
{
String output = Marshal.PtrToStringAnsi(pointer);
StdIOCallBack(output, count);
return count;
}
IntPtr gsInstance;
IntPtr dispInstance;
BackgroundWorker m_worker;
gsParamState_t m_params;
IntPtr m_pageptr;
int m_pagewidth;
int m_pageheight;
int m_pageraster;
gsParamState_t m_displaystate;
display_callback_t m_display_callback;
IntPtr ptr_display_struct;
/* Callbacks to application */
internal delegate void DLLProblem(String mess);
internal event DLLProblem DLLProblemCallBack;
internal delegate void StdIO(String mess, int len);
internal event StdIO StdIOCallBack;
internal delegate void Progress(gsEventArgs info);
internal event Progress ProgressCallBack;
internal delegate void PageRendered(int width, int height, int raster,
IntPtr data, gsParamState_t state);
internal event PageRendered PageRenderedCallBack;
/* From my understanding you cannot pin delegates. These need to be declared
* as members to keep a reference to the delegates and avoid their possible GC.
* since the C# GC has no idea that GS has a reference to these items. While the
* methods themselves don't move, apparently the address of the translation code
* is what is passed, and one of these abstractions can be GC or relocated. */
GSAPI.gs_stdio_handler raise_stdin;
GSAPI.gs_stdio_handler raise_stdout;
GSAPI.gs_stdio_handler raise_stderr;
/* Ghostscript display callback struct */
public struct display_callback_t
{
public int sizeof_display_callback;
public int major_vers;
public int minor_vers;
public display_open_del display_open;
public display_preclose_del display_preclose;
public display_close_del display_close;
public display_presize_del display_presize;
public display_size_del display_size;
public display_sync_del display_sync;
public display_page_del display_page;
public display_update_del display_update;
public display_memalloc_del display_memalloc;
public display_memfree_del display_memfree;
};
public GSNET()
{
m_worker = null;
gsInstance = IntPtr.Zero;
dispInstance = IntPtr.Zero;
/* To keep track if we need to update any parameters */
m_displaystate = new gsParamState_t();
m_displaystate.is_valid = false;
/* Avoiding delegate GC during the life of this object */
raise_stdin = stdin_callback;
raise_stdout = stdout_callback;
raise_stderr = stderr_callback;
m_display_callback.major_vers = 1;
m_display_callback.minor_vers = 0;
m_display_callback.display_open = display_open;
m_display_callback.display_preclose = display_preclose;
m_display_callback.display_close = display_close;
m_display_callback.display_presize = display_presize;
m_display_callback.display_size = display_size;
m_display_callback.display_sync = display_sync;
m_display_callback.display_page = display_page;
m_display_callback.display_update = display_update;
//m_display_callback.display_memalloc = display_memalloc;
//m_display_callback.display_memfree = display_memfree;
m_display_callback.display_memalloc = null;
m_display_callback.display_memfree = null;
/* The size the structure when marshalled to unmanaged code */
m_display_callback.sizeof_display_callback = Marshal.SizeOf(typeof(display_callback_t));
ptr_display_struct = Marshal.AllocHGlobal(m_display_callback.sizeof_display_callback);
Marshal.StructureToPtr(m_display_callback, ptr_display_struct, false);
}
/* Callback upon worker all done */
private void gsCompleted(object sender, RunWorkerCompletedEventArgs e)
{
gsParamState_t Value;
gsEventArgs info;
gsParamState_t Params;
try
{
Params = (gsParamState_t)e.Result;
}
catch (System.Reflection.TargetInvocationException)
{
/* Something went VERY wrong with GS */
/* Following is to help debug these issues */
/* var inner = ee.InnerException;
var message = ee.Message;
var inner_message = inner.Message;
String bound = "\n************\n";
gsIOUpdateMain(this, bound, bound.Length);
gsIOUpdateMain(this, message, message.Length);
gsIOUpdateMain(this, bound, bound.Length);
gsIOUpdateMain(this, inner_message, inner_message.Length);
gsIOUpdateMain(this, bound, bound.Length);
var temp = inner.Source;
gsIOUpdateMain(this, bound, bound.Length);
gsIOUpdateMain(this, temp, temp.Length);
var method = inner.TargetSite;
gsIOUpdateMain(this, bound, bound.Length);
var method_name = method.Name;
gsIOUpdateMain(this, method_name, method_name.Length);
var stack = inner.StackTrace;
gsIOUpdateMain(this, bound, bound.Length);
gsIOUpdateMain(this, stack, stack.Length); */
String output = "Ghostscript DLL Invalid Access.";
DLLProblemCallBack(output);
return;
}
switch (Params.task)
{
case GS_Task_t.PS_DISTILL:
m_worker.DoWork -= new DoWorkEventHandler(gsBytesAsync);
break;
case GS_Task_t.DISPLAY_DEV_NON_PDF:
case GS_Task_t.DISPLAY_DEV_PDF:
case GS_Task_t.DISPLAY_DEV_THUMBS:
m_worker.DoWork -= new DoWorkEventHandler(DisplayDeviceAsync);
break;
case GS_Task_t.DISPLAY_DEV_RUN_FILE:
m_worker.DoWork -= new DoWorkEventHandler(DisplayDeviceRun);
break;
default:
m_worker.DoWork -= new DoWorkEventHandler(gsFileAsync);
break;
}
if (e.Cancelled)
{
Value = new gsParamState_t();
Value.result = GS_Result_t.gsCANCELLED;
info = new gsEventArgs(true, 100, Value);
}
else
{
Value = (gsParamState_t)e.Result;
info = new gsEventArgs(true, 100, Value);
}
ProgressCallBack(info);
}
/* Callback as worker progresses */
private void gsProgressChanged(object sender, ProgressChangedEventArgs e)
{
/* Callback with progress */
gsEventArgs info = new gsEventArgs(false, e.ProgressPercentage, (gsParamState_t) e.UserState);
ProgressCallBack(info);
}
private gsParamState_t gsFileSync(gsParamState_t in_params)
{
int num_params = in_params.args.Count;
var argParam = new GCHandle[num_params];
var argPtrs = new IntPtr[num_params];
List<byte[]> CharacterArray = new List<byte[]>(num_params);
GCHandle argPtrsStable = new GCHandle();
int code = 0;
bool cleanup = true;
try
{
code = GSAPI.gsapi_new_instance(out gsInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("gsFileSync: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(gsInstance, stdin_callback, stdout_callback, stderr_callback);
if (code < 0)
{
throw new GhostscriptException("gsFileSync: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(gsInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("gsFileSync: gsapi_set_arg_encoding error");
}
/* Now convert our Strings to char* and get pinned handles to these.
* This keeps the c# GC from moving stuff around on us */
String fullcommand = "";
for (int k = 0; k < num_params; k++)
{
CharacterArray.Add(System.Text.Encoding.UTF8.GetBytes((in_params.args[k]+"\0").ToCharArray()));
argParam[k] = GCHandle.Alloc(CharacterArray[k], GCHandleType.Pinned);
argPtrs[k] = argParam[k].AddrOfPinnedObject();
fullcommand = fullcommand + " " + in_params.args[k];
}
/* Also stick the array of pointers into memory that will not be GCd */
argPtrsStable = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);
fullcommand = "Command Line: " + fullcommand + "\n";
StdIOCallBack(fullcommand, fullcommand.Length);
code = GSAPI.gsapi_init_with_args(gsInstance, num_params, argPtrsStable.AddrOfPinnedObject());
if (code < 0 && code != gsConstants.E_QUIT)
{
throw new GhostscriptException("gsFileSync: gsapi_init_with_args error");
}
}
catch (DllNotFoundException except)
{
DLLProblemCallBack("Exception: " + except.Message);
in_params.result = GS_Result_t.gsFAILED;
cleanup = false;
}
catch (BadImageFormatException except)
{
DLLProblemCallBack("Exception: " + except.Message);
in_params.result = GS_Result_t.gsFAILED;
cleanup = false;
}
catch (GhostscriptException except)
{
DLLProblemCallBack("Exception: " + except.Message);
}
catch (Exception except)
{
DLLProblemCallBack("Exception: " + except.Message);
}
finally
{
/* All the pinned items need to be freed so the GC can do its job */
if (cleanup)
{
for (int k = 0; k < num_params; k++)
{
argParam[k].Free();
}
argPtrsStable.Free();
int code1 = GSAPI.gsapi_exit(gsInstance);
if ((code == 0) || (code == gsConstants.E_QUIT))
code = code1;
GSAPI.gsapi_delete_instance(gsInstance);
in_params.return_code = code;
if ((code == 0) || (code == gsConstants.E_QUIT))
{
in_params.result = GS_Result_t.gsOK;
}
else
{
in_params.result = GS_Result_t.gsFAILED;
}
gsInstance = IntPtr.Zero;
}
}
return in_params;
}
/* Process command line with gsapi_init_with_args */
private void gsFileAsync(object sender, DoWorkEventArgs e)
{
gsParamState_t Params = (gsParamState_t)e.Argument;
int num_params = Params.args.Count;
var argParam = new GCHandle[num_params];
var argPtrs = new IntPtr[num_params];
List<byte[]> CharacterArray = new List<byte[]>(num_params);
GCHandle argPtrsStable = new GCHandle();
int code = 0;
bool cleanup = true;
try
{
code = GSAPI.gsapi_new_instance(out gsInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("gsFileAsync: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(gsInstance, stdin_callback, stdout_callback, stderr_callback);
if (code < 0)
{
throw new GhostscriptException("gsFileAsync: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(gsInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("gsFileAsync: gsapi_set_arg_encoding error");
}
/* Now convert our Strings to char* and get pinned handles to these.
* This keeps the c# GC from moving stuff around on us */
String fullcommand = "";
for (int k = 0; k < num_params; k++)
{
CharacterArray.Add(System.Text.Encoding.UTF8.GetBytes((Params.args[k]+"\0").ToCharArray()));
argParam[k] = GCHandle.Alloc(CharacterArray[k], GCHandleType.Pinned);
argPtrs[k] = argParam[k].AddrOfPinnedObject();
fullcommand = fullcommand + " " + Params.args[k];
}
/* Also stick the array of pointers into memory that will not be GCd */
argPtrsStable = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);
fullcommand = "Command Line: " + fullcommand + "\n";
StdIOCallBack(fullcommand, fullcommand.Length);
code = GSAPI.gsapi_init_with_args(gsInstance, num_params, argPtrsStable.AddrOfPinnedObject());
if (code < 0)
{
throw new GhostscriptException("gsFileAsync: gsapi_init_with_args error");
}
}
catch (DllNotFoundException except)
{
DLLProblemCallBack("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
e.Result = Params;
}
catch (BadImageFormatException except)
{
DLLProblemCallBack("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
e.Result = Params;
}
catch (GhostscriptException except)
{
DLLProblemCallBack("Exception: " + except.Message);
}
catch (Exception except)
{
DLLProblemCallBack("Exception: " + except.Message);
}
finally
{
if (cleanup)
{
/* All the pinned items need to be freed so the GC can do its job */
for (int k = 0; k < num_params; k++)
{
argParam[k].Free();
}
argPtrsStable.Free();
int code1 = GSAPI.gsapi_exit(gsInstance);
if ((code == 0) || (code == gsConstants.E_QUIT))
code = code1;
GSAPI.gsapi_delete_instance(gsInstance);
Params.return_code = code;
if ((code == 0) || (code == gsConstants.E_QUIT))
{
Params.result = GS_Result_t.gsOK;
e.Result = Params;
}
else
{
Params.result = GS_Result_t.gsFAILED;
e.Result = Params;
}
gsInstance = IntPtr.Zero;
}
}
return;
}
/* Processing with gsapi_run_string for callback progress */
private void gsBytesAsync(object sender, DoWorkEventArgs e)
{
gsParamState_t Params = (gsParamState_t)e.Argument;
int num_params = Params.args.Count;
var argParam = new GCHandle[num_params];
var argPtrs = new IntPtr[num_params];
List<byte[]> CharacterArray = new List<byte[]>(num_params);
GCHandle argPtrsStable = new GCHandle();
Byte[] Buffer = new Byte[gsConstants.GS_READ_BUFFER];
BackgroundWorker worker = sender as BackgroundWorker;
int code = 0;
int exitcode = 0;
var Feed = new GCHandle();
var FeedPtr = new IntPtr();
String[] strParams = new String[num_params];
FileStream fs = null;
bool cleanup = true;
try
{
/* Open the file */
fs = new FileStream(Params.inputfile, FileMode.Open);
var len = (int)fs.Length;
code = GSAPI.gsapi_new_instance(out gsInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("gsBytesAsync: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(gsInstance, stdin_callback, stdout_callback, stderr_callback);
if (code < 0)
{
throw new GhostscriptException("gsBytesAsync: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(gsInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("gsBytesAsync: gsapi_set_arg_encoding error");
}
/* Now convert our Strings to char* and get pinned handles to these.
* This keeps the c# GC from moving stuff around on us */
String fullcommand = "";
for (int k = 0; k < num_params; k++)
{
CharacterArray.Add(System.Text.Encoding.UTF8.GetBytes((Params.args[k]+"\0").ToCharArray()));
argParam[k] = GCHandle.Alloc(CharacterArray[k], GCHandleType.Pinned);
argPtrs[k] = argParam[k].AddrOfPinnedObject();
fullcommand = fullcommand + " " + Params.args[k];
}
/* Also stick the array of pointers into memory that will not be GCd */
argPtrsStable = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);
fullcommand = "Command Line: " + fullcommand + "\n";
StdIOCallBack(fullcommand, fullcommand.Length);
code = GSAPI.gsapi_init_with_args(gsInstance, num_params, argPtrsStable.AddrOfPinnedObject());
if (code < 0)
{
throw new GhostscriptException("gsBytesAsync: gsapi_init_with_args error");
}
/* Pin data buffer */
Feed = GCHandle.Alloc(Buffer, GCHandleType.Pinned);
FeedPtr = Feed.AddrOfPinnedObject();
/* Now start feeding the input piece meal and do a call back
* with our progress */
if (code == 0)
{
int count;
double perc;
int total = 0;
int ret_code;
ret_code = GSAPI.gsapi_run_string_begin(gsInstance, 0, ref exitcode);
if (exitcode < 0)
{
code = exitcode;
throw new GhostscriptException("gsBytesAsync: gsapi_run_string_begin error");
}
while ((count = fs.Read(Buffer, 0, gsConstants.GS_READ_BUFFER)) > 0)
{
ret_code = GSAPI.gsapi_run_string_continue(gsInstance, FeedPtr, count, 0, ref exitcode);
if (exitcode < 0)
{
code = exitcode;
throw new GhostscriptException("gsBytesAsync: gsapi_run_string_continue error");
}
total = total + count;
perc = 100.0 * (double)total / (double)len;
worker.ReportProgress((int)perc, Params);
if (worker.CancellationPending == true)
{
e.Cancel = true;
break;
}
}
ret_code = GSAPI.gsapi_run_string_end(gsInstance, 0, ref exitcode);
if (exitcode < 0)
{
code = exitcode;
throw new GhostscriptException("gsBytesAsync: gsapi_run_string_end error");
}
}
}
catch (DllNotFoundException except)
{
DLLProblemCallBack("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
e.Result = Params;
}
catch (BadImageFormatException except)
{
DLLProblemCallBack("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
e.Result = Params;
}
catch (GhostscriptException except)
{
DLLProblemCallBack("Exception: " + except.Message);
}
catch (Exception except)
{
/* Could be a file io issue */
DLLProblemCallBack("Exception: " + except.Message);
Params.result = GS_Result_t.gsFAILED;
cleanup = false;
e.Result = Params;
}
finally
{
if (cleanup)
{
fs.Close();
/* Free pinned items */
for (int k = 0; k < num_params; k++)
{
argParam[k].Free();
}
argPtrsStable.Free();
Feed.Free();
/* gs clean up */
int code1 = GSAPI.gsapi_exit(gsInstance);
if ((code == 0) || (code == gsConstants.E_QUIT))
code = code1;
GSAPI.gsapi_delete_instance(gsInstance);
Params.return_code = code;
if ((code == 0) || (code == gsConstants.E_QUIT))
{
Params.result = GS_Result_t.gsOK;
e.Result = Params;
}
else
{
Params.result = GS_Result_t.gsFAILED;
e.Result = Params;
}
gsInstance = IntPtr.Zero;
}
}
return;
}
private void SetPageRange(int first, int last, bool delay)
{
int code;
byte[] param_first = System.Text.Encoding.UTF8.GetBytes("FirstPage" + "\0");
byte[] param_last = System.Text.Encoding.UTF8.GetBytes("LastPage" + "\0");
GCHandle pinParamFirst = GCHandle.Alloc(param_first, GCHandleType.Pinned);
GCHandle pinParamLast = GCHandle.Alloc(param_last, GCHandleType.Pinned);
GCHandle firstValue = GCHandle.Alloc(first, GCHandleType.Pinned);
GCHandle lastValue = GCHandle.Alloc(last, GCHandleType.Pinned);
code = GSAPI.gsapi_set_param(dispInstance, pinParamFirst.AddrOfPinnedObject(),
firstValue.AddrOfPinnedObject(), gs_set_param_type.gs_spt_int | gs_set_param_type.gs_spt_more_to_come);
if (code < 0)
{
pinParamFirst.Free();
pinParamLast.Free();
firstValue.Free();
lastValue.Free();
throw new GhostscriptException("SetPageRange: gsapi_set_param error");
}
if (delay)
code = GSAPI.gsapi_set_param(dispInstance, pinParamLast.AddrOfPinnedObject(),
lastValue.AddrOfPinnedObject(), gs_set_param_type.gs_spt_int | gs_set_param_type.gs_spt_more_to_come);
else
code = GSAPI.gsapi_set_param(dispInstance, pinParamLast.AddrOfPinnedObject(),
lastValue.AddrOfPinnedObject(), gs_set_param_type.gs_spt_int);
pinParamFirst.Free();
pinParamLast.Free();
firstValue.Free();
lastValue.Free();
if (code < 0)
{
throw new GhostscriptException("SetPageRange: gsapi_set_param error");
}
}
private void SetAA(bool aa, bool delay)
{
int code;
int value;
byte[] param_text = System.Text.Encoding.UTF8.GetBytes("TextAlphaBits" + "\0");
byte[] param_graph = System.Text.Encoding.UTF8.GetBytes("GraphicsAlphaBits" + "\0");
if (aa)
value = 4;
else
value = 1;
GCHandle pinParamText = GCHandle.Alloc(param_text, GCHandleType.Pinned);
GCHandle pinParamGraph = GCHandle.Alloc(param_graph, GCHandleType.Pinned);
GCHandle valueParam = GCHandle.Alloc(value, GCHandleType.Pinned);
code = GSAPI.gsapi_set_param(dispInstance, pinParamText.AddrOfPinnedObject(),
valueParam.AddrOfPinnedObject(), gs_set_param_type.gs_spt_int | gs_set_param_type.gs_spt_more_to_come);
if (code < 0)
{
pinParamText.Free();
pinParamGraph.Free();
valueParam.Free();
throw new GhostscriptException("SetAA: gsapi_set_param error");
}
if (delay)
code = GSAPI.gsapi_set_param(dispInstance, pinParamGraph.AddrOfPinnedObject(),
valueParam.AddrOfPinnedObject(), gs_set_param_type.gs_spt_int | gs_set_param_type.gs_spt_more_to_come);
else
code = GSAPI.gsapi_set_param(dispInstance, pinParamGraph.AddrOfPinnedObject(),
valueParam.AddrOfPinnedObject(), gs_set_param_type.gs_spt_int);
pinParamText.Free();
pinParamGraph.Free();
valueParam.Free();
if (code < 0)
{
throw new GhostscriptException("SetAA: gsapi_set_param error");
}
}
private void SetResolution(double zoom, bool delay)
{
int resolution = (int)(72.0 * zoom + 0.5);
int code;
byte[] param = System.Text.Encoding.UTF8.GetBytes("HWResolution" + "\0");
byte[] value = System.Text.Encoding.UTF8.GetBytes("[" + resolution + " " + resolution + "]\0");
GCHandle pinParam = GCHandle.Alloc(param, GCHandleType.Pinned);
GCHandle valueParam = GCHandle.Alloc(value, GCHandleType.Pinned);
if (delay)
code = GSAPI.gsapi_set_param(dispInstance, pinParam.AddrOfPinnedObject(),
valueParam.AddrOfPinnedObject(), gs_set_param_type.gs_spt_parsed | gs_set_param_type.gs_spt_more_to_come);
else
code = GSAPI.gsapi_set_param(dispInstance, pinParam.AddrOfPinnedObject(),
valueParam.AddrOfPinnedObject(), gs_set_param_type.gs_spt_parsed);
pinParam.Free();
valueParam.Free();
if (code < 0)
{
throw new GhostscriptException("SetResolution: gsapi_set_param error");
}
}
/* Worker task for running a file with a page range, aa and zoom level */
private void DisplayDeviceRun(object sender, DoWorkEventArgs e)
{
int code = 0;
gsParamState_t gsparams = (gsParamState_t)e.Argument;
int exitcode = 0;
gsparams.result = GS_Result_t.gsOK;
String fileName = gsparams.inputfile;
int firstpage = gsparams.firstpage;
int lastpage = gsparams.lastpage;
gsparams.result = GS_Result_t.gsOK;
if (dispInstance == IntPtr.Zero)
{
gsparams.result = GS_Result_t.gsFAILED;
e.Result = gsparams;
DLLProblemCallBack("Failure: Display device not initialized");
return;
}
try
{
/* Set parameters if needed */
if (!m_displaystate.is_valid)
{
/* First time after thumbnails */
if (gsparams.aa)
{
SetAA(gsparams.aa, true);
}
if (!(gsparams.firstpage == -1 && gsparams.lastpage == -1))
{
SetResolution(gsparams.zoom, true);
SetPageRange(gsparams.firstpage, gsparams.lastpage, false);
}
else
{
SetResolution(gsparams.zoom, false);
}
m_displaystate.is_valid = true;
}
else
{
/* Rendering page range */
if (!(gsparams.firstpage == -1 && gsparams.lastpage == -1))
{
if (gsparams.aa != m_displaystate.aa)
SetAA(gsparams.aa, true);
if (gsparams.zoom != m_displaystate.zoom)
SetResolution(gsparams.zoom, true);
SetPageRange(gsparams.firstpage, gsparams.lastpage, false);
}
else
{
/* Rendering all pages */
if (gsparams.aa != m_displaystate.aa)
{
if (gsparams.zoom != m_displaystate.zoom)
{
/* Zoom and AA change */
SetAA(gsparams.aa, true);
SetResolution(gsparams.zoom, false);
}
else
{
/* AA change only */
SetAA(gsparams.aa, false);
}
}
else
{
if (gsparams.zoom != m_displaystate.zoom)
{
/* Zoom change only */
SetResolution(gsparams.zoom, false);
}
}
}
}
m_displaystate.aa = gsparams.aa;
m_displaystate.zoom = gsparams.zoom;
byte[] fname = System.Text.Encoding.UTF8.GetBytes(fileName + "\0");
GCHandle pinfname = GCHandle.Alloc(fname, GCHandleType.Pinned);
code = GSAPI.gsapi_run_file(dispInstance, pinfname.AddrOfPinnedObject(), 0, ref exitcode);
pinfname.Free();
if (exitcode < 0)
{
throw new GhostscriptException("DisplayDeviceRun: gsapi_run_file error");
}
}
catch (GhostscriptException except)
{
gsparams.result = GS_Result_t.gsFAILED;
DLLProblemCallBack("Exception: " + except.Message);
}
finally
{
e.Result = gsparams;
}
}
/* Worker task for using display device */
private void DisplayDeviceAsync(object sender, DoWorkEventArgs e)
{
int code = 0;
gsParamState_t gsparams = (gsParamState_t)e.Argument;
GCHandle argPtrsStable = new GCHandle();
int num_params = gsparams.args.Count;
var argParam = new GCHandle[num_params];
var argPtrs = new IntPtr[num_params];
List<byte[]> CharacterArray = new List<byte[]>(num_params);
bool cleanup = true;
gsparams.result = GS_Result_t.gsOK;
if (dispInstance == IntPtr.Zero)
{
gsparams.result = GS_Result_t.gsFAILED;
e.Result = gsparams;
DLLProblemCallBack("Failure: Display device not initialized");
return;
}
try
{
String fullcommand = "";
for (int k = 0; k < num_params; k++)
{
CharacterArray.Add(System.Text.Encoding.UTF8.GetBytes((gsparams.args[k] + "\0").ToCharArray()));
argParam[k] = GCHandle.Alloc(CharacterArray[k], GCHandleType.Pinned);
argPtrs[k] = argParam[k].AddrOfPinnedObject();
fullcommand = fullcommand + " " + gsparams.args[k];
}
argPtrsStable = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);
fullcommand = "Command Line: " + fullcommand + "\n";
StdIOCallBack(fullcommand, fullcommand.Length);
code = GSAPI.gsapi_init_with_args(dispInstance, num_params, argPtrsStable.AddrOfPinnedObject());
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceAsync: gsapi_init_with_args error");
}
}
catch (DllNotFoundException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
cleanup = false;
e.Result = gsparams;
}
catch (BadImageFormatException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
cleanup = false;
e.Result = gsparams;
}
catch (GhostscriptException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
}
catch (Exception except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
}
finally
{
if (cleanup)
{
for (int k = 0; k < num_params; k++)
{
argParam[k].Free();
}
argPtrsStable.Free();
e.Result = gsparams;
}
}
return;
}
/* Call the appropriate worker thread based upon the task
* that we have to do */
private gsStatus RunGhostscriptAsync(gsParamState_t Params)
{
try
{
if (m_worker != null && m_worker.IsBusy)
{
m_worker.CancelAsync();
return gsStatus.GS_BUSY;
}
if (m_worker == null)
{
m_worker = new BackgroundWorker();
m_worker.WorkerReportsProgress = true;
m_worker.WorkerSupportsCancellation = true;
m_worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(gsCompleted);
m_worker.ProgressChanged += new ProgressChangedEventHandler(gsProgressChanged);
}
switch (Params.task)
{
case GS_Task_t.PS_DISTILL:
m_worker.DoWork += new DoWorkEventHandler(gsBytesAsync);
break;
case GS_Task_t.DISPLAY_DEV_NON_PDF:
case GS_Task_t.DISPLAY_DEV_PDF:
case GS_Task_t.DISPLAY_DEV_THUMBS:
m_worker.DoWork += new DoWorkEventHandler(DisplayDeviceAsync);
break;
case GS_Task_t.DISPLAY_DEV_RUN_FILE:
m_worker.DoWork += new DoWorkEventHandler(DisplayDeviceRun);
break;
case GS_Task_t.SAVE_RESULT:
case GS_Task_t.CREATE_XPS:
default:
m_worker.DoWork += new DoWorkEventHandler(gsFileAsync);
break;
}
m_params = Params;
m_worker.RunWorkerAsync(Params);
return gsStatus.GS_READY;
}
catch (OutOfMemoryException)
{
Console.WriteLine("Memory allocation failed during gs rendering\n");
return gsStatus.GS_ERROR;
}
}
#region public_methods
/* Direct call on gsapi to get the version of the DLL we are using */
public String GetVersion()
{
gsapi_revision_t vers;
vers.copyright = IntPtr.Zero;
vers.product = IntPtr.Zero;
vers.revision = 0;
vers.revisiondate = 0;
int size = System.Runtime.InteropServices.Marshal.SizeOf(vers);
try
{
if (GSAPI.gsapi_revision(ref vers, size) == 0)
{
String product = Marshal.PtrToStringAnsi(vers.product);
String output;
int major = vers.revision / 100;
int minor = vers.revision - major * 100;
String versnum = major + "." + minor;
output = product + " " + versnum;
return output;
}
else
return null;
}
catch (Exception except)
{
DLLProblemCallBack("Exception: " + except.Message);
}
return null;
}
/* Use syncronous call to ghostscript to get the
* number of pages in a PDF file */
public int GetPageCount(String fileName)
{
gsParamState_t gsparams = new gsParamState_t();
gsParamState_t result;
gsparams.args = new List<string>();
gsparams.args.Add("gs");
gsparams.args.Add("-dNODISPLAY");
//gsparams.args.Add("-q");
gsparams.args.Add("-sFile=\"" + fileName + "\"");
gsparams.args.Add("--permit-file-read=\"" + fileName + "\"");
gsparams.args.Add("-c");
gsparams.args.Add("\"File (r) file runpdfbegin pdfpagecount = quit\"");
gsparams.task = GS_Task_t.GET_PAGE_COUNT;
m_params = gsparams;
result = gsFileSync(gsparams);
if (result.result == GS_Result_t.gsOK)
return m_params.num_pages;
else
return -1;
}
/* Launch a thread to create XPS document for windows printing */
public gsStatus CreateXPS(String fileName, int resolution, int num_pages,
double width, double height, bool fit_page, int firstpage,
int lastpage)
{
gsParamState_t gsparams = new gsParamState_t();
gsparams.args = new List<string>();
gsparams.inputfile = fileName;
gsparams.args.Add("gs");
gsparams.args.Add("-r" + resolution.ToString());
gsparams.args.Add("-sDEVICE=xpswrite");
gsparams.args.Add("-dNOPAUSE");
gsparams.args.Add("-dBATCH");
gsparams.args.Add("-dFirstPage=" + firstpage.ToString());
gsparams.args.Add("-dLastPage=" + lastpage.ToString());
gsparams.args.Add("-dDEVICEWIDTHPOINTS=" + Convert.ToInt32(width));
gsparams.args.Add("-dDEVICEHEIGHTPOINTS=" + Convert.ToInt32(height));
gsparams.args.Add("-dFIXEDMEDIA");
if (fit_page)
gsparams.args.Add("-dFitPage");
gsparams.outputfile = Path.GetTempFileName();
gsparams.args.Add("-o");
gsparams.args.Add(gsparams.outputfile);
gsparams.args.Add("-f");
gsparams.args.Add(fileName);
gsparams.task = GS_Task_t.CREATE_XPS;
gsparams.num_pages = num_pages;
return RunGhostscriptAsync(gsparams);
}
/* Launch a thread rendering all the pages with the display device
* to distill an input PS file and save as a PDF. */
public gsStatus DistillPS(String fileName, int resolution)
{
gsParamState_t gsparams = new gsParamState_t();
gsparams.args = new List<string>();
gsparams.inputfile = fileName;
gsparams.args.Add("gs");
gsparams.args.Add("-sDEVICE=pdfwrite");
gsparams.outputfile = Path.GetTempFileName();
gsparams.args.Add("-o" + gsparams.outputfile);
gsparams.task = GS_Task_t.PS_DISTILL;
return RunGhostscriptAsync(gsparams);
}
/* Run a file with the display device
* public gsStatus gsDsiplayDeviceRunFile() */
public gsStatus DisplayDeviceRunFile(String fileName, double zoom, bool aa, int firstpage, int lastpage)
{
gsParamState_t gsparams = new gsParamState_t();
gsparams.inputfile = fileName;
gsparams.aa = aa;
gsparams.zoom = zoom;
gsparams.firstpage = firstpage;
gsparams.lastpage = lastpage;
if (firstpage > 0)
gsparams.currpage = firstpage - 1;
else
gsparams.currpage = 0;
gsparams.task = GS_Task_t.DISPLAY_DEV_RUN_FILE;
return RunGhostscriptAsync(gsparams);
}
/* Launch a thread rendering all the pages with the display device
* to collect thumbnail images via init_with_args. */
public gsStatus DisplayDeviceRenderThumbs(String fileName, double zoom, bool aa)
{
gsParamState_t gsparams = new gsParamState_t();
int format = (gsConstants.DISPLAY_COLORS_RGB |
gsConstants.DISPLAY_DEPTH_8 |
gsConstants.DISPLAY_LITTLEENDIAN);
int resolution = (int)(72.0 * zoom + 0.5);
GS_Task_t task = GS_Task_t.DISPLAY_DEV_THUMBS;
gsparams.args = new List<string>();
gsparams.args.Add("gs");
gsparams.args.Add("-dFirstPage=1"); /* To ensure gdevflp is setup */
gsparams.args.Add("-r" + resolution);
if (aa)
{
gsparams.args.Add("-dTextAlphaBits=4");
gsparams.args.Add("-dGraphicsAlphaBits=4");
}
gsparams.args.Add("-sDEVICE=display");
gsparams.args.Add("-dDisplayFormat=" + format);
gsparams.args.Add("-f");
gsparams.args.Add(fileName);
gsparams.task = task;
gsparams.currpage = 0;
return RunGhostscriptAsync(gsparams);
}
/* Launch a thread rendering a set of pages with the display device. For use with languages
* that can be indexed via pages which include PDF and XPS */
public gsStatus DisplayDeviceRenderPages(String fileName, int first_page, int last_page, double zoom)
{
gsParamState_t gsparams = new gsParamState_t();
int format = (gsConstants.DISPLAY_COLORS_RGB |
gsConstants.DISPLAY_DEPTH_8 |
gsConstants.DISPLAY_LITTLEENDIAN);
int resolution = (int)(72.0 * zoom + 0.5);
gsparams.args = new List<string>();
gsparams.args.Add("gs");
gsparams.args.Add("-r" + resolution);
gsparams.args.Add("-sDEVICE=display");
gsparams.args.Add("-dDisplayFormat=" + format);
gsparams.args.Add("-dFirstPage=" + first_page);
gsparams.args.Add("-dLastPage=" + last_page);
gsparams.args.Add("-f");
gsparams.args.Add(fileName);
gsparams.task = GS_Task_t.DISPLAY_DEV_PDF;
gsparams.currpage = first_page - 1;
return RunGhostscriptAsync(gsparams);
}
/* Set up the display device ahead of time */
public gsParamState_t DisplayDeviceOpen()
{
int code;
gsParamState_t gsparams = new gsParamState_t();
gsparams.result = GS_Result_t.gsOK;
if (dispInstance != IntPtr.Zero)
return gsparams;
try
{
code = GSAPI.gsapi_new_instance(out dispInstance, IntPtr.Zero);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceOpen: gsapi_new_instance error");
}
code = GSAPI.gsapi_set_stdio(dispInstance, raise_stdin, raise_stdout, raise_stderr);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceOpen: gsapi_set_stdio error");
}
code = GSAPI.gsapi_set_arg_encoding(dispInstance, (int)gsEncoding.GS_ARG_ENCODING_UTF8);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceOpen: gsapi_set_arg_encoding error");
}
code = GSAPI.gsapi_set_display_callback(dispInstance, ptr_display_struct);
if (code < 0)
{
throw new GhostscriptException("DisplayDeviceOpen: gsapi_set_display_callback error");
}
}
catch (DllNotFoundException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
}
catch (BadImageFormatException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
}
catch (GhostscriptException except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
if (dispInstance != IntPtr.Zero)
GSAPI.gsapi_delete_instance(dispInstance);
dispInstance = IntPtr.Zero;
}
catch (Exception except)
{
DLLProblemCallBack("Exception: " + except.Message);
gsparams.result = GS_Result_t.gsFAILED;
if (dispInstance != IntPtr.Zero)
GSAPI.gsapi_delete_instance(dispInstance);
dispInstance = IntPtr.Zero;
}
return gsparams;
}
/* Close the display device and delete the instance */
public gsParamState_t DisplayDeviceClose()
{
int code = 0;
gsParamState_t out_params = new gsParamState_t();
out_params.result = GS_Result_t.gsOK;
try
{
code = GSAPI.gsapi_exit(dispInstance);
if (code < 0)
{
out_params.result = GS_Result_t.gsFAILED;
throw new GhostscriptException("DisplayDeviceClose: gsapi_exit error");
}
GSAPI.gsapi_delete_instance(dispInstance);
}
catch (Exception except)
{
DLLProblemCallBack("Exception: " + except.Message);
out_params.result = GS_Result_t.gsFAILED;
}
dispInstance = IntPtr.Zero;
m_displaystate.is_valid = false;
return out_params;
}
/* Check if gs is currently busy */
public gsStatus GetStatus()
{
if (m_worker != null && m_worker.IsBusy)
return gsStatus.GS_BUSY;
else
return gsStatus.GS_READY;
}
/* Cancel worker */
public void Cancel()
{
m_worker.CancelAsync();
}
#endregion
}
}
|