0

我已经阅读了一个示例并尝试复制它的方法,但结果很奇怪。这是一个一次性交易,所以我不想买一个包来做这个。此外,它将在不再有很多程序员编写的 Basic 中的多值数据库上执行。如果有人可以发布一个小例子,那将是最有帮助的。具体来说,我需要一个以 8x11 纸为中心的盒子,左边的 1/3 用绿色填充,中间的 1/3 用黄色填充,最后 1/3 用红色填充。然后在框的每种颜色内画一条通过 3 个点的线。

谢谢。

4

2 回答 2

1

最简单的方法是画3个盒子。你必须自己定位每个人,做自己的数学,以确定从哪里开始第一个以使其居中等。

首先将光标放在第一个框的左上角,绘制它,移动到下一个框的左上角,绘制它,最后一个框也一样。这是一些代码:

<esc>&u300D<esc>*t300R<esc>*p300x300Y<esc>*r3U<esc>*v2S<esc>*c300a300b5P<esc>*p600x300Y<esc>*r3U<esc>*v3S<esc>*c300a300b5P<esc>*p900x300Y<esc>*r3U<esc>*v1S<esc>*c300a300b5P

这是解释:

<esc>&u300D<esc>*t300R -- set the Unit of Measure and Resolution (in this case 300 dpi)
<esc>*p300x300Y -- move cursor to 300x 300y (1 inch x 1 inch) 
<esc>*r3U<esc>*v2S -- set the color palette to RGB and use color 2 (green)
<esc>*c300a300b5P -- draw a box that is 300 wide and 300 tall, use current fill pattern
<esc>*p600x300Y -- move cursor to 600x 300y
<esc>*r3U<esc>*v3S -- set the color palette to RGB use color 3 (yellow)
<esc>*c300a300b5P -- draw a box that is 300 wide and 300 tall, use current fill pattern
<esc>*p900x300Y -- move cursor to 900x 300y
<esc>*r3U<esc>*v1S -- set the color palette to RGB use color 1 (red)
<esc>*c300a300b5P -- draw a box that is 300 wide and 300 tall, use current fill pattern

这是其他颜色和调色板,请记住这是简单的方法,您可以指定自己的 RGB 等。

RGB Palette
<esc>*r3U<esc>*v1S - Red                
<esc>*r3U<esc>*v2S - Green
<esc>*r3U<esc>*v3S - Yellow
<esc>*r3U<esc>*v4S - Blue
<esc>*r3U<esc>*v5S - Magenta
<esc>*r3U<esc>*v6S - Cyan

CMYK Palette
<esc>*r-3U<esc>*v1S - Cyan
<esc>*r-3U<esc>*v2S - Magenta
<esc>*r-3U<esc>*v3S - Blue
<esc>*r-3U<esc>*v4S - Yellow
<esc>*r-3U<esc>*v5S - Green
<esc>*r-3U<esc>*v6S - Red
<esc>*r-3U<esc>*v7S - Black
于 2008-12-02T16:39:10.207 回答
0

解决的问题:我的想法的错误是它是 300 dpi 和 600 dpi 之间的差异,所以我除以 2 并且答案似乎几乎正确。真正的问题是 3oo dpi 和 720 Decipoints 之间的差异。实际系数需要为 2.4,现在它可以完美运行。

于 2008-12-28T18:27:19.283 回答