Canvas绘制以及使用第三方字体(多媒体学习基础)


通过使用Canvas进行园,矩形,椭圆,直线,在路径上绘制文本,使用第三方字体,根据手指一动绘制图形,TypeFace的使用等等,

推荐看看这个《Androidd多媒体开发教程pdf 》:下载地址:http://download.csdn.net/detail/u012808234/9470480

代码:

package com.example.chenpengfei_d.canvasdemo;

import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.RectF;
import android.graphics.Typeface;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.ImageView;

public class MainActivity extends AppCompatActivity implements View.OnTouchListener{
    private ImageView mIv_ImageView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        init();
    }
    private Canvas canvas;
    private Paint paint;
    private void init() {
        mIv_ImageView = (ImageView)findViewById(R.id.iv_imageView);
        int width = getWindowManager().getDefaultDisplay().getWidth();
        int height = getWindowManager().getDefaultDisplay().getHeight();
        Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
        canvas = new Canvas(bitmap);

        paint = new Paint();
        paint.setColor(Color.BLUE);
//        paint.setStyle(Paint.Style.STROKE);
        paint.setStyle(Paint.Style.FILL);
        paint.setStrokeWidth(3);

        RectF rectF = new RectF(10,20,200,100);
        canvas.drawRect(rectF, paint);

        RectF rectOval = new RectF(200,20,400,100);
        canvas.drawOval(rectOval, paint);

        canvas.drawCircle(550, 140, 120, paint);

        Path path = new Path();
        path.moveTo(20, 200);//没有moveTod 话就会直接从0,0点开始绘制
        path.lineTo(200, 200);
        path.lineTo(150, 260);
        path.lineTo(100, 220);
        path.lineTo(70, 260);
        path.lineTo(70, 260);
        path.lineTo(20, 200);
        canvas.drawPath(path, paint);

        paint.setTextSize(36);
        paint.setTypeface(Typeface.SANS_SERIF);
        canvas.drawText("你好,我在画图", 200, 200, paint);

        paint.setTypeface(Typeface.DEFAULT_BOLD);
        canvas.drawText("你好,我在画图", 200, 240, paint);

        paint.setTypeface(Typeface.MONOSPACE);
        canvas.drawText("你好,我在画图", 200, 280, paint);

        Typeface typeface = Typeface.create(Typeface.SERIF, Typeface.ITALIC);
        paint.setTypeface(typeface);
        canvas.drawText("你好,我在画图", 200, 320, paint);
//        加载第三方字体
        Typeface typeface1 = Typeface.createFromAsset(getAssets(),"typeface.TTF");
        paint.setTypeface(typeface1);
        paint.setTextSize(48);
        Path textPath = new Path();
        textPath.moveTo(20,400);
        textPath.lineTo(40, 440);
        textPath.lineTo(80, 480);
        textPath.lineTo(120, 540);
        textPath.lineTo(180, 600);
        textPath.lineTo(190,600);
        textPath.lineTo(330,600);
        canvas.drawTextOnPath("where are you from ?", textPath, 0, 0, paint);

        paint.setColor(Color.RED);
        canvas.drawText("使用第三方字体", 200, 400, paint);
        mIv_ImageView.setImageBitmap(bitmap);
        mIv_ImageView.setOnTouchListener(this);
    }

    private float startX = 0 ;
    private float startY = 0 ;
    private float endX = 0 ;
    private float endY = 0 ;
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        int action = event.getAction();
        switch (action){
            case MotionEvent.ACTION_DOWN:
                startX = event.getX();
                startY = event.getY();
                break;
            case MotionEvent.ACTION_UP:

                break;
            case MotionEvent.ACTION_MOVE:
             /*
                绘制起点到移动点的直线
                endX = event.getX() ;
                endY = event.getY();
                canvas.drawLine(startX,startY,endX,endY,paint);
                mIv_ImageView.invalidate();*/

                endX = event.getX();
                endY = event.getY();
                canvas.drawLine(startX,startY,endX,endY,paint);
                startX = endX; startY = endY;
                mIv_ImageView.invalidate();
                break;
        }
        return true;
    }
}

对于第三方字体的使用,需要下载.ttf的字体文件,放到assets文件夹中,然后通过

  加载第三方字体
        Typeface typeface1 = Typeface.createFromAsset(getAssets(),"typeface.TTF");
这个文件网上有很多,直接搜索下载就好了。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值