GraphicsCanvas Class Reference

« GraphicsWindow | ReferenceGuide | ImageWindow »

This class defines a canvas on which geometric shapes and text can be drawn. The canvas uses discrete Cartesian coordinates 0 with (0,0) being in the upper-left corner. The x-coordinate indicates a horizontal position on the canvas while the y-coordinate indicates a vertical position.

A collection of shape properties are also maintained as part of the canvas. These properties, which can be changed by calling specific methods, are used in drawing the various shapes and text. All shapes and text are drawn using the current context or the property settings at the time the shape is first drawn.

While shapes drawn by a painter on a real canvas are only drawn once, the shapes drawn on a graphical canvas are stored and redrawn every time the window is refreshed. To store the items, the canvas maintains a stack in which the items are drawn from the bottom of the stack to the top. By default new items are pushed onto the top of the stack and thus drawn on top of items already on the canvas. When an item is added to the stack, it will be assigned a unique integer id number. The id number is used to identify a specific item in order to move or reconfigure the item.

Public Methods

GraphicsCanvas(win, width, height)
Creates a new empty graphics canvas.
itemId in canvas
Determines if an id number is valid.
clear()
Clears the canvas by removing all items that were previously drawn on it.
drawArc(x, y, diameter, startAngle, extent)
Draws an arc or part of a circle on the canvas.
drawArrow(x1, y1, x2, y2)
Draws line segment on the canvas with an arrow at the end.
drawLine(x1, y1, x2, y2)
Draws a line segment on the canvas.
drawOval(x, y, width, height)
Draws an oval on the canvas.
drawPoint(x, y)
Draws or plots a single point (pixel) on the canvas.
drawPoly(x1, y1, x2, y2, ..., xN, yN)
Draws a polygon on the canvas.
drawPoly(sequence)
Draws a polygon on the canvas.
drawPolygon(x1, y1, x2, y2, ..., xN, yN)
The same as drawPoly().
drawPolygon(sequence)
The same as drawPoly().
drawRect(x, y, width, height)
Draws a rectangle on the canvas.
drawRectangle(x, y, width, height)
The same as drawRect().
drawText(x, y, text)
Draws text on the canvas.
height()
Returns the height of the canvas.
hideItem(itemId)
Hides a canvas item.
itemType(itemId)
Returns the type of item associated with the given id number.
items()
Returns a list of id numbers.
lowerItem(itemId)
Lowers an item to the bottom of the canvas stack.
lowerItem(itemId, belowId)
Lowers an item below another item on the canvas stack.
raiseItem(itemId)
Raises an item to the top of the canvas stack.
raiseItem(itemId, aboveId)
Raises an item above another item on the canvas stack.
removeItem(itemId)
Removes an item permanently from the canvas.
setBackground(colorname)
Sets the current background color of the canvas.
setBackground(red, green, blue)
Sets the current background color of the canvas.
setColor(colorname)
Sets both the fill and outline colors for new shapes and text.
setColor(red, green, blue)
Sets both the fill and outline color of new shapes and text.
setFill()
Clears the color used to fill new polygon shapes.
setFill(colorname)
Sets the color used to fill new polygon shapes.
setFill(red, green, blue)
Sets the fill color used in drawing new polygon shapes.
setHeight(size)
Changes the height of the canvas.
setLineStyle(style)
Sets the style used to drawn new lines on the canvas.
setLineWidth(size)
Sets the width of new lines drawn on the canvas.
setOutline()
Clears the color used in drawing the outlines of shapes and drawing text.
setOutline(colorname)
Sets the color used in drawing the outlines of new shapes and text.
setOutline(red, green, blue)
Sets the color used in drawing the outlines of new shapes and text.
setTextAnchor(position)
Sets the anchor used to position new text drawn on the canvas.
setTextFont(family, style, size)
Sets the font used to draw new text on the canvas.
setTextFont(family)
Sets the font family used to draw new text on the canvas.
setTextJustify(style)
Sets the justification used to draw new multiline text on the canvas.
setWidth(size)
Changes the width of the canvas.
shiftItem(itemId, dx, dy)
Shifts an item on the canvas.
showItem(itemId)
Shows or unhides an item that was previously hidden.
width()
Returns the width of the canvas.

