Satin Studio Manual

INB

Status

FieldValue
Extension(s).inb
Common ecosystemInbro-related lead
Format familyMachine-specific lead
Satin Studio statusReference only
Open / importNo
ExportNo
ConfidenceLow-medium.

What it is

INB is reported for Inbro-related embroidery workflows in converter ecosystems.

Satin Studio behavior

Satin Studio documents this format for identification and inspection. It does not open or export the file.

Versions and variants

Tracked as a format lead until files confirm machine family, header layout, and command mapping.

File identification notes

Reported structure includes a large 8192-byte header followed by unsigned x, y, control-style records.

Observed structure notes

Structure sketch

Observed INB files use a large header and three-byte records:

struct InbCandidate<'a> {
    header: [u8; 0x2000],
    records: &'a [InbRecord],
}

struct InbRecord {
    x: u8,
    y: u8,
    control: u8,                       // 0x40 negates x; 0x20 negates y
}

enum InbCommand {
    Stitch,                            // control & 0x0F == 0x00
    ColorChange,                       // control & 0x0F == 0x01
    Jump,                              // control & 0x0F == 0x02
    End,                               // control == 0x04
}

Compatibility evidence

The notes above help identify and inspect the format; they do not imply import or export support. Keep the original file and record the machine and software that produced it.