company logo

Pixmap :: binary - Binary pixmap data

Binary pixmap data contains the pixmap in an internal format. The property returns the binary data block for the pixmap.

Return value:  Binary data block ( odaba::Binary & )

The binary data block contains binary data usually read from a file or database.

Implementation overview

Implementation details

  1. Get binary pixmap data
    const odaba::Binary & Pixmap  :: binary (  )

    The function returns a binary data block containing internal pixmap data.

  2. to list
  3. Set binary data block
    const odaba::Binary & Pixmap  :: binary ( odaba::Binary &cBinary )

    The function sets the binary data block for the pixmap. When the binary data block contains data (not empty), the binary pixmap is used rather than the file path. In order to deactivate the binary pixmap, an empty data block might be set. When the binary data block is empty, the pixmap is read from the file location as set in path.

    • cBinary - Binary data block

      The binary data block contains binary data usually read from a file or database.

  4. to list