• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

problem while displaying multipage tiff image in applet

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have an applet which displays tiff image through JSP.

For multipage tiff image first of all I split the image and store it to local drive.
Then from the JSP calling appplet for each image. My jsp code for the same is as below



when I run the application, it shows the same image one by one instead of displaying each image in sequence.
Code for MyApplet.java is as below.



can anybody tell me what is going wrong ?

thanks in advance
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What do you mean by "in sequence"? You are creating N applet tags, each showing one particular image. What are you actually trying to do?
 
dhiren sangani
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes I am creating N applet tag, but at the time of display it does not showing one particular image.
It displays the same image in all tags.
I am passing image path to each applet tag, so applet should display only that particular image denoted by image path.
 
reply
    Bookmark Topic Watch Topic
  • New Topic