This is a migrated thread and some comments may be shown as answers.

Image in header not exported to PDF

4 Answers 58 Views
RichTextBox
This is a migrated thread and some comments may be shown as answers.
yiping
Top achievements
Rank 1
yiping asked on 12 Jul 2016, 02:45 PM
Any picture inserted in header section are not shown when it's exported to pdf using PdfFormatProvider. Is there any solution?

4 Answers, 1 is accepted

Sort by
0
yiping
Top achievements
Rank 1
answered on 13 Jul 2016, 03:44 PM

Ok. I have figured it out. It seems like this issue related with dispatcher.

RadDocument doc =  XamlFormatProvider.Import(XamlFormatProvider.Export(radDocument));

Dispatcher.Invoke(new Action(()=>{ PdfFormatProveider.Export(doc, stream); }), DispatcherPriority.Normal);

In these code, the images in header are not exported to pdf, but in the following code, they will. And this issue doesn't exist in word exporting.

Dispatcher.Invoke(new Action(()=>{

RadDocument doc =  XamlFormatProvider.Import(XamlFormatProvider.Export(radDocument));

PdfFormatProveider.Export(doc, stream);

}), DispatcherPriority.Normal);

Any explaintion of these things?

0
Boby
Telerik team
answered on 15 Jul 2016, 10:55 AM
Hello yiping,

What's in the "radDocument" instance? If the document contains images with UriSource set, this is known issue - the problem is that the images are always loaded asynchronously, and at the moment of the export they are still not loaded. You can vote for and subscribe for the item in our public portal here:
When loading images from UriSource, there is no way to tell when the images have been loaded

Your workaround works as it gives the asynchronous calls enough time to finish and load the images.

Can you confirm that this is the problem? If this is not the case, could you please open support ticket and send us the problematic document, so that we can investigate it further?

Regards,
Boby
Telerik by Progress
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.
0
yiping
Top achievements
Rank 1
answered on 15 Jul 2016, 12:57 PM

