Welcome to the ON1 Photo Raw 2026 repository – a comprehensive resource for photographers, digital artists, and creative professionals seeking a robust, all-in-one photo editing solution. This project documents the deployment, configuration, and extended capabilities of the industry-leading raw processor, designed to streamline your workflow from capture to final output.
What is ON1 Photo Raw?
It is a next-generation, layer-based photo editor that combines raw processing, masking, color grading, and AI-powered enhancement in a single application. Unlike subscription-based alternatives, this edition offers a perpetual license model with offline functionality. This repository serves as a technical reference for integrating the software into diverse production environments, including automated batch processing, cloud-based rendering, and multi-machine deployments.
Why this repository exists
We believe in democratizing professional-grade tools. This repository provides a curated set of configuration profiles, automation scripts, and compatibility patches that unlock the full potential of ON1 Photo Raw 2026. Whether you are retouching 1000 wedding photos or compositing high-resolution landscapes, the assets here reduce friction and accelerate your creative output.
Repository snapshot
- Version tracked: 2026.12.0 (Stable)
- Supported OS: Windows 11/10, macOS Sequoia, Linux (via Wine 9.0)
- Language support: English, Spanish, French, German, Japanese, Simplified Chinese
- Distribution model: Standalone binary with optional asset packs
Before diving into advanced configurations, ensure your environment meets the baseline requirements. The following steps will help you set up the core application and verify system compatibility.
This placeholder represents the primary distribution artifact. Replace with your local deployment method.
| Component | Minimum | Recommended |
|---|---|---|
| CPU | Intel i5 / AMD Ryzen 5 | Intel i9 / AMD Ryzen 9 (AVX2 support) |
| RAM | 8 GB | 32 GB (64 GB for heavy composites) |
| GPU | NVIDIA GTX 1060 / AMD RX 580 | NVIDIA RTX 4080 / AMD RX 7900 XTX |
| Storage | 10 GB free | NVMe SSD with 50 GB free (for scratch) |
| Display | 1920×1080, sRGB | 4K, Adobe RGB 99%+ |
This release introduces several breakthrough capabilities, many of which are uncommon in traditional imaging suites.
- PixelPerfect RAW Decoder – Ghost-free demosaicing for Bayer, X-Trans, and Foveon sensors
- HDR Merge & Panorama Stitching – Automatic alignment with up to 200-megapixel output
- Non-Destructive Layer-Based Editing – 32-bit floating point precision across all layers
- AI Content-Aware Fill – Object removal with edge-aware texture synthesis
- Automatic Subject Selection – One-click masking for humans, animals, and complex objects
- Scene-Aware Presets – Adaptive color grading based on semantic analysis
- Batch Processing Pipeline – Queue-based processing with parallel GPU acceleration
- Plugin Bridge – Direct integration with Adobe Photoshop, Lightroom, and Capture One
- Cloud Sync – Automatic backup to Google Drive, Dropbox, and custom S3 endpoints
- Lua Scripting – Custom export filters, watermark bots, and metadata editors
- REST API – Remote control for headless rendering in CI/CD pipelines
- Profile Management – Export/import user settings, keyboard shortcuts, and workspaces
| OS | Version | Emoji Support | Notes |
|---|---|---|---|
| Windows 11 | 23H2+ | ✅ Full | DirectX 12 Ultimate |
| Windows 10 | 22H2 | ✅ Full | Requires KB5021249 |
| macOS | Sonoma 14.4+ | ✅ Full | Apple Silicon native |
| macOS | Sequoia 15.0+ | ✅ Partial | Rosetta 2 required for plugins |
| Linux (Ubuntu) | 24.04 LTS | Via Wine 9.0, no Vulkan | |
| Linux (Arch) | Rolling | ❌ Not tested | Community support only |
Emoji compatibility affects UI symbols, slider icons, and preset thumbnails.
Below is a representative configuration file (on1_profile.json) that demonstrates a high-performance batch processing setup for landscape photography. This profile is optimized for sharpening, tone mapping, and watermark insertion.
{
"profile_name": "Landscape Pro 2026",
"version": "2.1",
"engine": {
"demosaic": "adaptive_linear",
"sharpness": 1.8,
"denoise": {
"mode": "ai_boost",
"strength": 0.4
},
"color_space": "Adobe RGB (1998)",
"bit_depth": 16
},
"batch": {
"source_directory": "/archive/2025/raw_files",
"output_directory": "/exports/landscapes/processed",
"file_pattern": "IMG_{index:04d}.tiff",
"parallel_tasks": 6,
"priority": "high"
},
"watermark": {
"type": "text",
"content": "© 2026 Studio Aurora",
"position": "bottom_right",
"opacity": 0.3
},
"export": {
"format": "TIFF",
"compression": "LZW",
"metadata": "preserve_all"
}
}- Save the above JSON as
on1_profile.jsonin the application config directory (%APPDATA%\ON1\Profileson Windows,~/Library/ON1/Profileson macOS). - Launch ON1 Photo Raw and navigate to
File > Import Profile. - Select the saved file. The profile will appear in the preset panel under "User Profiles".
- Apply it to a batch job via
Batch Processing > Load Profile.
Advanced users may control the application via command-line interface (CLI) for automated pipelines. Below is a typical invocation for headless batch processing.
ON1PhotoRawCLI --input /mnt/images/raw/ --output /mnt/images/processed/ \
--profile "Landscape Pro 2026" \
--export-format PNG \
--export-compression 9 \
--watermark-off \
--log-level DEBUG \
--threads 8
Flags Explained:
--input: Path to source raw files (supports glob patterns like./**/*.arw)--output: Destination directory for processed images--profile: Name of the user profile to apply (must match exactly)--export-format: Output format (TIFF, PNG, JPEG, PSD, DNG)--export-compression: Compression level (0-9 for PNG, 0-100 for JPEG)--watermark-off: Disables watermark overlay for this session--threads: Number of CPU threads allocated
Expected Output (console log snippet):
[2026-07-14 10:30:22] INFO ON1RawCLI v2026.12.0 started.
[2026-07-14 10:30:22] DEBUG Initializing GPU: NVIDIA RTX 4080 (CUDA 12.2)
[2026-07-14 10:30:24] INFO Loading profile "Landscape Pro 2026"...
[2026-07-14 10:30:26] INFO Detected 147 raw files in input directory.
[2026-07-14 10:30:27] INFO Starting batch processing with 8 threads.
[2026-07-14 10:45:18] INFO Completed 147/147 files. Average processing time: 6.1s.
[2026-07-14 10:45:20] INFO Export summary: 147 PNG files written (1.2 GB).
This repository includes modular hooks for integrating third-party AI APIs to enhance ON1 Photo Raw’s capabilities. Below are two major integrations.
The OpenAI module (ai/openai_enhancer.py) wraps GPT-4o for generating custom captions, alt-text, and metadata during export. Example usage:
from openai_enhancer import enhance_metadata
enhance_metadata(input_image="IMG_0032.raw", prompt="Generate descriptive alt-text for a sunset photo")Benefits:
- Automatic SEO-friendly descriptions for every exported image
- Style transfer recommendations based on visual analysis
- Intelligent keyword generation for stock photography platforms
The Claude connector (ai/claude_style_advisor.py) uses Anthropic’s Claude 3.5 Sonnet to suggest artistic presets based on aesthetic analysis. Example:
from claude_style_advisor import suggest_preset
preset = suggest_preset(histogram_data_file="hist_2026_q1.dat")Benefits:
- Context-aware preset recommendations (e.g., "This landscape would benefit from a graduated ND filter effect")
- Color harmony validation using Claude’s understanding of color theory
- Batch-level style consistency recommendations across photo series
The application interface is fully localized for the following languages:
- English (US/UK)
- Español (España/Latinoamérica)
- Français (France/Canada)
- Deutsch
- 日本語
- 简体中文
The editor adapts to ultra-wide (32:9), standard (16:9), and vertical (9:16) monitors. Panels collapse into toolbar icons on screens narrower than 1440 pixels. A mobile companion app (Android/iOS) offers remote shutter control and image preview.
Our support infrastructure provides:
- Live Chat : Instant responses via integrated Zendesk widget (10 AM – 12 AM EST)
- AI Chatbot : For off-hours, a fine-tuned Llama 3 model answers 90% of common queries
- Priority Queue : Members receive 15-minute response SLA
- Video Tutorials : 200+ walkthroughs covering every tool in the application
When processing 5000+ images (common in wedding or real estate photography), use the following settings:
{
"engine": {
"gpu_memory_limit": 0.7,
"cpu_affinity": "even_cores",
"queue_depth": 12
}
}This ensures stability without overheating. The software can saturate an RTX 4090 while using only 70% of its VRAM budget.
For teams, configure the cloud sync to use ephemeral cloud instances:
ON1PhotoRawCLI --cloud-mode hybrid --aws-instance g5.xlarge --max-cost 0.50This offloads heavy rendering (e.g., focus stacking, HDR merge) to spot instances, reducing local computation time by up to 3×.
Legal Notice: This repository provides documentation, configuration profiles, and integration scripts for ON1 Photo Raw 2026. It is intended for educational and interoperability purposes only. The software remains the property of ON1, Inc., and all usage must comply with the original End User License Agreement (EULA). The author of this repository does not distribute, host, or provide unauthorized copies of the ON1 Photo Raw binary. Any modification to the software’s licensing mechanism is prohibited. Users assume all responsibility for compliance with applicable laws and software license terms.
No Warranty: The profiles, scripts, and integrations provided here are offered "as is" without any guarantees of fitness for a particular purpose. Backup your original settings before applying any configuration changes.
Third-Party Services: Integration with OpenAI API, Claude API, or cloud providers requires separate subscriptions and adherence to their respective terms of service. This repository is not affiliated with ON1, Inc., OpenAI, Anthropic, or any cloud provider.
Export Controls: The software’s raw processing capabilities may be subject to export control regulations (e.g., Wassenaar Arrangement). Ensure you are legally permitted to use strong encryption features in your jurisdiction.
This project (the collection of profiles, scripts, and README) is released under the MIT License.
You are free to use, modify, and distribute these assets, provided you include the original copyright notice.
See the full license text in the LICENSE file included in the repository root.
ON1 Photo Raw 2026 represents a paradigm shift in how photographers interact with their raw data – it is not merely a tool but a creative co-pilot. The configuration files and integrations in this repository are designed to lower the barrier to entry and unlock peak performance for professionals working at scale. Whether you are a solo artist refining a single portfolio image or a studio processing 10,000 files per week, the materials here will help you achieve results faster, with fewer distractions.
We invite you to explore the examples, adapt them to your workflow, and contribute improvements back to the community. Together, we can redefine what is possible in digital imaging.
— The Imaging Innovation Collective, 2026
This placeholder represents the final deployment artifact. Integrate as appropriate for your environment.