{"success":true,"data":{"ext":"art","name":"AOL ART file","description":"AOL ART file is a raster image format developed for AOL software and associated Windows applications. It was used for simple graphics, icons, and web-era imagery in AOL services and related content creation tools. The format is now largely legacy and uncommon; it is generally considered safe to open, although support in modern software may be limited and files from untrusted sources should still be handled with care.","mime":[],"risk_level":"Safe","signatures":[{"hex":"4A 47 03 0E","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]},{"hex":"4A 47 04 0E","offset":0,"sources":[{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":["aby","bag","dci","org"],"usage":{"python":"def is_art(file_path: str) -> bool:\n    \"\"\"Check if file is a valid ART by magic bytes.\"\"\"\n    signature = bytes([0x4A, 0x47, 0x03, 0x0E])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isART(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x4A, 0x47, 0x03, 0x0E]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsART(data []byte) bool {\n    signature := []byte{0x4A, 0x47, 0x03, 0x0E}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"},"category":"Images"}}