如何使用Javafx Canvas绘制1像素线?

时间:2015-01-08 18:03:29

标签: java javafx

我一直在谷歌上搜索,发现了一些相关的问题/帖子,但没有解决我的问题。

我使用:

直接在画布上绘制线条(JavaFX)
gc.setStroke(color);
gc.setLineWidth(lineWidth);
gc.strokeLine(startX, startY, endX, endY);

我想要1像素宽的线条。所以我设置lineWidth = 1。 我明白了: enter image description here

请注意,线条模糊不清。它不是1个像素。 我试图将lineWidth设置为0.1或0.01,等等。它不会改变结果。

顺便说一句......我不明白为什么这个参数是双精度的。我在某处读到它与DPI有关。但我不明白单位是什么以及如何将其转换为像素。 Oracle的文档没有帮助。 (或者我找不到那个有帮助的人)

我想改为:

enter image description here

这是在另一个平台上实现的。请注意,线条很清晰,只有一个像素。

2 个答案:

答案 0 :(得分:30)

想象每个像素为(小)矩形(而不是点)。整数坐标是像素之间的边界;所以带有整数坐标的(水平或垂直)线落在像素和#34;之间。这是通过抗锯齿渲染的,在一个像素上接近一半,在另一个像素上接近一半。向左或向右移动0.5像素的线将其移动到像素的中心,绕过问题。

以下是一个示例:

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class SharpCanvasTest extends Application {

    @Override
    public void start(Stage primaryStage) {
        Canvas sharpCanvas = createCanvasGrid(600, 300, true);
        Canvas blurryCanvas = createCanvasGrid(600, 300, false);
        VBox root = new VBox(5, sharpCanvas, blurryCanvas);
        primaryStage.setScene(new Scene(root));
        primaryStage.show();
    }

    private Canvas createCanvasGrid(int width, int height, boolean sharp) {
        Canvas canvas = new Canvas(width, height);
        GraphicsContext gc = canvas.getGraphicsContext2D() ;
        gc.setLineWidth(1.0);
        for (int x = 0; x < width; x+=10) {
            double x1 ;
            if (sharp) {
                x1 = x + 0.5 ;
            } else {
                x1 = x ;
            }
            gc.moveTo(x1, 0);
            gc.lineTo(x1, height);
            gc.stroke();
        }

        for (int y = 0; y < height; y+=10) {
            double y1 ;
            if (sharp) {
                y1 = y + 0.5 ;
            } else {
                y1 = y ;
            }
            gc.moveTo(0, y1);
            gc.lineTo(width, y1);
            gc.stroke();
        }
        return canvas ;
    }

    public static void main(String[] args) {
        launch(args);
    }
}

结果:

enter image description here

答案 1 :(得分:0)

在此符号x.5中使用坐标。

看我的例子:

    gc.setFill(Color.BLACK);
    gc.setLineWidth(1.0);

    gc.strokeRect(50, 100, 25.0, 25.0);
    gc.strokeRect(100.5, 100.5, 25.0, 25.0);

您将得到两个正方形,第二个尖锐。

参考:https://dlsc.com/2014/04/10/javafx-tip-2-sharp-drawing-with-canvas-api/