windows平台编译好的ghostscript库
时间: 2023-07-22 15:56:16 浏览: 188
Ghostscript是一个开源的PostScript和PDF解释器,可以用于处理和转换PDF文件。Ghostscript库可以从官方网站(https://www.ghostscript.com/download/gsdnld.html)中获取预编译的二进制文件。以下是Windows平台上编译好的Ghostscript库下载链接:
- 32位版本:https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9533/gs9533w32.exe
- 64位版本:https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9533/gs9533w64.exe
下载后,运行安装程序并按照提示进行安装。安装程序会将Ghostscript库文件和可执行文件拷贝到系统目录中。在使用Ghostscript库时,可以直接调用相关的可执行文件,也可以将库文件拷贝到项目目录中,并在项目中链接相应的库文件。
需要注意的是,Ghostscript库的使用需要遵守相关许可协议。
相关问题
windows下使用vs2017编译ghostscript库
以下是在 Windows 平台下使用 Visual Studio 2017 编译 Ghostscript 库的步骤:
1. 下载 Ghostscript 源代码
你可以在 Ghostscript 官网的下载页面 [https://www.ghostscript.com/download/gsdnld.html](https://www.ghostscript.com/download/gsdnld.html) 上下载 Ghostscript 的源代码。下载完成后,解压到本地。
2. 安装依赖库
Ghostscript 依赖以下库:
- zlib
- libpng
- jpeglib
- tiff
你可以在各自的官网上下载这些库的源代码,或者使用预编译的二进制文件。
3. 配置编译环境
- 安装 Visual Studio 2017,并安装 C++ 开发环境。
- 安装 CMake。你可以从 [https://cmake.org/download/](https://cmake.org/download/) 下载最新版本的 CMake。
4. 生成 Visual Studio 工程
- 打开 CMake GUI。
- 在 "Where is the source code" 中填写 Ghostscript 源代码的路径。
- 在 "Where to build the binaries" 中填写生成的工程文件路径,例如 Ghostscript/build。
- 点击 Configure,选择 Visual Studio 版本并选择生成 64 位库。
- CMake 会提示你输入各种选项,你可以根据自己的需求进行选择。如果不确定,可以选用默认值。
- 点击 Generate,CMake 会生成 Visual Studio 工程文件。
5. 编译 Ghostscript 库
- 打开 Visual Studio,打开生成的 Ghostscript 工程文件。
- 在解决方案栏中,右键点击 ALL_BUILD 项目,选择生成。
- 编译完成后,在解决方案栏中找到 gs 工程,右键点击 INSTALL 项目,选择生成。
- 编译完成后,你可以在 Ghostscript 安装目录下找到生成的库文件。
以上就是在 Windows 平台下使用 Visual Studio 2017 编译 Ghostscript 库的步骤。希望对你有所帮助。
c++使用ghostscript库将pdf文件发送到打印机进行打印
要在C++应用程序中使用Ghostscript库将PDF文件发送到打印机进行打印,您可以使用以下步骤:
1. 下载并安装Ghostscript库。您可以从Ghostscript官方网站下载预编译的库文件,也可以从源代码构建该库。
2. 在C++应用程序中引用Ghostscript库。您可以使用C++的动态链接库(DLL)来引用Ghostscript库,或者将Ghostscript库静态链接到您的应用程序中。
3. 打开要打印的PDF文件。您可以使用C++的文件IO API打开PDF文件,并将其读入内存中。
4. 创建打印作业。您可以使用Ghostscript库中的gdevprn API来创建打印作业,并将其发送到打印机进行打印。
5. 指定打印机和打印设置。您可以使用gdevprn API中的函数来指定要使用的打印机和打印设置,例如纸张大小、打印质量等。
以下是一个使用Ghostscript库将PDF文件发送到打印机进行打印的示例代码:
```
#include <windows.h>
#include <stdio.h>
#include <gdiplus.h>
#include "gdevprn.h"
using namespace Gdiplus;
int PrintPDFFile(const char* filePath, const char* printerName)
{
// 初始化GDI+库
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
// 创建Ghostscript打印设备
HDC deviceContext = CreateDC("WINSPOOL", printerName, NULL, NULL);
gdev_prn_device device;
gdev_prn_open(&device, deviceContext);
// 设置打印参数
int argc = 9;
char* argv[9];
argv[0] = "gs";
argv[1] = "-q";
argv[2] = "-dNOPAUSE";
argv[3] = "-dBATCH";
argv[4] = "-dSAFER";
argv[5] = "-sDEVICE=mswinpr2";
argv[6] = "-sOutputFile=%printer%";
argv[7] = printerName;
argv[8] = filePath;
// 打印PDF文件
int result = gsapi_init_with_args(&device.pinstance, argc, argv);
if (result == 0) {
result = gsapi_exit(device.pinstance);
}
// 关闭Ghostscript打印设备
gdev_prn_close(&device);
DeleteDC(deviceContext);
// 关闭GDI+库
GdiplusShutdown(gdiplusToken);
return result;
}
int main()
{
PrintPDFFile("test.pdf", "MyPrinter");
return 0;
}
```
需要注意的是,使用Ghostscript库打印PDF文件可能需要一定的配置和调试,以确保打印输出的质量和正确性。
阅读全文