Check whether point of current document contains image. If image is found, image becomes current image to be drawn by drawImage(), dstImage fields are set to image dimension. @param x is X coordinate in document window @param y is Y coordinate in document window @param dstImage is to place found im
(int x, int y, ImageInfo dstImage)
| 321 | * @return true if point belongs to image |
| 322 | */ |
| 323 | public boolean checkImage(int x, int y, ImageInfo dstImage) { |
| 324 | synchronized(mutex) { |
| 325 | return checkImageInternal(x, y, dstImage); |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | /** |
| 330 | * Check whether point of current document belongs to bookmark. |
no test coverage detected