API Documentation for: 1.0.0
Show:

Graphics.Stroke Class

Defined in: Graphics.Stroke:1992
Module: EaselJS

Graphics command object. See beginStroke and append for more information.

Constructor

Graphics.Stroke

(
  • style
  • ignoreScale
)

Parameters:

Item Index

Properties

Methods

bitmap

(
  • image
  • [repetition]
)
Fill

Defined in bitmap:2052

Creates a bitmap fill style and assigns it to Stroke/style:property. See beginBitmapStroke for more information.

Parameters:

  • image HTMLImageElement
  • [repetition] String optional

    One of: repeat, repeat-x, repeat-y, or no-repeat.

Returns:

Fill:

Returns this Stroke object for chaining or assignment.

exec

(
  • ctx
)

Defined in exec:2008

Execute the Graphics command in the provided Canvas context.

Parameters:

  • ctx CanvasRenderingContext2D

    The canvas rendering context

linearGradient

(
  • colors
  • ratios
  • x0
  • y0
  • x1
  • y1
)
Fill

Defined in linearGradient:2024

Creates a linear gradient style and assigns it to Stroke/style:property. See beginLinearGradientStroke for more information.

Parameters:

Returns:

Fill:

Returns this Stroke object for chaining or assignment.

radialGradient

(
  • colors
  • ratios
  • x0
  • y0
  • r0
  • x1
  • y1
  • r1
)
Fill

Defined in radialGradient:2037

Creates a radial gradient style and assigns it to Stroke/style:property. See beginRadialGradientStroke for more information.

Parameters:

Returns:

Fill:

Returns this Stroke object for chaining or assignment.

Properties

ignoreScale

Boolean

Defined in ignoreScale:2004

style

Object

Defined in style:1999

A valid Context2D strokeStyle.