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
chandra2ravichandra2ravi 

Image problem in pdf generation

HI All,

 

Location__c=http://www.developerforce.com/assets/developerforcesite/developerforce_home/images/developerforce_logo.png

 

 

<apex:repeat value="{!bigphoto}" var="big">
<tr>
<td>{!big.Location__c}"</td>
</tr>
</apex:repeat>

 

<apex:repeat value="{!bigphoto}" var="big">

 <tr> <td>{!big.Location__c}"</td> </tr>

 </apex:repeat>

 

pdf is not generating and throw error not valid  markup

 

 

 

 

super developersuper developer
HI try this,

 

Location__c=http://www.developerforce.com/assets/developerforcesite/developerforce_home/images/developerforce_logo.png

 

 

<apex:repeat value="{!bigphoto}" var="big">
<tr>
<td><apex:image url="{!big.Location__c}"/></td>
</tr>
</apex:repeat>

 

<apex:repeat value="{!bigphoto}" var="big">

 <tr> <td><apex:image url="{!big.Location__c}"/></td> </tr>

 </apex:repeat>