-
com.golden.gamedev.object.GameFont.drawString()
Draw a single line string into graphics context.
@param g the graphics context
@param s the string to be drawn
@param x the x
screen coordinate to draw the text
@param y the y
screen coordinate to draw the text
@return The right-edge of x
coordinate to draw next text.
-
com.google.code.appengine.awt.Graphics2D.drawString()
-
ij.process.ImageProcessor.drawString()
Draws a string at the current location using the current fill/draw value. Draws multiple lines if the string contains newline characters.
-
java.awt.Graphics.drawString()
Draws the text given by the specified string, using this graphics context's current font and color. The baseline of the leftmost character is at position (x, y) in this graphics context's coordinate system.
@param str the string to be drawn.
@param x the x coordinate.
@param y the y coordinate.
@throws NullPointerException if str
is null
.
@see java.awt.Graphics#drawBytes
@see java.awt.Graphics#drawChars
-
java.awt.Graphics2D.drawString()
Renders the text of the specified String
, using the current text attribute state in the Graphics2D
context. The baseline of the first character is at position (x, y) in the User Space. The rendering attributes applied include the Clip
, Transform
, Paint
, Font
and Composite
attributes. For characters in script systems such as Hebrew and Arabic, the glyphs can be rendered from right to left, in which case the coordinate supplied is the location of the leftmost character on the baseline.
@param str the string to be rendered
@param x the x coordinate of the location where theString
should be rendered
@param y the y coordinate of the location where theString
should be rendered
@throws NullPointerException if str
is null
@see java.awt.Graphics#drawBytes
@see java.awt.Graphics#drawChars
@since JDK1.0
-
javax.microedition.lcdui.Graphics.drawString()
Draws the specified
String
using the current font and color. The
x,y
position is the position of the anchor point. See
anchor points.
@param str the
String
to be drawn
@param x the x coordinate of the anchor point
@param y the y coordinate of the anchor point
@param anchor the anchor point for positioning the text
@throws NullPointerException if
str
is
null
@throws IllegalArgumentException if anchor is not a legal value
@see #drawChars(char[],int,int,int,int,int)
-
net.minecraft.client.gui.FontRenderer.drawString()
-
net.minecraft.src.FontRenderer.drawString()
Draws the specified string.
-
org.antlr.works.visualization.graphics.GContext.drawString()
-
org.apache.fop.svg.PDFDocumentGraphics2D.drawString()
-
org.apache.pdfbox.pdmodel.edit.PDPageContentStream.drawString()
This will draw a string at the current location on the screen.
@param text The text to draw.
@throws IOException If an io exception occurs.
-
org.apache.pdfbox.pdmodel.font.PDFont.drawString()
This will draw a string on a canvas using the font.
@param string The string to draw.
@param g The graphics to draw onto.
@param fontSize The size of the font to draw.
@param at The transformation matrix with all infos for scaling and shearing of the font.
@param x The x coordinate to draw at.
@param y The y coordinate to draw at.
@throws IOException If there is an error drawing the specific string.
-
org.apache.xmlgraphics.java2d.ps.EPSDocumentGraphics2D.drawString()
-
org.eclipse.swt.graphics.GC.drawString()
Draws the given string, using the receiver's current font and foreground color. No tab expansion or carriage return processing will be performed. The background of the rectangular area where the string is being drawn will be filled with the receiver's background color.
@param string the string to be drawn
@param x the x coordinate of the top left corner of the rectangular area where the string is to be drawn
@param y the y coordinate of the top left corner of the rectangular area where the string is to be drawn
@exception IllegalArgumentException
- ERROR_NULL_ARGUMENT - if the string is null
@exception SWTException
- ERROR_GRAPHIC_DISPOSED - if the receiver has been disposed
-
org.freehep.graphics2d.VectorGraphics.drawString()
-
org.jbox2d.callbacks.DebugDraw.drawString()
Draw a string.
@param x
@param y
@param s
@param color
-
org.locationtech.udig.ui.graphics.ViewportGraphics.drawString()
Draws a string. Alignment parameters specify where the string should be located relative to coordinate (x,y).
@param string The string to draw.
@param x the x coordinate of the location where the of the string will be placed.
@param y the y coordinate of the location where the of the string will be placed.
@param alignx horizontal alignment, {@link #ALIGN_LEFT}, {@link #ALIGN_MIDDLE} or {@link #ALIGN_RIGHT}
@param aligny vertical alignment, {@link #ALIGN_BOTTOM}, {@link #ALIGN_MIDDLE} or {@link #ALIGN_TOP}
-
org.newdawn.slick.Font.drawString()
Draw a string to the screen
@param x The x location at which to draw the string
@param y The y location at which to draw the string
@param text The text to be displayed
-
org.newdawn.slick.UnicodeFont.drawString()
-
org.open2jam.render.lwjgl.TrueTypeFont.drawString()
-
org.pdfbox.pdmodel.edit.PDPageContentStream.drawString()
This will draw a string at the current location on the screen.
@param text The text to draw.
@throws IOException If an io exception occurs.
-
org.pdfbox.pdmodel.font.PDFont.drawString()
This will draw a string on a canvas using the font.
@param string The string to draw.
@param g The graphics to draw onto.
@param fontSize The size of the font to draw.
@param xScale The x scaling percent.
@param yScale The y scaling percent.
@param x The x coordinate to draw at.
@param y The y coordinate to draw at.
@throws IOException If there is an error drawing the specific string.
-
railo.runtime.img.Image.drawString()