Satin Studio Manual

Preview images

Status

FieldValue
Extension(s).bmp, .png, .jpg
Common ecosystemMachine previews and design bundles
Format familySidecar or embedded metadata
Satin Studio statusReference only
Open / importNo
ExportNo
ConfidenceHigh for preview role.

What it is

Preview images may be embedded in machine files or shipped beside them to show the design visually.

Satin Studio behavior

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

Versions and variants

Preview image sidecars use ordinary image formats, but embedded previews inside machine files are format- and version-specific.

File identification notes

Standard image formats or embedded bitmap sections.

Observed structure notes

Structure sketch

Preview images are ordinary image formats when stored as sidecars and format-specific blobs when embedded.

enum PreviewImage<'a> {
    Png { signature: [u8; 8], chunks: &'a [u8] },      // 89 50 4E 47 0D 0A 1A 0A
    Jpeg { soi: [u8; 2], segments: &'a [u8] },         // FF D8 ... FF D9
    Bmp { file_header: [u8; 14], dib_header: &'a [u8], pixels: &'a [u8] },
    EmbeddedFormatSpecific { payload: &'a [u8] },
}

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.