read it:
http://java.sun.com/developer/sampsource/jai/readme-1_1_1-codec.html

Seens Java 1.5 supports tiff without JAI.
Run below code to check the supported image IO you have
/*****************************************************************/
import javax.imageio.*;

     public class GetList
     {
       public static void main(String args[])
       {
         String readerNames[] = ImageIO.getReaderFormatNames();
         printlist(readerNames, "Reader names:");

         String readerMimes[] =    ImageIO.getReaderMIMETypes();
         printlist(readerMimes, "Reader MIME types:");

         String writerNames[] = ImageIO.getWriterFormatNames();
         printlist(writerNames, "Writer names:");

         String writerMimes[] =  ImageIO.getWriterMIMETypes();
         printlist(writerMimes, "Writer MIME types:");

       }

       private static void printlist(String names[], String title)
      {
         System.out.println(title);
         for (int i=0, n=names.length; i<n; i++)
         {
           System.out.println("\t" + names[i]);
         }
       }
     }
/****************************************************/


Alessandro


--- romil shah <[EMAIL PROTECTED]> escreveu: > Hi all ,
>
> Could anybody tell me how to load a "tiff" image in
> Java3D.
> I started looking at JAI but couldnot find much
> material on that. I dont know if thats the only way.
> An example would be highly appreciated.
>
> Thanks,
>
> Romil.
>
>
>
> __________________________________
> Do you Yahoo!?
> Yahoo! Mail is new and improved - Check it out!
> http://promotions.yahoo.com/new_mail
>
> ===========================================================================
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
> of the message "signoff JAVA3D-INTEREST".  For general help, send email to
> [EMAIL PROTECTED] and include in the body of the message "help".
>





_______________________________________________________
Yahoo! Mail agora com 100MB, anti-spam e antivírus grátis!
http://br.info.mail.yahoo.com/

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to