How do I draw a point using Core Graphics?

2019-01-11 13:34发布

I see APIs in Quartz for drawing lines and circles. But all I want to do is to specify the (x,y) cartesian coordinate to color a pixel a particular value. How do I do that?

7条回答
Summer. ? 凉城
2楼-- · 2019-01-11 14:02

Draw a very small ellipse/circle and fill it!

CGContextAddEllipseInRect(Context,(CGRectMake (x_dot, y_dot, 3.0, 3.0));
CGContextDrawPath(Context, kCGPathFill);
CGContextStrokePath(Context);

I am using this code to create a small dot (3x3 pixels) in a dotted music note.

查看更多
祖国的老花朵
3楼-- · 2019-01-11 14:05

Quartz is not a pixel-oriented API, and its contexts aren’t necessarily pixel buffers. If you want to draw pixmaps, create a bitmap context with CGBitmapContextCreate(). You provide a buffer, which you can manipulate directly, and can copy to another context by creating a CGImage from the same buffer using CGImageCreate() and drawing that.

查看更多
可以哭但决不认输i
4楼-- · 2019-01-11 14:06
CGContextFillRect(context, CGRectMake(x,y,1,1));
查看更多
倾城 Initia
5楼-- · 2019-01-11 14:13

I'm having the same issue - i find the best solution is similar to the last, but at least it doesn't leave something that looks like a "dash"... of course, should ensure x/y are both > 0.

CGContextFillRect(context, CGRectMake(x - 0.5, y - 0.5, 1.0 , 1.0));

查看更多
迷人小祖宗
6楼-- · 2019-01-11 14:17

swift 3 :

 UIRectFill(CGRect(x: x, y: y, width: 1, height: 1))
查看更多
萌系小妹纸
7楼-- · 2019-01-11 14:18

I got a point (zero length line) to draw after setting the line-caps to kCGLineCapRound. The default line-cap has no length so can't be drawn.

The argument that a point has no size is silly. The lines have no width but we can draw those (by using the "line width" from the draw state). A point should draw in exactly the same way, and with different line caps I believe it does.

Maybe this behavior is new?

查看更多
登录 后发表回答