我有一个由
返回的Leptonica Pix对象TessBaseApi.getThresholdedImage();
现在,如何将其转换为位图,以便我可以通过ImageView
显示它。
leptonica.android.Pix
至android.graphics.Bitmap;
我没有找到查看API文件的转换方法。
答案 0 :(得分:7)
对于有问题的人,我在源.java文件中搜索了很多次后找到了方法:
if(mAudioManager.isMusicActive()) {
Toast.makeText(this, "Audio is playing", Toast.LENGTH_LONG).show();
Intent srvc = new Intent(this, OverlayShowingService.class);
startService(srvc);
try {
Timer timer = new Timer();
timer.wait(1000);
} catch (Exception e) {
System.out.println("Exception found");
}
}
然后将pix对象传递给writeBitmap。
google.maps.OverlayView