Convert PCD to HDR

Drag and drop files here or click to select.
Max file size 100mb.
Uploading progress:

PCD vs HDR Format Comparison

AspectPCD (Source Format)HDR (Target Format)
Format Overview
PCD
Kodak Photo CD

Kodak's professional film scanning format introduced in 1992. PCD stores multiple resolution versions of the same image (from thumbnail to high-res) in a single file, scanned from 35mm or medium format film using Kodak's professional drum scanners with exceptional color accuracy and tonal depth.

Lossless Standard
HDR
Radiance RGBE High Dynamic Range

The Radiance RGBE format, created in 1985 by Greg Ward for the Radiance lighting simulation system. HDR stores pixel data as 32-bit floating point values per channel, enabling representation of luminance ranges far beyond standard displays — from deep shadows to brilliant highlights in a single image file.

Lossless Standard
Technical Specifications
Color Depth: 24-bit RGB (8-bit per channel, YCC color space)
Compression: Kodak proprietary (Huffman + chroma subsampling)
Transparency: Not supported
Animation: Not supported
Extensions: .pcd
Color Depth: 32-bit float per channel (RGBE encoding)
Compression: Run-length encoding (RLE)
Transparency: Not supported
Animation: Not supported
Extensions: .hdr, .pic
Image Features
  • Multi-Resolution: 5-6 resolutions from Base/16 to 64Base
  • YCC Color Space: Kodak's PhotoYCC for wide gamut film color
  • Film Scanning: Professional drum scanner quality
  • Resolution Levels: 192x128 to 6144x4096 pixels
  • Scene Balance: Automated exposure and color correction
  • Film Types: Supports all 35mm and medium format film
  • Dynamic Range: Virtually unlimited luminance range (32-bit float)
  • RGBE Encoding: RGB + shared exponent for compact HDR storage
  • Tone Mapping: Required for display on standard monitors
  • Linear Light: Stores physically accurate light values
  • Environment Maps: Standard format for IBL lighting
  • Scene-Referred: Preserves real-world luminance ratios
Processing & Tools

Reading PCD files with Pillow:

# Read Kodak Photo CD
from PIL import Image
img = Image.open("scan.pcd")
# Access highest resolution
rgb = img.convert("RGB")

Creating HDR files with imageio:

# Write Radiance HDR
import imageio
import numpy as np

# Convert to float32 for HDR
hdr_data = np.array(rgb).astype(np.float32) / 255.0
imageio.imwrite("output.hdr", hdr_data)
Advantages
  • Professional drum scanner quality from Kodak labs
  • Multiple resolutions in one file for flexible output
  • Wide gamut PhotoYCC color space preserves film colors
  • Excellent tonal range from professional scanning
  • Automated scene balancing and color correction
  • Preserves the character of original film stock
  • 32-bit floating point precision per channel
  • Stores real-world luminance values without clipping
  • Industry standard for 3D rendering and VFX
  • Compact RGBE encoding reduces file size
  • Perfect for environment maps and IBL lighting
  • Scene-referred data preserves physical accuracy
Disadvantages
  • Obsolete format — Kodak discontinued Photo CD service
  • Very limited modern software support
  • Proprietary compression makes archival uncertain
  • Maximum resolution limited by 1990s scanning technology
  • Not viewable in web browsers
  • Not displayable without tone mapping software
  • No browser support for direct viewing
  • No transparency or alpha channel
  • RGBE encoding has limited precision in dark areas
  • Larger files than standard 8-bit formats
Common Uses
  • Professional film scanning archives from the 1990s
  • Stock photography libraries on Photo CD
  • Corporate and government image archives
  • Publishing industry film scan collections
  • Historical and documentary photography archives
  • 3D rendering and CGI environment lighting (IBL)
  • Architectural visualization and lighting studies
  • HDR photography for tone mapping workflows
  • VFX compositing with scene-referred data
  • Scientific imaging requiring wide luminance range
