create_palette
Embed secret data into indexed-color images by encoding bits into the least significant bits of palette color entries. Supports PNG and GIF formats.
Instructions
Embed data in palette color entry LSBs for indexed-color images (PNG with PLTE chunk or GIF). Each palette entry has R, G, B values — the least significant bit of each channel encodes one bit of the secret data. Capacity is 3 bits per palette entry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Secret data string to embed in palette LSBs | |
| file_path | Yes | Path to an indexed-color image (PNG palette or GIF) | |
| output_path | Yes | Path for the output file |