1

次のコードからパスに沿ってアニメーションを作成しました。

    public void doAnimation(){
        Matrix mxTransform=new Matrix();
        PathMeasure pm=new PathMeasure(path,false);
        float fSegmentLen = (float)((pm.getLength())/50);
        if(iCurStep<=50){
            pm.getMatrix(fSegmentLen * iCurStep, mxTransform,
                    PathMeasure.POSITION_MATRIX_FLAG + PathMeasure.TANGENT_MATRIX_FLAG );
             canvas.drawBitmap(bt, mxTransform, null);
             iCurStep++;
             invalidate();
        }
        else{               
            iCurStep=0;
            animate=0;
            canvas.drawPoint((float)range-10,0f,forPoint);
        }
    }

drawBitmap() メソッドを使用して描画中に、コード内のビットマップを回転させたいと思いました。前もって感謝します。

4

1 に答える 1

1

画像を回転するには、次のコードを使用できます

public static Bitmap rotate(Bitmap src, float degree) {
    // create new matrix
    Matrix matrix = new Matrix();
    // setup rotation degree
    matrix.postRotate(degree);

    // return new bitmap rotated using matrix
    return Bitmap.createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), matrix, true);
}

詳細な説明が必要な場合は、このリンクを参照してくださいhttp://xjaphx.wordpress.com/2011/06/22/image-processing-rotate-image-on-the-fly/

于 2012-05-24T08:27:02.617 に答える