API Reference / @gtkx/cairo / Surface
Abstract Class: Surface
Defined in: surface.d.ts:10
A cairo surface (cairo_surface_t): the target a context draws onto. Surfaces come from the create* statics, from ImageSurface and RecordingSurface, or from GTK, and wrap as the concrete class their backend reports (instanceof ImageSurface for an image surface).
Extended by
Constructors
Constructor
new Surface():
Surface
Returns
Surface
Properties
__type__
__type__:
bigint
Defined in: surface.d.ts:18
GType of CairoSurface, the boxed type this class is registered under.
Methods
copyPage()
copyPage():
void
Defined in: surface.d.ts:54
Emits the current page and keeps its content for the next one, on paged backends.
Returns
void
finish()
finish():
void
Defined in: surface.d.ts:24
Finishes the surface and drops its backend resources; further drawing reports an error.
Returns
void
flush()
flush():
void
Defined in: surface.d.ts:26
Performs any pending drawing so the backend storage is up to date.
Returns
void
getContent()
getContent():
Content
Defined in: surface.d.ts:32
Returns whether the surface holds color, alpha or both.
Returns
getDevice()
getDevice():
ExternalObject<Handle> |null
Defined in: surface.d.ts:28
Returns the raw handle of the device behind the surface, or null when it has none.
Returns
ExternalObject<Handle> | null
getDeviceOffset()
getDeviceOffset():
DeviceOffset
Defined in: surface.d.ts:40
Returns the offset added to device coordinates when drawing onto the surface.
Returns
getDeviceScale()
getDeviceScale():
DeviceScale
Defined in: surface.d.ts:42
Returns the scale applied between user and device units.
Returns
getFallbackResolution()
getFallbackResolution():
FallbackResolution
Defined in: surface.d.ts:48
Returns the resolution used when vector content has to be rasterized.
Returns
getFontOptions()
getFontOptions():
FontOptions
Defined in: surface.d.ts:30
Returns the font options the surface's backend prefers for rendering text.
Returns
getReferenceCount()
getReferenceCount():
number
Defined in: surface.d.ts:52
Returns the reference count of the surface.
Returns
number
getType()
getType():
SurfaceType
Defined in: surface.d.ts:50
Returns the backend type of the surface.
Returns
hasShowTextGlyphs()
hasShowTextGlyphs():
boolean
Defined in: surface.d.ts:58
Returns whether the surface supports Context.showTextGlyphs natively.
Returns
boolean
markDirty()
markDirty():
void
Defined in: surface.d.ts:34
Tells cairo the surface's storage was modified outside of cairo.
Returns
void
markDirtyRectangle()
markDirtyRectangle(
x,y,width,height):void
Defined in: surface.d.ts:36
Tells cairo the given rectangle of the surface's storage was modified outside of cairo.
Parameters
x
number
y
number
width
number
height
number
Returns
void
setDeviceOffset()
setDeviceOffset(
xOffset,yOffset):void
Defined in: surface.d.ts:38
Sets the offset added to device coordinates when drawing onto the surface.
Parameters
xOffset
number
yOffset
number
Returns
void
setDeviceScale()
setDeviceScale(
xScale,yScale):void
Defined in: surface.d.ts:44
Sets the scale applied between user and device units.
Parameters
xScale
number
yScale
number
Returns
void
setFallbackResolution()
setFallbackResolution(
xPixelsPerInch,yPixelsPerInch):void
Defined in: surface.d.ts:46
Sets the resolution used when vector content has to be rasterized.
Parameters
xPixelsPerInch
number
yPixelsPerInch
number
Returns
void
showPage()
showPage():
void
Defined in: surface.d.ts:56
Emits the current page and starts a blank one, on paged backends.
Returns
void
status()
status():
Status
Defined in: surface.d.ts:22
Returns the error status of the surface, Status.SUCCESS when it is usable.
Returns
supportsMimeType()
supportsMimeType(
mimeType):boolean
Defined in: surface.d.ts:60
Returns whether the surface can embed data of the given MIME type.
Parameters
mimeType
string
Returns
boolean
writeToPng()
writeToPng(
filename):Status
Defined in: surface.d.ts:20
Writes the surface to a PNG file at filename and returns the resulting status.
Parameters
filename
string
Returns
createForRectangle()
staticcreateForRectangle(target,x,y,width,height):Surface
Defined in: surface.d.ts:16
Creates a surface that draws onto the given rectangle of target.
Parameters
target
Surface
x
number
y
number
width
number
height
number
Returns
Surface
createSimilar()
staticcreateSimilar(other,content,width,height):Surface
Defined in: surface.d.ts:12
Creates a surface of the given content and size as compatible as possible with other.
Parameters
other
Surface
content
width
number
height
number
Returns
Surface
createSimilarImage()
staticcreateSimilarImage(other,format,width,height):ImageSurface
Defined in: surface.d.ts:14
Creates an image surface of the given format and size as compatible as possible with other.
Parameters
other
Surface
format
width
number
height
number