Hi All, This post is regarding to store image in a field of an Object or to displaying image in standard layout. Approach:- Create an URL field in any object say Image_Url__c Create an Formula Field in that object and refer the new url field . Image = IMAGE( Image_Url__c , 'Company Logo',200,200). Create Static Resource and store all the image in the static resource. Click on View File link of each Static Resource and copy the Url. Now create Visualforce page and controller. In controller page paste link which you have copied from Static resource. Run page and enter account name ,choose image and then click on save button. This is the page <apex:page controller="addImageTorecordsController"> <apex:form > <apex:pageBlock > <apex:pageBlockSection > ...
A place where you have to land for exploring Salesforce