Best For
  • Accessing legacy Kodak Photo CD archives
  • Recovering professional film scans from the 1990s
  • Stock photo libraries with PCD holdings
  • Film photography historians and archivists
  • 3D artists needing environment maps
  • HDR imaging and tone mapping pipelines
  • Architectural lighting simulation
  • VFX compositing with physically accurate light
Version History
Introduced: 1992 (Kodak)
Current Version: Photo CD (Pro Photo CD for medium format)
Status: Discontinued (Kodak ended service ~2004)
Evolution: Photo CD (1992) → Pro Photo CD (1993, medium format) → Portfolio CD (multimedia) → service discontinued
Introduced: 1985 (Greg Ward, Lawrence Berkeley Lab)
Current Version: Radiance RGBE (1991 standardized)
Status: Mature, industry standard for HDR
Evolution: Radiance (1985) → RGBE spec (1991) → OpenEXR alternative (2003) → still widely used
Software Support
Image Editors: Pillow, IrfanView, older Photoshop versions
Web Browsers: No browser support
OS Preview: No modern OS support
Mobile: No support
CLI Tools: Pillow, ImageMagick (limited), hpcdtoppm
Image Editors: Photoshop, GIMP, Luminance HDR, Photomatix
Web Browsers: No native browser support
OS Preview: Windows (HDR viewer), macOS (Preview limited)
Mobile: Specialized HDR apps only
CLI Tools: ImageMagick, Radiance, imageio, OpenCV

Why Convert PCD to HDR?

Converting PCD to HDR breathes new life into Kodak Photo CD film scans by storing their professional-grade color data in a modern 32-bit floating point format. Photo CD scans were produced on Kodak's high-end drum scanners with wide-gamut PhotoYCC color space, capturing tonal subtleties from the original film that many conversion targets would compress or lose. HDR format preserves these nuances at maximum precision.

Photo CD archives represent a significant body of professional photography from the 1990s — stock libraries, editorial photography, corporate archives, and personal collections were commonly stored on Photo CD. As PCD software support dwindles, converting to HDR ensures these valuable scans remain accessible while upgrading them to a format that modern tone mapping and compositing tools handle natively.

For VFX and 3D professionals, vintage Photo CD landscape and environment scans converted to HDR can serve as period-accurate lighting references or environment maps. The Kodak drum scanner quality captured film grain and tonal characteristics that give these images an authentic film look, valuable for historical VFX work or stylistic choices in contemporary production.

The conversion reads the highest resolution level from the multi-resolution PCD file, converts from Kodak's PhotoYCC color space to linear RGB, and stores the result in 32-bit RGBE encoding. The PhotoYCC color space actually captures a wider gamut than sRGB, and the HDR float format preserves this extended color range rather than clipping it to an 8-bit sRGB representation.

Key Benefits of Converting PCD to HDR:

  • Archive Rescue: Save Photo CD collections before software support disappears
  • Color Fidelity: Preserve PhotoYCC wide-gamut film colors in 32-bit float
  • Film Character: Maintain Kodak scanner quality and film stock characteristics
  • Modern Workflow: Use classic film scans in HDR tone mapping pipelines
  • 3D Lighting: Vintage scans become period-accurate environment maps
  • Long-Term Access: HDR format has broader support than obsolete PCD
  • Professional Quality: Kodak drum scanner data preserved at full precision

Practical Examples

Example 1: Stock Photo Library Migration

Scenario: A stock photography agency converts thousands of 1990s Photo CD scans to HDR for modern licensing and distribution.

Source: scenic_lake_4096.pcd (4.5 MB, 3072x2048, PhotoYCC)
Conversion: PCD → HDR (32-bit float RGBE)
Result: scenic_lake_4096.hdr (12 MB, 32-bit float per channel)

Migration workflow:
1. Read highest resolution from PCD multi-res container
2. Convert PhotoYCC to linear RGB preserving wide gamut
3. Store as HDR for tone mapping flexibility
✓ Classic film stock colors preserved in float precision
✓ Wide-gamut PhotoYCC data retained (not clipped to sRGB)
✓ Modern licensing tools can process HDR format
✓ Kodak drum scanner quality preserved for premium licensing

