在画布中绘制 1px 粗线会创建 2px 粗线

Drawing a 1px thick line in canvas creates a 2px thick line(在画布中绘制 1px 粗线会创建 2px 粗线)
本文介绍了在画布中绘制 1px 粗线会创建 2px 粗线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在这个 jsfiddle 中有一条 lineWidth 为 1 的线.

In this jsfiddle there's a line with a lineWidth of 1.

http://jsfiddle.net/mailrox/9bMPD/350/

例如:

ctx.lineWidth = 1;

但是在画布上绘制的线条是 2px 粗的,你如何创建一个 1px 粗的线条.

However the line is 2px thick when it's drawn on the canvas, how do you create a 1px thick line.

我可以绘制一个矩形(高度为 1 像素),但我希望这条线也适用于对角线.那么如何让这条线达到 1px 高呢?

I could draw a rectangle (with 1px height) however I want the line to also work on diagonals. So how do you get this line to be 1px high?

谢谢!

推荐答案

Canvas 从半个像素开始计算

Canvas calculates from the half of a pixel

ctx.moveTo(50,150.5);
ctx.lineTo(150,150.5);

所以从一半开始会解决它

So starting at a half will fix it

固定版本:http://jsfiddle.net/9bMPD/357/

这个答案解释了为什么它会这样工作.

This answer explains why it works that way.

这篇关于在画布中绘制 1px 粗线会创建 2px 粗线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)