|
Hi,
I want to use ImageJ as an applet in my JSP.
So, I used applet tag in JSP:
<applet code="ij.ImageJApplet.class" archive="ij.jar" width=0
height=0> <%for(int i=0;i<size;i++)%> <param name="url<%=i%>" value="<%=images[i]%>"/>
<%}%>
</applet>
where "images" is an array of images path.
The problems I am facing are:
1) The applet is not opening more than 9 images. (i.e. param names from url1 to url9 is only taken).Please note this is not an issue of memory because always 9 images only open and memory has not reached 64 MB (ie the memory allotted by ij.jar).
2) Cannot open compressed dicom files.
Getting an exception IOException while trying to open compressed dicom files.
Installed plugin Tudor dicom inside plugins folder and could open compressed dicom files using Plugins-->Open as a dicom option in the ImageJ Menu.
But this works only if clicking directly ImageJ.exe or ij.jar . This is not working in applet as the ImageJ window that opens through applet is not showing any new plugins options.
3)Is it possible to pass Zip file as parameter inside applet.
Saw an example demo where a zip file is passed and it opened as an animated tiff file.
i.e. there are tiff files inside zip and only one window opens and on scrolling the window can see other images in Zip as an animation.
Please help me on this as I am new to this application.
Thanks and Regards,
Parvathy
|