Convert PSD to HDR

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

PSD vs HDR Format Comparison

AspectPSD (Source Format)HDR (Target Format)
Format Overview
PSD
Adobe Photoshop Document

Adobe's native layered image format used by Photoshop and widely supported across the creative industry. PSD stores the complete editing state including layers, masks, adjustment layers, smart objects, blend modes, and text — making it the standard working format for professional photo editing and digital art creation.

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: 8-bit, 16-bit, or 32-bit per channel
Compression: RLE or uncompressed (per layer)
Transparency: Full alpha and layer masks
Animation: Timeline animation (video layers)
Extensions: .psd, .psb (large)
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
  • Layers: Unlimited layers with blend modes and opacity
  • Masks: Layer masks, vector masks, clipping masks
  • Smart Objects: Non-destructive embedded content
  • Adjustment Layers: Curves, levels, color balance, etc.
  • Text Layers: Editable vector text with formatting
  • Color Modes: RGB, CMYK, Lab, Grayscale, Multichannel
  • 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 PSD files with Pillow (flattened composite):

# Read PSD flattened composite
from PIL import Image
img = Image.open("design.psd")
# Pillow reads the merged composite
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
  • Industry standard for professional image editing
  • Preserves complete editing state with layers and masks
  • Supports 32-bit per channel for HDR editing in Photoshop
  • Smart Objects for non-destructive workflow
  • CMYK support for print production
  • Extensive tool and plugin ecosystem
  • 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
  • Proprietary Adobe format
  • Very large file sizes (hundreds of MB for complex projects)
  • Full layer editing requires Adobe Photoshop
  • 2 GB file size limit (PSB required for larger)
  • Complex format structure — limited third-party support
  • 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 photo retouching and compositing
  • Digital art and illustration creation
  • Web and UI design mockups
  • Print production and prepress
  • Photography editing and color grading
  • 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
  • Professional photo editors and retouchers
  • Digital artists and illustrators
  • Web and UI designers
  • Print production professionals
  • 3D artists needing environment maps
  • HDR imaging and tone mapping pipelines
  • Architectural lighting simulation
  • VFX compositing with physically accurate light
Version History
Introduced: 1990 (Adobe Photoshop 1.0)
Current Version: PSD (Photoshop CC 2026)
Status: Active, continuously updated
Evolution: PS 1.0 (1990) → PS 7 (2002) → CS (2003) → CC (2013) → CC 2026
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: Photoshop, GIMP, Affinity Photo, Krita
Web Browsers: No browser support
OS Preview: Windows/macOS native preview (flattened)
Mobile: Photoshop for iPad
CLI Tools: Pillow, ImageMagick, psd-tools
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 PSD to HDR?

Converting PSD to HDR flattens a Photoshop document into a single-layer Radiance HDR file, making the composite image available for 3D rendering, VFX compositing, and HDR tone mapping workflows. This is valuable when Photoshop-created content — retouched photographs, matte paintings, composited scenes — needs to serve as environment maps, lighting references, or texture inputs in HDR production pipelines.

For matte painters creating digital environments in Photoshop, PSD to HDR conversion is a critical step in delivering assets to VFX pipelines. A sky replacement or environment extension painted in Photoshop needs to match the float precision of the HDR footage it will be composited with. Converting the PSD to HDR ensures consistent color space and precision throughout the compositing chain.

Product photographers who edit in Photoshop can convert their retouched PSD files to HDR for use as lighting reference in 3D product visualization. The retouched studio image, when converted to HDR, can light CGI versions of the same product — ensuring visual consistency between photographed hero shots and computer-generated product variants shown in different colors or configurations.

The conversion reads the PSD's flattened composite image (all layers merged), converts to linear RGB color space, and outputs 32-bit float RGBE. Layer information, masks, and adjustment layers are not preserved in the HDR output — it captures the final visual result. For PSD files saved with 16-bit or 32-bit depth in Photoshop, the conversion preserves the higher precision data.

Key Benefits of Converting PSD to HDR:

  • VFX Delivery: Flatten matte paintings for HDR compositing pipelines
  • 3D Lighting: Use retouched photos as IBL environment maps
  • Pipeline Integration: Bridge Photoshop workflows with HDR production
  • Compact Output: Reduce PSD file sizes by removing layer overhead
  • Float Precision: Store composite at 32-bit for downstream processing
  • Cross-Software: HDR opens in renderers, Nuke, and analysis tools
  • Product Viz: Create lighting references from retouched product shots

