WStream

class WStream

Subclasses

FILEWStream

DynamicMemoryWStream

Methods

SizeOfPackedUInt

__init__

bytesWritten

flush

Reimplemented in FILEWStream, and NullWStream.

newline

write

Called to write bytes to a WStream.

write16

write32

write8

writeBigDecAsText

writeBool

Overloaded function.

writeDecAsText

writeHexAsText

writePackedUInt

writeScalar

writeScalarAsText

writeStream

writeText

Methods

static WStream.SizeOfPackedUInt(value: int) int
WStream.__init__(*args, **kwargs)
WStream.bytesWritten(self: skia.WStream) int
WStream.flush(self: skia.WStream) None

Reimplemented in FILEWStream, and NullWStream.

WStream.newline(self: skia.WStream) bool
WStream.write(self: skia.WStream, buffer: buffer) bool

Called to write bytes to a WStream.

Returns true on success

Parameters:
  • buffer – the address of at least size bytes to be written to the stream

  • size – The number of bytes in buffer to write to the stream

Returns:

true on success

Implemented in DynamicMemoryWStream,

FILEWStream, and NullWStream.

WStream.write16(self: skia.WStream, value: int) bool
WStream.write32(self: skia.WStream, value: int) bool
WStream.write8(self: skia.WStream, value: int) bool
WStream.writeBigDecAsText(self: skia.WStream, value: int, minDigits: int = 0) bool
WStream.writeBool(*args, **kwargs)

Overloaded function.

  1. writeBool(self: skia.WStream, value: bool) -> bool

  2. writeBool(self: skia.WStream, value: bool) -> bool

WStream.writeDecAsText(self: skia.WStream, value: int) bool
WStream.writeHexAsText(self: skia.WStream, value: int, minDigits: int = 0) bool
WStream.writePackedUInt(self: skia.WStream, value: int) bool
WStream.writeScalar(self: skia.WStream, value: float) bool
WStream.writeScalarAsText(self: skia.WStream, value: float) bool
WStream.writeStream(self: skia.WStream, input: skia.Stream, length: int) bool
WStream.writeText(self: skia.WStream, text: str) bool