gpt4 book ai didi

C语言——如何创建PostScript文件

转载 作者:太空宇宙 更新时间:2023-11-04 07:24:09 25 4
gpt4 key购买 nike

如何用 C 语言创建 PS (PostScript) 文件?

例如,我想创建文件 myfile.ps 并draw 到 PostScript 这个代码:

%!
newpath
0 0 moveto
120 120 lineto
144 120 lineto
200 122 lineto
0 0 lineto
stroke
showpage

最佳答案

通常 postscript 只是 ascii 文本,因此标准文本输出工具可以正常工作。

#include <stdio.h>

int main(void) {
FILE *outfile;
outfile = fopen("myfile.ps", "w");
fprintf(outfile,
"%%!\n"
"%d %d moveto\n"
"%d %d lineto\n"
"%d %d lineto\n"
"%d %d lineto\n"
"%d %d lineto\n"
"stroke\n"
"showpage\n",
0, 0,
120, 120,
144, 120,
200, 122,
0, 0
);
return 0;
}

关于C语言——如何创建PostScript文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19576602/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com