Image I/O Plug-in Tutorial

Looking for some tutorial or good documentation (besides what is supplied with the API) for writing plug-ins for Image I/O so I can add my own custom images.
[164 byte] By [SomethingSexya] at [2007-10-3 3:13:10]
# 1
Do you mean something besides this: http://java.sun.com/j2se/1.5.0/docs/guide/imageio/spec/extending.fm1.htmlDmitri
dmitri_trembovetskia at 2007-7-14 21:04:09 > top of Java-index,Security,Cryptography...
# 2
Yea, looking for something besides that.
SomethingSexya at 2007-7-14 21:04:09 > top of Java-index,Security,Cryptography...
# 3

Well maybe no one has another tutorial but if someone has expirence in writing custom plugins for Image I/O might be able to help me out. In the Java Image IO documentation for writing plug-ins it says in the constructor for my ImageReaderSpi class I can use the super function to set the data, but I am getting an error saying it does not exsist, here is an example:

public MyformatImageReaderSpi()

{

super (vendorName, version,

names, suffixes, MIMETypes,

readerClassName,

STANDARD_INPUT_TYPE, // Accept ImageInputStreams

writerSpiNames,

supportsStandardStreamMetadataFormat,

nativeStreamMetadataFormatName,

nativeStreamMetadataFormatClassName,

extraStreamMetadataFormatNames,

extraStreamMetadataFormatClassNames,

supportsStandardImageMetadataFormat,

nativeImageMetadataFormatName,

extraImageMetadataFormatNames,

extraImageMetadataFormatClassNames);

}

SomethingSexya at 2007-7-14 21:04:09 > top of Java-index,Security,Cryptography...
# 4
Actually, I found my error, was just missing a parameter. But I am looking for some help on how to package this plug-in up and get it to work with Image I/O?
SomethingSexya at 2007-7-14 21:04:09 > top of Java-index,Security,Cryptography...