<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Ultra HDR formatted JPEG workflow from RAW in Camera Software</title>
    <link>https://community.usa.canon.com/t5/Camera-Software/Ultra-HDR-formatted-JPEG-workflow-from-RAW/m-p/493349#M20614</link>
    <description>&lt;P&gt;Does anyone have a workflow to go from CR3 to gain mapped jpeg? This would produce jpegs that will display HDR on compatible hardware with the chrome browser:&amp;nbsp;&lt;A href="https://developer.android.com/media/platform/hdr-image-format" target="_blank" rel="noopener"&gt;https://developer.android.com/media/platform/hdr-image-format&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I don't see a way to do it in DPP or in darktable.&lt;/P&gt;&lt;P&gt;My R5 can save images as HEIF, however they're not compatible with Google Photos, and DPP has limited ability to edit it (Most of the usual sliders are inoperable). I'd prefer to make edits on the RAW source, and export to a format usable in web browsers both in SDR and HDR, and the gain mapped jpeg format seems to fit that.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Aug 2024 00:49:15 GMT</pubDate>
    <dc:creator>rborkows</dc:creator>
    <dc:date>2024-08-14T00:49:15Z</dc:date>
    <item>
      <title>Ultra HDR formatted JPEG workflow from RAW</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Ultra-HDR-formatted-JPEG-workflow-from-RAW/m-p/493349#M20614</link>
      <description>&lt;P&gt;Does anyone have a workflow to go from CR3 to gain mapped jpeg? This would produce jpegs that will display HDR on compatible hardware with the chrome browser:&amp;nbsp;&lt;A href="https://developer.android.com/media/platform/hdr-image-format" target="_blank" rel="noopener"&gt;https://developer.android.com/media/platform/hdr-image-format&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I don't see a way to do it in DPP or in darktable.&lt;/P&gt;&lt;P&gt;My R5 can save images as HEIF, however they're not compatible with Google Photos, and DPP has limited ability to edit it (Most of the usual sliders are inoperable). I'd prefer to make edits on the RAW source, and export to a format usable in web browsers both in SDR and HDR, and the gain mapped jpeg format seems to fit that.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2024 00:49:15 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Ultra-HDR-formatted-JPEG-workflow-from-RAW/m-p/493349#M20614</guid>
      <dc:creator>rborkows</dc:creator>
      <dc:date>2024-08-14T00:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Ultra HDR formatted JPEG workflow from RAW</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Ultra-HDR-formatted-JPEG-workflow-from-RAW/m-p/494423#M20641</link>
      <description>&lt;P&gt;So far as I can understand, Canon DPP enforces the standard when doing HDR PQ with the result that many sliders are not available.&lt;/P&gt;
&lt;P&gt;PQ portion of standard:&amp;nbsp;&lt;A href="https://en.wikipedia.org/wiki/Perceptual_quantizer" target="_self"&gt;https://en.wikipedia.org/wiki/Perceptual_quantizer&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other portion of the standard:&amp;nbsp;&lt;A href="https://en.wikipedia.org/wiki/Rec._2100" target="_blank"&gt;https://en.wikipedia.org/wiki/Rec._2100 &lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Source code is at:&amp;nbsp;&lt;A href="https://github.com/google/libultrahdr" target="_self"&gt;https://github.com/google/libultrahdr&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are two competing standards for HDR which means that for me neither is very useful. My television and my android phone each use one of the standards but not the other. The HDR PQ from a Canon camera or from Canon DPP works well on the television because it is also used in video. The android one works in chrome browser. The HDR PQ HIF works in Apple photos and Safari.&lt;/P&gt;
&lt;P&gt;I have also built the Google jpegli from source and use that on my Debian Linux machine.&amp;nbsp;&lt;A href="https://github.com/libjxl/libjxl/tree/main/lib/jpegli" target="_self"&gt;https://github.com/libjxl/libjxl/tree/main/lib/jpegli&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have built libraw from source and sometimes use that.&lt;/P&gt;
&lt;P&gt;I use the exiftool and graphicsmagick in the Debian Stable distribution.&lt;/P&gt;
&lt;P&gt;Here is my one of my attempts at creating such a work flow as you request:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;/home/jrm/src/LibRaw-0.21.2/bin/dcraw_emu -v -disinterp -T -6  IMG_9590.CR3 
gm convert IMG_9590.CR3.tiff  -depth 16 IMG_9590.png
/home/jrm/src/libjxl/build2/tools/cjpegli -v IMG_9590.png   IMG_9590.jpeg
exiftool IMG_9590.jpeg -ICC_Profile'&amp;lt;='pq.icc
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;#add icc profile to png file
/home/jrm/src/libjxl/build/tools/decode_and_encode  IMG_8539c_test.png24 RGB_D65_202_Rel_PeQ  junk.png 
#extract icc profile to separate file
gm convert junk.png pq.icc
#create 16 bit png from HIF that Canon DPP had saved
gm convert ../2024Jan20/IMG_8539c.HIF -depth 16 IMG_8539c_test2.png
#use cjpegli to create jpeg
/home/jrm/src/libjxl/build2/tools/cjpegli -v IMG_8539c_test2.png  IMG_8539cli3.jpeg
#add icc file
exiftool IMG_8539cli3.jpeg -ICC_Profile'&amp;lt;='pq.icc
# i cannot remember whether this next command line did what I had hoped
/home/jrm/src/libjxl/build2/tools/cjpegli -v -x icc_pathname=pq.icc -x color_space=RGB_D65_202_Rel_PeQ IMG_8539c_test2.png  IMG_8539cli3.jpeg 
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2024 16:36:47 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Ultra-HDR-formatted-JPEG-workflow-from-RAW/m-p/494423#M20641</guid>
      <dc:creator>johnrmoyer</dc:creator>
      <dc:date>2024-08-18T16:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Ultra HDR formatted JPEG workflow from RAW</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Ultra-HDR-formatted-JPEG-workflow-from-RAW/m-p/583780#M24539</link>
      <description>&lt;P&gt;Try this Android application&amp;nbsp;&lt;A href="https://play.google.com/store/apps/details?id=com.myvnc.eal.cr3toultrahdrconverter" target="_blank"&gt;https://play.google.com/store/apps/details?id=com.myvnc.eal.cr3toultrahdrconverter&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Jan 2026 10:39:08 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Ultra-HDR-formatted-JPEG-workflow-from-RAW/m-p/583780#M24539</guid>
      <dc:creator>vshevko</dc:creator>
      <dc:date>2026-01-24T10:39:08Z</dc:date>
    </item>
  </channel>
</rss>

