{"success":true,"data":{"ext":"obt","name":"OBT","description":"OBT is an object template file format used by PhotoCap, a photo editing application developed by NeoImagic Computing. It stores reusable graphic elements and templates for inserting decorations, captions, or layout components into photos and related projects on Windows during editing and batch processing. The format is generally safe, and it is primarily encountered in older PhotoCap workflows and archived project resources.","mime":[],"risk_level":"Safe","signatures":[{"hex":"65 87 78 56","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":["p25"],"usage":{"python":"def is_obt(file_path: str) -> bool:\n    \"\"\"Check if file is a valid OBT by magic bytes.\"\"\"\n    signature = bytes([0x65, 0x87, 0x78, 0x56])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isOBT(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x65, 0x87, 0x78, 0x56]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsOBT(data []byte) bool {\n    signature := []byte{0x65, 0x87, 0x78, 0x56}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}