eclipse中開發(fā)android手機(jī)應(yīng)用程序 怎樣調(diào)用相機(jī)拍照得到高分辨率的圖片

更新時間:2015-12-16本文內(nèi)容轉(zhuǎn)載自互聯(lián)網(wǎng)
//Creates a new Camera object to access a particular hardware camera.
Camera camera = Camera.open() ;

//Returns the current settings for this Camera service.
Parameters parameters = camera.getParameters();

//Sets the dimensions for preview pictures.
parameters.setPreviewSize(int width, int height)
//Sets the dimensions for pictures.
parameters.setPictureSize(int width, int height)

//你先獲取一下 你手機(jī)支持的分辨率,不然你不好設(shè)置你手機(jī)支持的最高分辨率
//Creates a single string with all the parameters set in this Parameters object.
//camera.getParameters().flatten();
//return String 你看一下返回的字符串,就可以看到很多手機(jī)攝像的很多相關(guān)參數(shù)了。
有用 33 無用 0 我要提問