gpt4 book ai didi

java - 将 BufferedImage 转换/写入 postscript

转载 作者:行者123 更新时间:2023-12-04 06:35:33 26 4
gpt4 key购买 nike

我知道如何使用 绘制一些简单的形状后记

我现在正在研究如何绘制内容 BufferedImage (width*height) 到没有任何外部库 (FOP,PDFBox...) 的 postscript 页面 (x,y,width,height)。

你有任何提示/代码/算法吗?

谢谢 ! :-)

最佳答案

必须使用 imagecolorimage运营商。
不像简单的线描和show文本运算符,这些是复杂的运算符
需要几个参数。

我正在放置一个示例 postscript 片段,它使用
7 参数 colorimage运算符(operator)。请注意,第 5 个参数实际上是一个回调过程,可能会被 colorimage 操作符调用多次,每次都以字符串形式返回一些图像数据。在这个例子中,我一次返回整个图像数据。
在此示例中,此数据采用 ASCII 编码,每个字节表示为 2 位十六进制数。更高效的编码是可能的,因为 Postscript 可以在运行时解码 base64、base85 和 RLE 编码。

此参数可能是单个字符串而不是回调过程,但在这种情况下,
二进制数据必须以八进制转义,在十进制 255 前加一个斜杠(如\377)。使用通过 currentfile 读取的内联数据。运算符(operator)很平常
用于表示 Postscript 图像。

请注意,图像通常映射到渲染空间上的 (0,0,1,1) 方格,并且
在渲染图像之前,必须设置全局变换矩阵(使用 translatescalerotate 运算符)。

完整版imagecolorimage可以在 Adob​​e 的 Postscript Language Refrence 上找到引用,网址为 http://www.adobe.com/products/postscript/pdfs/PLRM.pdf

再举一个例子,尝试运行 GIMP程序并将图像从其中保存为 Postscript。

%!PS-Adobe-3.0

% builds string to hold all image data at once:
/imgdata 8 8 3 mul mul string def

% set context to scale image to 256 X 256 pt (from 1 x1 pt)

256 256 scale

% Dimensions of image (width * height * bpp)

8 8 8

% Image transformation Matrix - [width 0 0 -height 0 height]: flips
% vertical axis so we have top to bottom data:
[8 0 0 -8 0 8]

% Procedure to read the image data and return it as a string:
{ currentfile % read inline data
imgdata % put read data into this variable
readhexstring % performs the reading
pop % discards read operation status
}

%indicates single data source:
false

%number of colors per pixel:
3
% Image operator: consumes previous parameters and renders the image
% followed by Image hexadecimal data in ASCII
colorimage
0000000000200000400000600000800000a00000c00000e0200000200020
2000402000602000802000a02000c02000e0400000400020400040400060
4000804000a04000c04000e06000006000206000406000606000806000a0
6000c06000e08000008000208000408000608000808000a08000c08000e0
a00000a00020a00040a00060a00080a000a0a000c0a000e0c00000c00020
c00040c00060c00080c000a0c000c0c000e0e00000e00020e00040e00060
e00080e000a0e000c0e000e0

showpage

关于java - 将 BufferedImage 转换/写入 postscript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4924819/

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