Buffer

Binary Buffer

The list of common settings for parameters is available here.

Specification

codepage

  • Type: String

  • The codepage of the buffer.

In combination with type filename the buffer can be used for better file input dialog.

[
  {
    "name": "fileName",
    "type": "filename",
    "label": "File name",
    "semantic": "file:name"
  },
  {
    "name": "data",
    "type": "buffer",
    "label": "Data",
    "semantic": "file:data"
  }
]

Examples

Basic Buffer

A simple binary buffer field. You can use toBinary() function to convert data to a binary format.

File Input

When combined with filename parameter, the buffer can be used for a file input dialog.

Last updated