> On Thu, 14 Jun 2007 10:53:37 GMT, Ivan Danicic
> <ivie@localhost.localdomain> wrote, quoted or indirectly quoted
[quoted text clipped - 7 lines]
> Obviously it can manipulate bit maps in any representation, but it
> will not display them.
Hello all, it seems I shall have to learn how to write progs
suitable for web start. The often repeated assertion that no
special restrictions apply in this case is a bloody lie!
If e.g. pictures are used in the program then these must be
accessed in a special way, probably using classloader and
getresource.
I'd be very grateful for a pointer to such a java program (source
code).
Ivan
Roedy Green - 16 Jun 2007 00:44 GMT
On Fri, 15 Jun 2007 11:25:04 GMT, Ivan Danicic
<ivie@localhost.localdomain> wrote, quoted or indirectly quoted
someone who said :
>Hello all, it seems I shall have to learn how to write progs
>suitable for web start. The often repeated assertion that no
[quoted text clipped - 5 lines]
>code).
>Ivan
The simpler approach will be to convert these bmp files to png. You
might do it ahead of time, or do it dynamically on the server or
shudder, even exec a conversion utility on the client.
see http://mindprod.com/jgloss/exec.html
There is nothing in Java that will display them. You would have to
exec some little bmp viewer. The problem with that approach is your
app will then only work under Windows.
Another approach is to use JAI, which does support BMP files. See
http://mindprod.com/jgloss/jai.html. The catch is you then need to
get JAI installed or downloaded on all your client machines. At least
with JAWS it won't be downloaded on every use.
--
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
Ivan Danicic - 18 Jun 2007 13:47 GMT
> On Fri, 15 Jun 2007 11:25:04 GMT, Ivan Danicic
> <ivie@localhost.localdomain> wrote, quoted or indirectly quoted
[quoted text clipped - 9 lines]
>>code).
>>Ivan
Hello all, I have solved this and it works well on linux but not
windows xp and vista. The windows seem to use only the old cached
program and I can't get rid of that. Any thoughts? Thanks in advance.
Ivan