我目前正在試圖讓一個Android應用程序的DICOM 下面的代碼打開圖片DROM RES /可繪製在「ussual」圖像格式,但它不與主要活動.DCMAndroid開發:如何打開一個.dcm文件作爲位圖?
public class BitmapView extends View
{
public BitmapView(Context context) {
super(context);
}
@Override
public void onDraw(Canvas canvas) {
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.test);
canvas.drawColor(Color.BLACK);
canvas.drawBitmap(bmp, 10, 10, null);
}
}
工作:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new BitmapView(this));
}
在此先感謝!