怎么在Android中實(shí)現(xiàn)繪制扭曲圖像?相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
創(chuàng)新互聯(lián)主要從事成都網(wǎng)站制作、網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)克東,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220
定義基本變量:MyView是用于顯示扭曲的圖像的自定義view,angle是圓形軌跡的當(dāng)前角度:
private static Bitmap bitmap; private MyView myView; private int angle = 0; // 圓形軌跡當(dāng)前的角度 private Handler handler = new Handler() { public void handleMessage(Message msg) { switch (msg.what) { case 1: Random random = new Random(); // 計(jì)算圖形中心點(diǎn)坐標(biāo) int centerX = bitmap.getWidth() / 2; int centerY = bitmap.getHeight() / 2; double radian = Math.toRadians((double) angle); // 通過圓心坐標(biāo)、半徑和當(dāng)前角度計(jì)算當(dāng)前圓周的某點(diǎn)橫坐標(biāo) int currentX = (int) (centerX + 100 * Math.cos(radian)); // 通過圓心坐標(biāo)、半徑和當(dāng)前角度計(jì)算當(dāng)前圓周的某點(diǎn)縱坐標(biāo) int currentY = (int) (centerY + 100 * Math.sin(radian)); // 重繪View,并在圓周的某一點(diǎn)扭曲圖像 myView.mess(currentX, currentY); angle += 2; if (angle > 360) angle = 0; break; } super.handleMessage(msg); } }; private TimerTask timerTask = new TimerTask() { public void run() { Message message = new Message(); message.what = 1; handler.sendMessage(message); }
以下是自定義view,MyView的具體內(nèi)容:
private static class MyView extends View { private static final int WIDTH = 20; private static final int HEIGHT = 20; private static final int COUNT = (WIDTH + 1) * (HEIGHT + 1); private final float[] verts = new float[COUNT * 2]; private final float[] orig = new float[COUNT * 2]; private final Matrix matrix = new Matrix(); private final Matrix m = new Matrix(); // 設(shè)置verts數(shù)組的值 private static void setXY(float[] array, int index, float x, float y) { array[index * 2 + 0] = x; array[index * 2 + 1] = y; } public MyView(Context context) { super(context); setFocusable(true); bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image); float w = bitmap.getWidth(); float h = bitmap.getHeight(); int index = 0; // 生成verts和orig數(shù)組的初始值,這兩個(gè)數(shù)組的值是一樣的,只是在扭曲的過程中需要修改verts // 的值,而修改verts的值要將原始的值保留在orig數(shù)組中 for (int y = 0; y <= HEIGHT; y++) { float fy = h * y / HEIGHT; for (int x = 0; x <= WIDTH; x++) { float fx = w * x / WIDTH; setXY(verts, index, fx, fy); setXY(orig, index, fx, fy); index += 1; } } matrix.setTranslate(10, 10); setBackgroundColor(Color.WHITE); } @Override protected void onDraw(Canvas canvas) { canvas.concat(matrix); canvas.drawBitmapMesh(bitmap, WIDTH, HEIGHT, verts, 0, null, 0,null); } // 用于扭曲圖像的方法,在該方法中根據(jù)當(dāng)前扭曲的點(diǎn)(扭曲區(qū)域的中心點(diǎn)),也就是cx和cy參數(shù), // 來不斷變化verts數(shù)組中的坐標(biāo)值 private void warp(float cx, float cy) { final float K = 100000; // 該值越大,扭曲得越嚴(yán)重(扭曲的范圍越大) float[] src = orig; float[] dst = verts; // 按一定的數(shù)學(xué)規(guī)則生成verts數(shù)組中的元素值 for (int i = 0; i < COUNT * 2; i += 2) { float x = src[i + 0]; float y = src[i + 1]; float dx = cx - x; float dy = cy - y; float dd = dx * dx + dy * dy; float d = FloatMath.sqrt(dd); float pull = K / ((float) (dd *d)); if (pull >= 1) { dst[i + 0] = cx; dst[i + 1] = cy; } else { dst[i + 0] = x + dx * pull; dst[i + 1] = y + dy * pull; } } } // 用于MyView外部控制圖像扭曲的方法。該方法在handleMessage方法中被調(diào)用 public void mess(int x, int y) { float[] pt ={ x, y }; m.mapPoints(pt); // 重新生成verts數(shù)組的值 warp(pt[0], pt[1]); invalidate(); } } }
以下是Activity的onCreate方法:
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); myView = new MyView(this); setContentView(myView); Timer timer = new Timer(); // 開始定時(shí)器 timer.schedule(timerTask, 0, 100); }
下面來看看扭曲后的效果,不同時(shí)刻,圖片呈現(xiàn)出不同的扭曲效果:
看完上述內(nèi)容,你們掌握怎么在Android中實(shí)現(xiàn)繪制扭曲圖像的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
分享名稱:怎么在Android中實(shí)現(xiàn)繪制扭曲圖像
文章來源:http://muchs.cn/article24/jidoje.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、電子商務(wù)、網(wǎng)站導(dǎo)航、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)