绘制矩形边框厚度
是否可以以简单的方式绘制具有给定边框厚度的矩形?
Is it possible to do draw a rectangle with a given border thickness in an easy way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以以简单的方式绘制具有给定边框厚度的矩形?
Is it possible to do draw a rectangle with a given border thickness in an easy way?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您在 Graphics2D 对象上绘图,您可以使用
setStroke()
方法:如果这是在 Swing 组件上完成的,并且您正在传递一个
Graphics
对象,则可以将其向下转换为Graphics2D。
If you are drawing on a Graphics2D object, you can use the
setStroke()
method:If this is being done on a Swing component and you are being passed a
Graphics
object, you can downcast it to aGraphics2D
.操作方法如下:带有粗细为 5 的彩色线的边框。
Here's how to do this : Border with colored line with thickness 5.