Practical Examples

Example 1: Matte Painting for VFX Compositing

Scenario: A matte painter converts a Photoshop environment painting to HDR for integration into a Nuke compositing pipeline for a feature film.

Source: dystopian_cityscape.psd (450 MB, 8K, 16-bit, 85 layers)
Conversion: PSD → HDR (32-bit float RGBE)
Result: dystopian_cityscape.hdr (65 MB, flattened composite)

VFX workflow:
1. Matte painter completes environment in Photoshop
2. Convert PSD to HDR for float-precision compositing
3. Load into Nuke as background plate for CG integration
✓ 450 MB PSD reduced to 65 MB HDR delivery file
✓ Float precision matches HDR camera footage
✓ All layer effects baked into final composite
✓ Color-accurate for on-set LED wall display

Example 2: Product Photography Lighting Reference

Scenario: A product photographer converts retouched PSD studio shots to HDR for use as environment maps in 3D product configurator renders.

Source: luxury_watch_retouched.psd (180 MB, 50 MP, 16-bit)
Conversion: PSD → HDR (32-bit float)
Result: luxury_watch_retouched.hdr (42 MB, scene-referred)

Product visualization:
✓ Studio lighting from photo matches 3D renders exactly
✓ Retouched reflections consistent across photo and CGI
✓ HDR format compatible with V-Ray product renderer
✓ Multiple watch variants rendered with identical lighting
✓ Seamless transition between photographed and CG content

Example 3: Digital Art for HDR Display Exhibition

Scenario: A digital artist converts layered Photoshop artwork to HDR for display on HDR gallery monitors at an art exhibition.

Source: abstract_light_series_04.psd (320 MB, 4K, 8-bit, 120 layers)
Conversion: PSD → HDR (32-bit float RGBE)
Result: abstract_light_series_04.hdr (25 MB, float precision)

Exhibition workflow:
✓ Complex layer effects rendered to final composite
✓ HDR display reveals light effects beyond sRGB range
✓ Compact file size for gallery playback systems
✓ Professional display software supports HDR natively
✓ Artist's light-themed work benefits from HDR brightness

Frequently Asked Questions (FAQ)

Q: Are Photoshop layers preserved in the HDR output?

A: No. The HDR format does not support layers. The conversion reads the PSD's flattened composite — the merged result of all visible layers — and stores it as a single HDR image. If you need to preserve layers, keep the original PSD alongside the HDR export.

Q: What about 32-bit PSD files?

A: Photoshop can create 32-bit-per-channel PSD files for HDR editing. When converting these to Radiance HDR, the full 32-bit precision is preserved. This is the ideal scenario — a 32-bit PSD contains actual HDR data with values above 1.0 that the Radiance format stores natively.

Q: Why not just export HDR from Photoshop directly?

A: Photoshop can save Radiance HDR files directly (File > Save As > Radiance), but our online converter is useful when: you don't have Photoshop installed, you receive PSD files from others, you need batch conversion, or you want a quick conversion without launching a full application.

Q: Is the alpha channel from PSD preserved?

A: No. Radiance HDR does not support alpha channels. The conversion produces an opaque RGB image. If you need HDR with transparency, consider OpenEXR format, which supports both floating point precision and alpha channels.

Q: How large can the source PSD be?

A: Our converter handles standard PSD files up to 2 GB (the PSD format limit). For larger files, Adobe uses the PSB (Large Document Format) which supports up to 4 exabytes. The converted HDR file will be much smaller since it only contains the flattened composite without layer data.

Q: Can CMYK PSD files be converted to HDR?

A: Yes. The conversion reads the PSD composite and converts from CMYK to RGB color space before creating the HDR file. Note that CMYK-to-RGB conversion may shift some colors, especially in saturated blues and greens, as the CMYK gamut differs from RGB.

Q: What PSD features affect the HDR output quality?

A: The PSD's bit depth has the most impact: 8-bit PSD produces standard-quality HDR, 16-bit produces smoother gradients, and 32-bit preserves true HDR data. Layer blend modes, adjustment layers, and filters are baked into the composite and don't affect the conversion process itself.

Q: Can I convert PSB (Large Document Format) to HDR?

A: Our converter is optimized for standard PSD files. PSB files (used when dimensions exceed 30,000 pixels or file size exceeds 2 GB) may require conversion to standard PSD first, or use of desktop tools like Photoshop or ImageMagick for the PSB-to-HDR conversion.