function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
hgarghgarg 

Rendering rich content on pdf

I created a visualforce page with option renderas="pdf" and contentType="application/pdf" . This page is displays a rich text content in pdf format. While the richText content does not have any images it works good but if it has images then the images does not render properly, they are blurring.

 

Code is like following :

<apex:page contentType="application/pdf" renderas="pdf" >

<apex:outText value="{!obj__c.richText__c}" />

</apex:page>

 

is there any trick to render images properly in pdf? thanks in advance for any help.

 

Pradeep_NavatarPradeep_Navatar

Is that image externally available? Externally available images render properly in pdf.

PatcsPatcs

Hi hgarg

 

Did you find any solution for this, i am also facing the same issue, Image is not displayed in PDF.

 

 

Thanks!!!!