Detailed Description

GraphicsCanvas(win, width, height)
Creates a new empty graphics canvas. A graphics canvas is automatically created as part of a GraphicsWindow. Thus, there should be no need for the user of this module to explicitly create one.
Parameters:
win
A reference to the GraphicsWindow in which the canvas is used.
width
The width of the canvas in pixels.
height
The height of the canvas in pixels.
setHeight(size)
Changes the height of the canvas. The window is resized to fit the size of the canvas.
Parameters:
size
The new height of the canvas in number of pixels.
See Also:
setWidth()
setWidth(size)
Changes the width of the canvas. The window is resized to fit the size of the canvas.
Parameters:
size
The new width of the canvas in number of pixels.
See Also:
setHeight()
height()
Returns the height of the canvas.
Returns:
The canvas height in number of pixels.
See Also:
width()
width()
Returns the width of the canvas.
Returns:
The canvas width in number of pixels.
See Also:
height()
clear()
Clears the canvas by removing all items that were previously drawn on it. The canvas acts as a container of shapes and text. Thus, when a geometric shape or text is drawn on the canvas, it is maintained internally as an object until the canvas is cleared or the item is removed.
setBackground(colorname)
Sets the current background color of the canvas. The background color of the canvas is changed immediately after this method is called.
Parameters:
colorname
The name of the color which must be a string and a valid color name.
setBackground(red, green, blue)
Sets the current background color of the canvas. The background color of the canvas is changed immediately after this method is called.
Parameters:
red, green, blue
The three RGB color components all of which must be integers in the range [0..255].
setFill()
Clears the color used to fill new polygon shapes. After calling this method, new polygons are drawn in outline form only.
See Also:
setOutline(), setColor()
setFill(colorname)
Sets the color used to fill new polygon shapes.
Parameters:
colorname
The name of the color which must be a string containing a valid color name.
See Also:
setOutline(), setColor()
setFill(red, green, blue)
Sets the fill color used in drawing new polygon shapes.
Parameters:
red, green, blue
The three RGB color components all of which must be integers in the range [0..255].
See Also:
setOutline(), setColor()
setOutline()
Clears the color used in drawing the outlines of shapes and drawing text. After calling this method, new shapes will be filled but not outlined.
See Also:
setFill(), setColor()
setOutline(colorname)
Sets the color used in drawing the outlines of new shapes and text.
Parameters:
colorname
The name of the color which must be a string and a valid color name.
See Also:
setFill(), setColor()
setOutline(red, green, blue)
Sets the color used in drawing the outlines of new shapes and text.
Parameters:
red, green, blue
The three RGB color components all of which must be integers in the range [0..255].
See Also:
setFill(), setColor()
setColor(colorname)
Sets both the fill and outline colors for new shapes and text.
Parameters:
colorname
The name of the color, which must be a string containing a valid color name.
See Also:
setOutline(), setFill()
setColor(red, green, blue)
Sets both the fill and outline color of new shapes and text.
Parameters:
red, green, blue
The three RGB color components all of which must be integers in the range [0..255].
See Also:
setOutline(), setFill()
setLineWidth(size)
Sets the width of new lines drawn on the canvas. This includes the line and arrow shapes and the outlines of polygons.
Parameters:
size
The new line width given as an integer ≥ 0.
See Also:
setLineStyle()
setLineStyle(style)
Sets the style used to drawn new lines on the canvas. This includes the line and arrow shapes and the outlines of polygons.
Parameters:
style
A string indicating the style to use for new lines. It can be one of the following values:
ValueDescription
"solid"Draw solid lines.
"dashed"Draw dashed lines.
See Also:
setLineWidth()
setTextFont(family, style, size)
Sets the font used to draw new text on the canvas. The default is 10pt helvetica in normal or medium style. Individual font characteristics can be set using named arguments.
Parameters:
family
A string indicating the name of the font family. It can be one of the following:
ValueDescription
"arial"
"courier"A monospace style font.
"helvetica"A sans serif style font (default).
"times"A serif style font.
style
A string indicating the style of the font. It can be one of the following:
ValueDescription
"normal"Normal or medium
"bold"Boldfaced
"italic"Italics
"bold italic"Boldfaced and italics.
size
The point size of the font given as an integer > 0.
setTextFont(family)
Sets the font family used to draw new text on the canvas. The font style and size are not changed.
Parameters:
family
A string indicating the name of the font family. It can be one of the following:
ValueDescription
"arial"
"courier"A monospace style font.
"helvetica"A sans serif style font (default).
"times"A serif style font.
setTextAnchor(position)
Sets the anchor used to position new text drawn on the canvas.
Parameters:
position
A string indicating the position of the anchor on the bounding box. It can be one of the following:
ValueDescription
"nw"northwest
"n"north
"ne"northest
"e"east
"se"southeast
"s"south
"sw"southwest
"w"west
"center"center
setTextJustify(style)
Sets the justification used to draw new multiline text on the canvas.
Parameters:
style
A string specifying the justification. It can be one of:
ValueDescription
"left"left justified
"center"centered
"right"right justified
drawPoint(x, y)
Draws or plots a single point (pixel) on the canvas.
Parameters:
x, y
The discrete pixel coordinates at which the point is drawn.
Returns:
An integer that uniquely identifies the new point item.
drawLine(x1, y1, x2, y2)
Draws a line segment on the canvas. The line is drawn between two discrete end points.
Parameters:
x1, y1
The coordinates of the starting point.
x2, y2
The coordinates of the ending point.
Returns:
An integer that uniquely identifies the new line item.
drawArrow(x1, y1, x2, y2)
Draws line segment on the canvas with an arrow at the end. The line is drawn between two discrete end points.
Parameters:
x1, y1
The coordinates of the starting point.
x2, y2
The coordinates of the ending point.
Returns:
An integer that uniquely identifies the new arrow item.
drawRect(x, y, width, height)
Draws a rectangle on the canvas. The rectangle is defined by the position of the upper left corner of the rectangle and its width and height.
Parameters:
x, y
The coordinates of the upper-left corner of the rectangle.
width, height
The dimensions of the rectangle.
Returns:
An integer that uniquely identifies the new rectangle item.
drawRectangle(x, y, width, height)
The same as drawRect().
drawPoly(x1, y1, x2, y2, ..., xN, yN)
Draws a polygon on the canvas. The polygon is defined by three or more vertices that are specified in counter-clockwise order.
Parameters:
x1, y1, x2, y2, …, xN, yN
The canvas coordinates that define the polygon.
Returns:
An integer that uniquely identifies the new polygon item.
drawPoly(sequence)
Draws a polygon on the canvas. The polygon is defined by three or more vertices that are specified in counter-clockwise order.
Parameters:
sequence
A list or tuple of canvas coordinates that define the polygon.
Returns:
An integer that uniquely identifies the new polygon item.
drawPolygon(x1, y1, x2, y2, ..., xN, yN)
The same as drawPoly().
drawPolygon(sequence)
The same as drawPoly().
drawOval(x, y, width, height)
Draws an oval on the canvas. The oval is defined as if it were drawn inside and touching the edges of a bounding box. The bounding box is specified by the position of its upper left corner and its width and height.
Parameters:
x, y
The coordinates of the upper-left corner of the bounding box.
width, height
The dimensions of the bounding box.
Returns:
An integer that uniquely identifies the new oval item.
drawArc(x, y, diameter, startAngle, extent)
Draws an arc or part of a circle on the canvas. The arc is defined by a bounding square and two angles, start and extent angles. The angles are specified in degrees with zero degrees corresponding to the x-axis.
Parameters:
x, y
The upper-left coordinates of the bounding square.
diameter
The dimensions of the bounding rectangle.
startAngle
The angle in degrees at which the arc begins.
extent
The extent of the arc given as an angle in degrees.
Returns:
An integer that uniquely identifies the new arc item.
See Also:
setFill(), setOutline()
drawText(x, y, text)
Draws text on the canvas. The text is drawn within an invisible bounding box that contains an anchor that is positioned at a given point on the canvas.

