* @param bounds the bounding Rectangle for the iterator, or null.
* @return a RandomIter allowing read-only access to the source.
*/
public static RandomIter create(Raster ras,
Rectangle bounds) {
RenderedImage im = new WrapperRI(ras);
return create(im, bounds);
}