org.apache.batik.ext.awt.image.spi
public interface URLRegistryEntry extends RegistryEntry
See Also: java.net.URL#URL(java.lang.String, java.lang.String, int, java.lang.String)
Method Summary | |
---|---|
Filter | handleURL(ParsedURL url, boolean needRawData)
Decode the URL into a RenderableImage, here you should feel
free to open the URL yourself. This should only return a broken link image if the image is clearly of this format, but is unreadable for some reason. otherwise return null. If all entries refuse the url or return null then the registry will automatically return a broken link image for you. |
boolean | isCompatibleURL(ParsedURL url)
Check if the URL references an image that can be
handled by this format handler. |
This should only return a broken link image if the image is clearly of this format, but is unreadable for some reason. otherwise return null.
If all entries refuse the url or return null then the registry will automatically return a broken link image for you.
Parameters: url The url that reference the image. needRawData If true the image returned should not have any default color correction the file may specify applied.
If you don't care about the structure of the URL and only about the contents of the URL you should register as a StreamRegistryEntry, so the URL "connection" will be made only once.
Parameters: url The URL to inspect.