Ghostscript-API-Wrapper icon indicating copy to clipboard operation
Ghostscript-API-Wrapper copied to clipboard

An extended Ghostscript API for Delphi and Free Pascal to simplify use of Ghostscript.

Results 6 Ghostscript-API-Wrapper issues
Sort by recently updated
recently updated
newest added

**Situation**: opened Lazarus demo **Expected**: Demo compiles **Experienced**: event handler assignment causes issue (in ObjFPC, it would have to be := @methodname, not just := methodname). **Solution**: add {$MODE Delphi}...

**Situation**: trying to compile demo. **Expected**: demo compiling. **Experienced**: missing units. **Solution**: add `..\..\lib` to unit paths in project settings.

**Situation**: compiling and running demo. **Experienced**: executable will be written to demo folder, which is missing the DLLs. **Expected**: have target filename as ..\..\bin\GS_API_ExampleLazarus , so that it will be...

Having to set the path to the units on each project is tedious. Have a Lazarus package that wraps up units instead, so I just have to add that as...

**Situation**: compiled demo, started it in same folder as provided DLLs. **Expected**: the program to run. **Experienced**: executation immediately stops with ``` [Window Title] Execution stopped [Content] Execution stopped with...

Currently, the code has static imports for the DLL functions. This causes the program to not even run if the DLL is missing. It's better to load DLLs dynamically, so...