Free webp to jpg
AOL-ART

AOL ART Image

image/x-jg Released 1994 · by Johnson-Grace Company (Acquired by AOL)

The image/x-jg MIME type represents the ART image format, a proprietary, highly compressed raster graphic format developed by the Johnson-Grace Company in the mid-1990s. America Online (AOL) acquired the company and integrated the format heavily into its dial-up service and custom web browsers. To save bandwidth over slow 14.4k and 56k modems, AOL proxy servers famously intercepted standard web JPEGs and GIFs and transcoded them on-the-fly into the .art format before sending them to users. While it provided exceptionally fast progressive loading, it was notorious for introducing heavy compression artifacts and is now completely obsolete.

Legacy & Proprietary Progressive Production Ready

Technical Specifications

MIME Type
image/x-jg
Extensions
.art
Container
Johnson-Grace Proprietary
Compression
Proprietary Wavelet (Photos) & Proprietary Palette-based (Graphics)
Algorithms
Wavelet (similar to early JPEG 2000 concepts)Lossy DCT
Color Depth
8-bit (Indexed), 24-bit (RGB)
Metadata
None
Capabilities
Transparency
Animation
Progressive Loading
Alpha Channel
HDR Support
Official Specification
Aliases: image/jgimage/artimage/x-art

Magic Bytes & HTTP Headers

File Signature (Magic Bytes)
4A 47 03 00 or 4A 47 04 00
ASCII: JG\x03\x00 or JG\x04\x00
HTTP Headers
Content-Type: image/x-jg
HTML Accept Attribute
accept="None"

Browser Support Matrix

Browser Status Min Version
Chrome Chrome
Not Supported
Firefox Firefox
Not Supported
Safari Safari
Not Supported
Edge Edge
Not Supported
Internet Explorer Internet Explorer
Not Supported Legacy

Advantages & Limitations

Advantages
  • Historically provided massive file size reductions (up to 3x smaller than JPEGs of the era) and highly optimized progressive rendering for 14.4k modems
  • Enabled faster web browsing on the AOL network during the early days of the commercial internet
Limitations
  • Completely proprietary, heavily patent-encumbered, and never officially reverse-engineered for the open-source community
  • On-the-fly proxy compression ruined the visual fidelity of many 1990s websites for AOL users
  • Virtually impossible to open on modern operating systems without installing niche, legacy image viewers

Developer Code Snippets

import magic
# Libmagic can often identify the Johnson-Grace header
print(magic.from_file('vintage.art', mime=True)) # May output 'image/x-jg' or generic 'application/octet-stream' depending on definitions
const fs = require('fs');
// Manually detecting the 'JG' magic bytes to differentiate from other .art files
const buffer = Buffer.alloc(2);
const fd = fs.openSync('vintage.art', 'r');
fs.readSync(fd, buffer, 0, 2, 0);
fs.closeSync(fd);
const isAolArt = buffer[0] === 0x4A && buffer[1] === 0x47; // 'J' and 'G'
console.log('Is AOL ART (Johnson-Grace):', isAolArt);
import (
    "bytes"
    "net/http"
)
// Native Go HTTP detection will not recognize the ART format.
// You must explicitly check for the 2-byte signature.
// isAolArt := bytes.HasPrefix(buf, []byte{0x4A, 0x47})
$mime = mime_content_type('vintage.art');
echo $mime; // Standard PHP setups will likely return 'application/octet-stream'. Custom magic.mime rules are required.

File Detection Steps

How to programmatically detect a image/x-jg file by reading its raw bytes:

  1. 1 Check the first two bytes for the 'JG' ASCII string (Hex: 4A 47), which stands for Johnson-Grace.
  2. 2 The following byte typically indicates the version format (e.g., 0x03 or 0x04).
  3. 3 Be aware that the '.art' extension is heavily overloaded and also used by older formats like PFS:Art, Ray Tracer, and Bernina embroidery files. Checking the magic bytes is critical.

Software Support

X
XnView
G
GraphicConverter (macOS)
A
AOL Desktop (Legacy)

Conversion Tools

Share & Embed

Markdown Badge
AOL-ART Format Badge
[![AOL-ART Format](https://freewebptojpg.com/mime/image/aol-art/badge.svg)](https://freewebptojpg.com/mime/image/aol-art)
Interactive iframe Widget
<iframe src="https://freewebptojpg.com/mime/image/aol-art/embed" width="100%" height="280" style="border:1px solid #cbd5e1;border-radius:8px;" title="AOL-ART Specs"></iframe>

JSON API

All data on this page is available as a free, open JSON API. Use it in your project, documentation, or tooling.

GET https://freewebptojpg.com/mime/image/aol-art.json Open JSON
Free to use
No auth required
CORS enabled
Use from any domain
Cached 24h
Cache-Control headers set

Frequently Asked Questions

What is an AOL ART (.art) file?

An ART file is a legacy, highly compressed image format developed by Johnson-Grace and used extensively by America Online (AOL) in the late 1990s and early 2000s to speed up web browsing over dial-up modems.

Why did AOL convert standard JPEGs to ART files?

During the dial-up era, bandwidth was severely limited. AOL used proxy servers to intercept web traffic and compress standard JPEGs and GIFs into the smaller .art format on-the-fly. This loaded pages much faster for users, though it notoriously degraded image quality.

How can I open or convert a legacy .art file today?

Because the format is proprietary and was never fully open-sourced, modern web browsers and standard image editors like Photoshop cannot open it. You must use specialized legacy software like XnView, GraphicConverter, or the original AOL Desktop software to view or convert them.

Related Formats

Share this format