0
捕捉我的相機應用程序和打開的圖像通過Galerry: 我的代碼開放:如何通過圖庫打開圖像時如何旋轉圖像?
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File(dt.FileName);
intent.setDataAndType(Uri.fromFile(file), "image/*");
startActivity(intent);
捕捉標準攝像機和開放形象的Galerry:
我檢查原始圖像是一樣的。 圖像打開時圖像旋轉時的圖像是否與標準相機相同?
必須保存爲其他文件? – mum
如果使用Matrix,我只能在我的控件上設置,但我調用Android的android.content.Intent.ACTION_VIEW。 – mum
您可以更改圖像的方向並存儲它,然後顯示該圖像。 – umerk44