9

如何从图库中选择视频并对其进行裁剪/调整大小,就像在 android 中进行图像裁剪一样。我最近两天正在寻找它。但我没有找到任何样本或示例。如果您有任何想法或样品,请建议我。

谢谢你。

4

1 回答 1

2

在 android 4.0 + 你可以使用TextureView

基本思想是使用 Matrix 对象。

Matrix matrix = new Matrix();
matrix.setScale(scaleX, scaleY, pivotPointX, pivotPointY);
mTextureView.setTransform(matrix);

全文可在此处获得。

于 2014-03-15T20:37:31.623 回答