<t:RadDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:t="clr-namespace:Telerik.Windows.Documents.Model;assembly=Telerik.Windows.Documents" xmlns:s="clr-namespace:Telerik.Windows.Documents.Model.Styles;assembly=Telerik.Windows.Documents" xmlns:r="clr-namespace:Telerik.Windows.Documents.Model.Revisions;assembly=Telerik.Windows.Documents" xmlns:n="clr-namespace:Telerik.Windows.Documents.Model.Notes;assembly=Telerik.Windows.Documents" xmlns:th="clr-namespace:Telerik.Windows.Documents.Model.Themes;assembly=Telerik.Windows.Documents"  version="1.4" LayoutMode="Paged" LineSpacing="1" LineSpacingType="Auto" ParagraphDefaultSpacingAfter="0" ParagraphDefaultSpacingBefore="0" SectionDefaultPageSize="816,1056" StyleName="defaultDocumentStyle">
  <t:RadDocument.Captions>
    <t:CaptionDefinition IsDefault="True" IsLinkedToHeading="False" Label="Figure" LinkedHeadingLevel="0" NumberingFormat="Arabic" SeparatorType="Hyphen" />
    <t:CaptionDefinition IsDefault="True" IsLinkedToHeading="False" Label="Table" LinkedHeadingLevel="0" NumberingFormat="Arabic" SeparatorType="Hyphen" />
  </t:RadDocument.Captions>
  <t:RadDocument.ProtectionSettings>
    <t:DocumentProtectionSettings EnableDocumentProtection="True" Enforce="True" HashingAlgorithm="SHA1" HashingSpinCount="100000" PasswordHash="I9RxDtXIHnP4iQgLWUe5VDbcSEM=" ProtectionMode="ReadOnly" Salt="lHVaT2YOFavakLJ+RvLDkQ==" />
  </t:RadDocument.ProtectionSettings>
  <t:RadDocument.Styles>
    <s:StyleDefinition DisplayName="Document Default Style" IsCustom="False" IsDefault="False" IsPrimary="True" Name="defaultDocumentStyle" Type="Default">
      <s:StyleDefinition.ParagraphStyle>
        <s:ParagraphProperties LineSpacing="1" LineSpacingType="Auto" SpacingAfter="0" SpacingBefore="0" />
      </s:StyleDefinition.ParagraphStyle>
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Times New Roman" FontSize="14.67" FontStyle="Normal" FontWeight="Normal" />
      </s:StyleDefinition.SpanStyle>
    </s:StyleDefinition>
    <s:StyleDefinition DisplayName="Heading 1" IsCustom="True" IsDefault="False" IsPrimary="True" Name="Heading1" Type="Paragraph" UIPriority="9">
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Times New Roman" FontSize="21.3333333333333" FontWeight="Bold" />
      </s:StyleDefinition.SpanStyle>
    </s:StyleDefinition>
    <s:StyleDefinition DisplayName="Heading 2" IsCustom="True" IsDefault="False" IsPrimary="True" Name="Heading2" Type="Paragraph" UIPriority="9">
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Times New Roman" FontSize="16" FontWeight="Bold" />
      </s:StyleDefinition.SpanStyle>
    </s:StyleDefinition>
    <s:StyleDefinition DisplayName="Normal" IsCustom="True" IsDefault="False" IsPrimary="True" Name="Normal" Type="Paragraph" UIPriority="0">
      <s:StyleDefinition.ParagraphStyle>
        <s:ParagraphProperties TextAlignment="Justify" />
      </s:StyleDefinition.ParagraphStyle>
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Times New Roman" FontSize="14.6666666666667" />
      </s:StyleDefinition.SpanStyle>
    </s:StyleDefinition>
    <s:StyleDefinition BasedOnName="TableNormal" DisplayName="TableGrid" IsCustom="False" IsDefault="False" IsPrimary="True" Name="TableGrid" Type="Table" UIPriority="59">
      <s:StyleDefinition.ParagraphStyle>
        <s:ParagraphProperties LineSpacing="1" SpacingAfter="0" />
      </s:StyleDefinition.ParagraphStyle>
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Times New Roman" FontSize="14.67" />
      </s:StyleDefinition.SpanStyle>
      <s:StyleDefinition.TableStyle>
        <s:TableProperties Borders="1,None,#FF000000,none,,">
          <s:TableProperties.TableLook>
            <t:TableLook />
          </s:TableProperties.TableLook>
        </s:TableProperties>
      </s:StyleDefinition.TableStyle>
    </s:StyleDefinition>
    <s:StyleDefinition DisplayName="TableNormal" IsCustom="False" IsDefault="True" IsPrimary="True" Name="TableNormal" Type="Table" UIPriority="59">
      <s:StyleDefinition.ParagraphStyle>
        <s:ParagraphProperties LineSpacing="1" SpacingAfter="0" />
      </s:StyleDefinition.ParagraphStyle>
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Times New Roman" FontSize="14.67" />
      </s:StyleDefinition.SpanStyle>
    </s:StyleDefinition>
  </t:RadDocument.Styles>
  <t:Section>
    <t:Section.Headers>
      <t:Headers>
        <t:Headers.Default>
          <t:Header IsLinkedToPrevious="False">
            <t:Header.Body>
              <t:RadDocument LayoutMode="Flow" LineSpacing="1" LineSpacingType="Auto" ParagraphDefaultSpacingAfter="0" ParagraphDefaultSpacingBefore="0" SectionDefaultPageSize="816,1056" SelectedBibliographicStyleName="\APA.XSL" StyleName="defaultDocumentStyle">
                <t:RadDocument.ProtectionSettings>
                  <t:DocumentProtectionSettings EnableDocumentProtection="True" Enforce="True" HashingAlgorithm="SHA1" HashingSpinCount="100000" PasswordHash="I9RxDtXIHnP4iQgLWUe5VDbcSEM=" ProtectionMode="ReadOnly" Salt="lHVaT2YOFavakLJ+RvLDkQ==" />
                </t:RadDocument.ProtectionSettings>
                <t:Section FirstPageNumber="1">
                  <t:Paragraph>
                    <t:ImageInline Extension="png" Height="42" RawData="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" Width="300" />
                  </t:Paragraph>
                </t:Section>
              </t:RadDocument>
            </t:Header.Body>
            <t:Header.WatermarkSettings>
              <t:DocumentWatermarkSettings Type="NoWatermark" />
            </t:Header.WatermarkSettings>
          </t:Header>
        </t:Headers.Default>
      </t:Headers>
    </t:Section.Headers>
    <t:Paragraph StyleName="Normal">

      <t:Span Text="asdfasdfsdfasd" />
    </t:Paragraph>
  </t:Section>
</t:RadDocument>

 

 

Here is the radDocument, the image is saved as rawdata.

0
Boby
Telerik team
answered on 20 Jul 2016, 11:59 AM
Hello yiping,

I am unable to reproduce the issue. Here is the code I tested with:
RadDocument doc = new XamlFormatProvider().Import(File.ReadAllBytes(@"c:\temp\xaml.xaml"));
File.WriteAllBytes(@"c:\temp\xaml.pdf", new PdfFormatProvider().Export(doc));

and the image in the header is exported as expected.

Regards,
Boby
Telerik by Progress
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.
Tags
RichTextBox
Asked by
yiping
Top achievements
Rank 1
Answers by
yiping
Top achievements
Rank 1
Boby
Telerik team
Share this question
or