You need to sign in to do that
Don't have an account?
SFDC coder
Are images rendered in a pdf file?
I would like to know if there is any way to render the images in a pdf file?
Thanks,
Neha
Thanks,
Neha
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
Could u post your code,So i can check hows u r using image..
might be it can be halpful.Refer below link
http://salesforce.stackexchange.com/questions/32984/trouble-adding-image-to-visualforce-page-rendred-as-pdf
<apex:page controller="DetailPageExt" >
<apex:detail subject="{!recordid}" relatedList="false" inlineEdit="false" />
</apex:page>
Thanks
Neha
Where u r stored image which u r using in formula field.U need to check whether images are stored on static resource or not.
Thanks
Were you able to figure it out?
Reference static image resources through the $Resource is the best way.
Any other solution that you tried?
Thanks,
Aakaash
I cant use static resources bcause in my formula field m calling the google maps api(url) that just displays the map..and this map image i need to render in pdf
This is my formula field:
IMAGE("https://maps.googleapis.com/maps/api/staticmap?center=" + Street__c + ","+Society_Project__c+"," + City__c + "," + Country__c + "&zoom=13&size=600x300&markers=color:red|" + Society_Project__c +","+Street__c+","+City__c+","+Country__c+"&sensor=false", "No map available", 300,600)
I don't hink we can store the images in static resources.Is there any other way out?
Regards,
Neha Patil