Requests, on behalf of the
ImageConsumer
, that the
ImageProducer
attempt to resend the image data one more time in TOPDOWNLEFTRIGHT order so that higher quality conversion algorithms which depend on receiving pixels in order can be used to produce a better output version of the image. The
ImageProducer
is free to ignore this call if it cannot resend the data in that order. If the data can be resent, the
ImageProducer
should respond by executing the following minimum set of
ImageConsumer
method calls:
ic.setHints(TOPDOWNLEFTRIGHT | < otherhints >);
ic.setPixels(...); // As many times as needed
ic.imageComplete();