Reputation: 1
I have downloaded ImageJ source and compiled and run ImageJ source. I made the ij.jar as signed. But when I am trying to embed ImageJ applet in a webpage Image window is coming as popup instead of sticking onto the browser.
Many thanks to all!
Upvotes: 0
Views: 244
Reputation: 12453
As from the ImageJ website examples, it can be directly embedded like so:
<applet codebase="." code="ij.ImageJApplet.class" archive="ij.jar" width=750 height=550 security=all-permissions>
<param name=url1 value=images/pic.jpg>
<param name=url2 value=pix/conference.jpg>
</applet>
Upvotes: 1