The default position of the anchor is in the upper-left (northwest) corner of the bounding box. The anchor position can be changed using the setTextAnchor() method. The text is drawn using the default font family, size, and style, but this can be changed using the setTextFont() method. The text can consists of multiple lines, each separated by a newline character. The justification of the text can be set when drawing multiple lines of text using the setTextJustify() method.

Parameters:
x, y
The coordinates of point on the canvas at which the anchor point of the bounding box is positioned.
Returns:
An integer that uniquely identifies the new text item.
See Also:
setOutline(), setTextFont(), setTextAnchor(), setTextJustify()

shiftItem(itemId, dx, dy)
Shifts an item on the canvas. The item to be shifted is indicated by its id number, which was returned when the item was drawn.
Parameters:
itemId
The id number of the item to be shifted.
dx
The amount to shift the item in the horizontal direction.
dy
The amount to shift the item in the vertical direction.
removeItem(itemId)
Removes an item permanently from the canvas. The item to be removed is indicated by its id number, which was returned when the item was drawn.
Parameters:
itemId
The id number of the item to be removed.
hideItem(itemId)
Hides a canvas item. The item is still part of the canvas, but it’s not drawn and thus, hidden from view. The item to be hidden is indicated by its id number, which was returned when the item was drawn.
Parameters:
itemId
The id number of the item to be hidden.
showItem(itemId)
Shows or unhides an item that was previously hidden. The item to unhide is indicated by its id number, which was returned when the item was drawn.
Parameters:
itemId
The id number of the item to be shown.
raiseItem(itemId)
Raises an item to the top of the canvas stack. The items are drawn in the order they appear on the stack, from bottom to top.
Parameters:
itemId
The id number of the item to be raised to the top of the stack.
raiseItem(itemId, aboveId)
Raises an item above another item on the canvas stack. The items are drawn in the order they appear on the stack, from bottom to top.
Parameters:
itemId
The id number of the item to be raised on the canvas stack.
aboveId
The id number of the item above which an item is raised.
lowerItem(itemId)
Lowers an item to the bottom of the canvas stack. The items are drawn in the order they appear on the stack, from bottom to top.
Parameters:
itemId
The id number of the item to be lowered to the bottom of the stack.
lowerItem(itemId, belowId)
Lowers an item below another item on the canvas stack. The items are drawn in the order they appear on the stack, from bottom to top.
Parameters:
itemId
The id number of the item to be lowered on the canvas stack.
belowId
The id number of the item below which the item is lowered.
itemType(itemId)
Returns the type of item associated with the given id number.
Returns:
A string indicating the type of item associated with the given id number. The value will be one of the following:
ValueNotes
"arc"
"line"A pixel is drawn as a line.
"oval"
"polygon"
"rectangle"
"text"
__contains__: itemId in canvas
Determines if an id number is valid. For an id number to be valid, it must be associated with an item currently on the canvas. Once an item is removed, the id number is no longer valid.
Returns:
True if the id number is valid or False otherwise.
items()
Returns a list of id numbers. The list will contain the id number of every item currently on the canvas stack.
Returns:
A list of integers that correspond to the id numbers of the shapes and text on the canvas.


« GraphicsWindow | ReferenceGuide | ImageWindow »

Last modified: October 12, 2014, at 08:00 PM.