Uses of Class
java.awt.Graphics2D
-
Packages that use Graphics2D 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.awt.font 提供与字体相关的类和界面。java.awt.image 提供用于创建和修改图像的类。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.swing.plaf.basic 提供根据Basic外观构建的用户界面对象。javax.swing.plaf.nimbus 提供根据跨平台Nimbus外观构建的用户界面对象。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。 -
-
Uses of Graphics2D in java.awt
Methods in java.awt that return Graphics2D 变量和类型 方法 描述 abstract Graphics2D
GraphicsEnvironment. createGraphics(BufferedImage img)
返回Graphics2D
对象以呈现到指定的BufferedImage
中 。Graphics2D
SplashScreen. createGraphics()
为初始屏幕叠加图像创建图形上下文(作为Graphics2D
对象),允许您在初始屏幕上绘图。 -
Uses of Graphics2D in java.awt.font
Methods in java.awt.font with parameters of type Graphics2D 变量和类型 方法 描述 abstract void
GraphicAttribute. draw(Graphics2D graphics, float x, float y)
在指定位置呈现此GraphicAttribute
。void
TextLayout. draw(Graphics2D g2, float x, float y)
在指定的Graphics2D
上下文中的指定位置渲染此TextLayout
。 -
Uses of Graphics2D in java.awt.image
Methods in java.awt.image that return Graphics2D 变量和类型 方法 描述 Graphics2D
BufferedImage. createGraphics()
创建一个Graphics2D
,可用于绘制到此BufferedImage
。abstract Graphics2D
VolatileImage. createGraphics()
创建一个Graphics2D
,可用于绘制到此VolatileImage
。 -
Uses of Graphics2D in javax.swing
Methods in javax.swing with parameters of type Graphics2D 变量和类型 方法 描述 void
Painter. paint(Graphics2D g, T object, int width, int height)
呈现给定的Graphics2D
对象。 -
Uses of Graphics2D in javax.swing.plaf.basic
Methods in javax.swing.plaf.basic with parameters of type Graphics2D 变量和类型 方法 描述 static void
BasicGraphicsUtils. drawString(JComponent c, Graphics2D g, String string, float x, float y)
使用提供的组件中的文本属性和消除锯齿提示在指定位置绘制给定字符串。static void
BasicGraphicsUtils. drawStringUnderlineCharAt(JComponent c, Graphics2D g, String string, int underlinedIndex, float x, float y)
在指定位置绘制给定字符串,并在指定字符下划线。 -
Uses of Graphics2D in javax.swing.plaf.nimbus
Methods in javax.swing.plaf.nimbus with parameters of type Graphics2D 变量和类型 方法 描述 protected void
AbstractRegionPainter. configureGraphics(Graphics2D g)
配置给定的Graphics2D。protected abstract void
AbstractRegionPainter. doPaint(Graphics2D g, JComponent c, int width, int height, Object[] extendedCacheKeys)
实际上执行绘画操作。 -
Uses of Graphics2D in javax.swing.text
Methods in javax.swing.text with parameters of type Graphics2D 变量和类型 方法 描述 protected float
PasswordView. drawEchoCharacter(Graphics2D g, float x, float y, char c)
呈现回显字符,或者应该使用任何图形来显示密码字符。protected void
PlainView. drawLine(int lineIndex, Graphics2D g, float x, float y)
呈现一行文本,在末尾抑制空格并展开任何选项卡。protected void
WrappedPlainView. drawLine(int p0, int p1, Graphics2D g, float x, float y)
呈现一行文本,在末尾抑制空格并展开任何选项卡。protected float
PlainView. drawSelectedText(Graphics2D g, float x, float y, int p0, int p1)
将模型中的给定范围呈现为选定文本。protected float
WrappedPlainView. drawSelectedText(Graphics2D g, float x, float y, int p0, int p1)
将模型中的给定范围呈现为选定文本。static float
Utilities. drawTabbedText(Segment s, float x, float y, Graphics2D g, TabExpander e, int startOffset)
绘制给定文本,展开使用给定制表符扩展技术包含的任何选项卡。protected float
PlainView. drawUnselectedText(Graphics2D g, float x, float y, int p0, int p1)
将模型中的给定范围渲染为正常的未选文本。protected float
WrappedPlainView. drawUnselectedText(Graphics2D g, float x, float y, int p0, int p1)
将模型中的给定范围渲染为正常的未选文本。
-