3.3 Pictures

In the binary large image or picture (BLIP) element ([ISO/IEC29500-1:2016] section 20.1.8.13) is an extension list that enables applications to store the original image and processing parameters for corrections and artistic effects applied to a picture. The following code example shows the XML specifying that an artistic effect, sharpen and soften effect, color temperature effect, saturation effect, and brightness and contrast effect are applied to a picture.

The part specified by the relationship rId2 of the blip element is embedded. (This does not apply to linked BLIPs.) This bitmap is the result of performing operations on the original image specified by the related part rId3 in JPEG XR format. (This does not apply to metafile BLIPs.)

 <a:blip r:embed="rId2">
     <a:extLst>
         <a:ext uri="BEBA8EAE-BF5A-486c-A8C5-ECC9F3942E4B">
             <a14:imgProps xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main">
                 <a14:imgLayer r:embed="rId3">
                     <a14:imgEffect>
                         <a14:artisticLineDrawing trans="75000" pencilSize="15"/>
                     </a14:imgEffect>
                     <a14:imgEffect>
                         <a14:sharpenSoften amount="25000"/>
                     </a14:imgEffect>
                     <a14:imgEffect>
                         <a14:colorTemperature colorTemp="7200"/>
                     </a14:imgEffect>
                     <a14:imgEffect>
                         <a14:saturation sat="200000"/>
                     </a14:imgEffect>
                     <a14:imgEffect>
                         <a14:brightnessContrast bright="20000" contrast="-20000"/>
                     </a14:imgEffect>
                 </a14:imgLayer>
             </a14:imgProps>
         </a:ext>
         <a:ext uri="28A0092B-C50C-407e-A947-70E740481C1C">
             <a14:useLocalDpi xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main" val="0"/>
         </a:ext>
     </a:extLst>
 </a:blip>