Example 2: Period-Accurate VFX Environment Maps

Scenario: A VFX studio converts 1990s Photo CD landscape scans to HDR for historically accurate lighting in a period film.

Source: city_street_1994.pcd (4.5 MB, 3072x2048, Kodachrome scan)
Conversion: PCD → HDR (32-bit float)
Result: city_street_1994.hdr (12 MB, scene-referred)

VFX workflow:
✓ Authentic 1994 city lighting captured on Kodachrome
✓ Film grain adds period-accurate texture to environment
✓ HDR format enables IBL in rendering engines
✓ Kodak color science gives distinctive warm film look
✓ Historical accuracy for CGI set extension matching

Example 3: Personal Film Archive Preservation

Scenario: A photographer rescues family Photo CD discs from the 1990s, converting PCD scans to HDR for modern editing and reprinting.

Source: family_vacation_1996.pcd (4.5 MB, 3072x2048)
Conversion: PCD → HDR (32-bit float RGBE)
Result: family_vacation_1996.hdr (12 MB, full tonal range)

Preservation workflow:
✓ Rescue images before Photo CD discs degrade
✓ HDR preserves full tonal range of drum scans
✓ Tone map to create enhanced prints from vintage scans
✓ Modern AI tools can upscale HDR for large format printing
✓ Family memories preserved in universally-readable format

Frequently Asked Questions (FAQ)

Q: What is the Kodak Photo CD format?

A: Kodak Photo CD (PCD) was a system introduced in 1992 for scanning photographic film negatives and slides onto compact discs. Each PCD file contains 5-6 resolution levels of the same image, from 192x128 thumbnail up to 6144x4096 pixels (Pro Photo CD). The images were scanned on Kodak's professional PIW (Photo Imaging Workstation) drum scanners.

Q: Why is PhotoYCC color space important for HDR conversion?

A: Kodak's PhotoYCC color space captures a wider gamut than sRGB, preserving saturated film colors that sRGB would clip. Converting to HDR's 32-bit float format retains this extended color range, whereas converting to 8-bit sRGB would permanently lose the out-of-gamut film colors that make Photo CD scans special.

Q: Which resolution level is used for HDR conversion?

A: Our converter extracts the highest available resolution from the PCD file — typically 3072x2048 (Base*16) for standard Photo CD or 6144x4096 (64Base) for Pro Photo CD. This gives you maximum detail from the original drum scan for HDR processing.

Q: Can Photo CD discs still be read?

A: Yes, standard CD/DVD drives can read Photo CD discs physically. The challenge is software — modern operating systems no longer include PCD reading capability. Our converter solves this: extract the PCD files from the disc using any file manager, then convert them to HDR online.

Q: Are Photo CD scans good enough for modern use?

A: Yes. Kodak's drum scanners produced excellent results that rival modern flatbed scans in many respects. The 3072x2048 resolution is suitable for prints up to approximately 10x7 inches at 300 DPI, and the tonal quality of Kodak's scanning process captured film characteristics faithfully.

Q: Is PCD to HDR conversion lossless?

A: The PCD data is decoded from Kodak's compression and the PhotoYCC color space is converted to linear RGB for HDR storage. The 32-bit float HDR format has more than enough precision to represent the original 8-bit-per-channel PCD data without any loss. The conversion actually upgrades the precision.

Q: What happened to Kodak Photo CD?

A: Kodak introduced Photo CD in 1992 as a bridge between film and digital. The service peaked in the mid-1990s and was gradually discontinued as digital cameras made film scanning less relevant. By 2004, most Kodak labs had stopped offering Photo CD services. Millions of Photo CD discs remain in personal and professional archives.

Q: Should I convert PCD to HDR or TIFF for archival?

A: For pure archival, 16-bit TIFF is the most universally supported choice. Use HDR when you specifically need the images for tone mapping, 3D lighting, or HDR display workflows. The HDR format's 32-bit float provides more headroom for processing, while TIFF offers broader compatibility with general-purpose image editing software.