問題描述
如何將 Leptonica Pix 對象轉換為 Android 的位圖 (How to convert Leptonica Pix Object to Android's Bitmap)
我有一個由
TessBaseApi.getThresholdedImage();
返回的Leptonica Pix對象現在,如何將其轉換為位圖,以便我可以通過ImageView
顯示它。
leptonica.android.Pix
to android.graphics.Bitmap;
看API文件沒找到轉換方法。 p>
參考解法
方法 1:
For someone with the problem I found the way after lot of searching in the source .java files:
import com.googlecode.leptonica.android.WriteFile;
and then pass the pix object to writeBitmap.
Bitmap bitmap = WriteFile.writeBitmap(pixObject);