Function

HarfBuzz-0.0HarfBuzzblob_create_sub_blobSince 0.9.2

  • Returns a blob that represents a range of bytes in parent. The new blob is always created with #HB_MEMORY_MODE_READONLY, meaning that it will never modify data in the parent blob. The parent data is not expected to be modified, and will result in undefined behavior if it is.

    Makes parent immutable.

    Parameters

    • parent: blob_t

      Parent blob.

    • offset: number

      Start offset of sub-blob within parent, in bytes.

    • length: number

      Length of sub-blob.

    Returns blob_t

    New blob, or the empty blob if something failed or if length is zero or offset is beyond the end of parent's data. Destroy with hb_blob_destroy().

    0.9.2