Problem Processing Multiple images with JAI.create
Hello
I am trying to process a directory with 10 image files in it and I read individual files and input filenames to create a PlanarImage
PlanarImage img = JAI.create("fileload", filename);
which is wrong as it throws
Exception in thread "main" java.lang.IllegalArgumentException: File not found
I tried using ParameterBlock also, but i don't seem to get it right and its not reading the image files.
Can someone suggest some tips to perform the task of processing images inside a directory with JAI.create..
Thanks

