NullWStream
- class NullWStream
Methods
Reimplemented in
FILEWStream
, andNullWStream
.Called to write bytes to a
WStream
.Overloaded function.
Methods
- static NullWStream.SizeOfPackedUInt(value: int) int
- NullWStream.__init__(self: skia.NullWStream) None
- NullWStream.bytesWritten(self: skia.WStream) int
- NullWStream.flush(self: skia.WStream) None
Reimplemented in
FILEWStream
, andNullWStream
.
- NullWStream.newline(self: skia.WStream) bool
- NullWStream.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
, andNullWStream
.
- NullWStream.write16(self: skia.WStream, value: int) bool
- NullWStream.write32(self: skia.WStream, value: int) bool
- NullWStream.write8(self: skia.WStream, value: int) bool
- NullWStream.writeBigDecAsText(self: skia.WStream, value: int, minDigits: int = 0) bool
- NullWStream.writeBool(*args, **kwargs)
Overloaded function.
writeBool(self: skia.WStream, value: bool) -> bool
writeBool(self: skia.WStream, value: bool) -> bool
- NullWStream.writeDecAsText(self: skia.WStream, value: int) bool
- NullWStream.writeHexAsText(self: skia.WStream, value: int, minDigits: int = 0) bool
- NullWStream.writePackedUInt(self: skia.WStream, value: int) bool
- NullWStream.writeScalar(self: skia.WStream, value: float) bool
- NullWStream.writeScalarAsText(self: skia.WStream, value: float) bool
- NullWStream.writeStream(self: skia.WStream, input: skia.Stream, length: int) bool
- NullWStream.writeText(self: skia.WStream, text: str) bool