function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
apex:image url="{!$Resource.MyNormal}" width="100" height="100" id="MyImage" onmouseover="ImageOver(this)" onmouseout="ImageNormal(this)" /> . . . <script type="text/javascript"> function ImageOver(MyImage) { MyImage.src='{!$Resource.MyOver}'; } function ImageNormal(MyImage) { MyImage.src='{!$Resource.MyNormal}'; } </script>
<apex:page > <style> img:hover { height: 200px; } </style> <apex:image id="theImage" value="https://s3.amazonaws.com/{!bucketToList}/{!obj.key}? AWSAccessKeyId=AKIAJGN4J4RSRNW26IEA&" width="220" height="55"/> </apex:page>
Option 4;- http://www.ajax-zoom.com/examples/example20.php
http://salesforce.stackfaq.net/questions/56185/how-to-enlarge-image
Please let us know if this will help you
Thanks
Amit Chaudhary
<apex:page controller="Onehubcntr">
<apex:form >
<apex:pageblock title="Get&Post the File in ONE HUB">
<apex:inputText value="{!GetFile1}" title="GetFile1"/>
<br/>
<br/><apex:inputFile style="width:100%" id="fileToUpload" value="{!fileBody}" filename="{!fileName}" />
<apex:commandbutton action="{!getSFDCSessionID}" value="PUTFILE"/>
</apex:pageblock>
<iframe src="data:image/gif;base64,{!Pdffile}"></iframe>
</apex:form>
</apex:page>
</pre>