Draws currently opened image to bitmap. @param bitmap is destination bitmap @param imageInfo contains image position and scaling parameters. @return true if current image is drawn successfully.
(Bitmap bitmap, ImageInfo imageInfo)
| 351 | * @return true if current image is drawn successfully. |
| 352 | */ |
| 353 | public boolean drawImage(Bitmap bitmap, ImageInfo imageInfo) { |
| 354 | synchronized(mutex) { |
| 355 | return drawImageInternal(bitmap, DeviceInfo.EINK_SCREEN ? 4 : 32, imageInfo); |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | /** |
| 360 | * Close currently opened image, free resources. |
no test coverage detected