Problem in using Image as Parameter in Applet

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Problem in using Image as Parameter in Applet

Hanumanth
Hi
 
when iam passing a image as a parameter for applet, it is not displaying the image. If i open same image from file->open it is opening image. is there any file size restriction while passing image as parameter. i doubt only images with morethan 100kb are not opening when we pass image as parameter.
 
my code is as follows
<applet code="ij.ImageJApplet.class" archive="../scan/signedij.jar" width=0 height=0>
<param name="url1" value='https://localhost:8080/test/images/2061-brain_001.dcm'/>
</applet>
 
thanks


      Unlimited freedom, unlimited storage. Get it now, on http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/
Reply | Threaded
Open this post in threaded view
|

Re: Problem in using Image as Parameter in Applet

Wayne Rasband
> Hi
>  
> when iam passing a image as a parameter for applet, it is not
> displaying the image. If i open same image from file->open it is
> opening image. is there any file size restriction while passing image
> as parameter. i doubt only images with morethan 100kb are not opening
> when we pass image as parameter.
>  
> my code is as follows
> <applet code="ij.ImageJApplet.class" archive="../scan/signedij.jar"
> width=0 height=0>
> <param name="url1"
> value='https://localhost:8080/test/images/2061-brain_001.dcm'/>
> </applet>
>  
> thanks

The 1.41k daily build fixes a bug that caused the ImageJ applet to fail
to load DICOM images passed as an applet parameter. There is an example
applet at <http://rsb.info.nih.gov/ij/applet2/> that loads a DICOM
image when it starts. This applet, and the one at
<http://rsb.info.nih.gov/ij/applet/>, use the daily build ij.jar at
<http://rsb.info.nih.gov/ij/ij.jar>.

-wayne