自定义view实现涂鸦(画板)功能(二)

整理完了,是时候把完整的发出来了

进入正文:
需求修改之后,需要添加画椭圆、画矩形以及画箭头的方法,之后需要将在白色背景上作图改为在图片上进行编辑
总体来说:完成方式类似,只需要在外部设置按钮用标记去标识,在画板中变化画图方式即可

该注释的地方我都加在代码里,所以就不作太多的额外说明了
先定义一下画图方式:

//设置画图样式  
    private static final int DRAW_PATH = 01;  
    private static final int DRAW_CIRCLE = 02;  
    private static final int DRAW_RECTANGLE = 03;  
    private static final int DRAW_ARROW = 04;  
    private int[] graphics = new int[]{DRAW_PATH,DRAW_CIRCLE,DRAW_RECTANGLE,DRAW_ARROW};  
    private  int currentDrawGraphics = graphics[0];//默认画线 

画椭圆和画矩形比较简单:
画椭圆:

if(currentDrawGraphics == DRAW_CIRCLE){  
                mPath.reset();//清空以前的路径,否则会出现无数条从起点到末位置的线  
                RectF rectF = new RectF(startX,startY,x,y);  
                mPath.addOval(rectF, Path.Direction.CCW);//画椭圆  
               // mPath.addCircle((startX + x) / 2, (startY + y) / 2, (float) Math.sqrt(Math.pow(newx, 2) + Math.pow(newy, 2)) / 2, Path.Direction.CCW)//画圆

画矩形:

if(currentDrawGraphics == DRAW_RECTANGLE){  
                mPath.reset();  
                RectF rectF = new RectF(startX,startY,x,y);  
                mPath.addRect(rectF, Path.Direction.CCW); 

稍微麻烦的是画箭头:
思路是:先画线,再以线的另一端为端点按照一个角度来偏移并计算偏移坐标,并得到箭头的两个端点,然后再将端点画线连接起来,这样就会形成一个箭头

if (currentDrawGraphics == DRAW_ARROW){  
                mPath.reset();  
                drawAL((int) startX, (int) startY, (int) x, (int) y);  
}  

drawAL:

/** 
    * 画箭头 
    * @param startX 开始位置x坐标 
    * @param startY 开始位置y坐标 
    * @param endX 结束位置x坐标 
    * @param endY 结束位置y坐标 
    */  
   public void drawAL(int startX, int startY, int endX, int endY)  
   {  
       double lineLength = Math.sqrt(Math.pow(Math.abs(endX-startX),2) + Math.pow(Math.abs(endY-startY),2));//线当前长度  
       double H = 0;// 箭头高度  
       double L = 0;// 箭头长度  
       if(lineLength < 320){//防止箭头开始时过大  
           H = lineLength/4 ;  
           L = lineLength/6;  
       }else { //超过一定线长箭头大小固定  
           H = 80;  
           L = 50;  
       }  
  
       double arrawAngle = Math.atan(L / H); // 箭头角度  
       double arraowLen = Math.sqrt(L * L + H * H); // 箭头的长度  
       double[] pointXY1 = rotateAndGetPoint(endX - startX, endY - startY, arrawAngle, true, arraowLen);  
       double[] pointXY2 = rotateAndGetPoint(endX - startX, endY - startY, -arrawAngle, true, arraowLen);  
       int x3 = (int) (endX - pointXY1[0]);//(x3,y3)为箭头一端的坐标  
       int y3 = (int) (endY - pointXY1[1]);  
       int x4 = (int) (endX - pointXY2[0]);//(x4,y4)为箭头另一端的坐标  
       int y4 = (int) (endY - pointXY2[1]);  
       // 画线  
       mPath.moveTo(startX,startY);  
       mPath.lineTo(endX,endY);  
       mPath.moveTo(x3, y3);  
       mPath.lineTo(endX, endY);  
       mPath.lineTo(x4, y4);  
       // mPath.close();闭合线条  
   }  

rotateAndGetPoint():这个方法就是用来计算箭头端点的,我们需要提供x以及y方向的长度,当然还有箭头偏转角度

/** 
     * 矢量旋转函数,计算末点的位置 
     * @param x  x分量 
     * @param y  y分量 
     * @param ang  旋转角度 
     * @param isChLen  是否改变长度 
     * @param newLen   箭头长度长度 
     * @return    返回末点坐标 
     */  
    public double[] rotateAndGetPoint(int x, int y, double ang, boolean isChLen, double newLen)  
    {  
        double pointXY[] = new double[2];  
        double vx = x * Math.cos(ang) - y * Math.sin(ang);  
        double vy = x * Math.sin(ang) + y * Math.cos(ang);  
        if (isChLen) {  
            double d = Math.sqrt(vx * vx + vy * vy);  
            pointXY[0] = vx / d * newLen;  
            pointXY[1] = vy / d * newLen;  
        }  
        return pointXY;  
    }  

以上通过注释应能比较清晰的看出来思路

之后我就开始着手做成在背景图片上进行涂鸦,这样一来很多东西就需要修改了,原来能在白色背景上做的东西都需要进行修改。
去图库选择图片很简单:

Intent picIntent = new Intent();  
picIntent.setType("image/*");  
picIntent.setAction(Intent.ACTION_GET_CONTENT);  
startActivityForResult(picIntent, OPEN_PHOTO);

但是当你在保存图片时会出现很多各种莫名其妙的错误包括:保存背景为黑色,笔迹完全显示不出来等问题
所以我想的是很可能保存时候没有对图片处理好,决定采用将两张bitmap进行合并的方法,于是就有了:

if(srcBitmap != null){//有背景图  
            Bitmap bitmap = Bitmap.createBitmap(screenWidth,screenHeight, Bitmap.Config.RGB_565);  
            Canvas canvas = new Canvas(bitmap);  
           // canvas.drawBitmap(srcBitmap, new Matrix(), null);  
           // paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN));  
            Bitmap pathBitmap = drawBitmapPath();  
            canvas.drawBitmap(pathBitmap,new Matrix(),null);  
            *//*Iterator<DrawPath> iter = savePath.iterator();  
            while (iter.hasNext()) {  
                DrawPath drawPath = iter.next();  
                canvas.drawPath(drawPath.path, drawPath.paint);  
            }*//*  
            //将合并后的bitmap保存为png图片到本地  
            bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);  
        }else {//没有背景图就画在一张白色为背景的bitmap上  
            *//*Bitmap bitmap = Bitmap.createBitmap(screenWidth, screenHeight, Bitmap.Config.RGB_565);  
            Canvas canvas = new Canvas(bitmap);  
            Paint paint = new Paint();  
            paint.setColor(Color.WHITE);  
            paint.setStyle(Paint.Style.FILL);  
            canvas.drawRect(0,0,screenWidth,screenHeight,paint);  
            Iterator<DrawPath> iter = savePath.iterator();  
            while (iter.hasNext()) {  
                DrawPath drawPath = iter.next();  
                canvas.drawPath(drawPath.path, drawPath.paint);  
            }*//*  
            mBitmap.compress(CompressFormat.PNG, 100, fos);  
        }  

但是在使用橡皮擦时出错误了,原因到现在理解的还是不是很透彻,可能是渲染模式只是覆盖的关系,但是橡皮擦仍会作为一种触摸痕迹也被保留了下来,所以发现使用橡皮擦后保存下来的图片不但没有擦掉原痕迹,连橡皮擦的痕迹也显示出来了,于是偷懒之下就想到了一个很便捷的方法:
我们只需要像截图一样把当前界面截取下来就行了,而且android也提供了view层的截取方法,步骤如下:

//view层的截图  
  view.setDrawingCacheEnabled(true);  
  Bitmap newBitmap = Bitmap.createBitmap(view.getDrawingCache());  
  viewt.setDrawingCacheEnabled(false);  

view表示你需要截取的控件,注意步骤一定要按照上面实现,那么只需要将截取的图片直接保存就可以了,于是在保存到sd卡的方法中修改

//保存到sd卡  
    public String saveToSDCard(Bitmap bitmap) {  
        //获得系统当前时间,并以该时间作为文件名  
        SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMddHHmmss");  
        Date curDate = new Date(System.currentTimeMillis());//获取当前时间  
        String str = formatter.format(curDate) + "paint.png";  
        String path= "sdcard/" + str;  
        File file = new File(path);  
        FileOutputStream fos = null;  
        try {  
            fos = new FileOutputStream(file);  
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
        bitmap.compress(CompressFormat.PNG, 100, fos);  
        return path;  
    }  

另外要注意的是,图片要进行压缩,要不然连试几次就oom了:

 /** 
     * 通过uri获取图片并进行压缩 
     * 
     * @param uri 
     */  
    public Bitmap getBitmapFormUri(Activity ac, Uri uri) throws FileNotFoundException, IOException {  
        InputStream input = ac.getContentResolver().openInputStream(uri);  
        BitmapFactory.Options onlyBoundsOptions = new BitmapFactory.Options();  
        onlyBoundsOptions.inJustDecodeBounds = true;  
        onlyBoundsOptions.inDither = true;//optional  
        onlyBoundsOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;//optional  
        BitmapFactory.decodeStream(input, null, onlyBoundsOptions);  
        input.close();  
        //图片宽高  
        int originalWidth = onlyBoundsOptions.outWidth;  
        int originalHeight = onlyBoundsOptions.outHeight;  
        if ((originalWidth == -1) || (originalHeight == -1))  
            return null;  
        //图片分辨率以480x800为标准  
        float hh = 800f;//这里设置高度为800f  
        float ww = 480f;//这里设置宽度为480f  
        //缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可  
        int be = 1;//be=1表示不缩放  
        if (originalWidth > originalHeight && originalWidth > ww) {//如果宽度大的话根据宽度固定大小缩放  
            be = (int) (originalWidth / ww);  
        } else if (originalWidth < originalHeight && originalHeight > hh) {//如果高度高的话根据宽度固定大小缩放  
            be = (int) (originalHeight / hh);  
        }  
        if (be <= 0)  
            be = 1;  
        //比例压缩  
        BitmapFactory.Options bitmapOptions = new BitmapFactory.Options();  
        bitmapOptions.inSampleSize = be;//设置缩放比例  
        bitmapOptions.inDither = true;//optional  
        bitmapOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;//optional  
        input = ac.getContentResolver().openInputStream(uri);  
        Bitmap bitmap = BitmapFactory.decodeStream(input, null, bitmapOptions);  
        input.close();  
        return compressImageByQuality(bitmap);//再进行质量压缩  
    }  
    // 质量压缩方法  
    public Bitmap compressImageByQuality(Bitmap image) throws IOException {  
        ByteArrayOutputStream baos = new ByteArrayOutputStream();  
        image.compress(Bitmap.CompressFormat.JPEG, 100, baos);//质量压缩方法,这里100表示不压缩,把压缩后的数据存放到baos中  
        int options = 100;  
        while (baos.toByteArray().length / 1024 > 100) {  //循环判断如果压缩后图片是否大于100kb,大于继续压缩  
            baos.reset();//重置baos即清空baos  
            //第一个参数 :图片格式 ,第二个参数: 图片质量,100为最高,0为最差  ,第三个参数:保存压缩后的数据的流  
            image.compress(Bitmap.CompressFormat.JPEG, options, baos);//这里压缩options%,把压缩后的数据存放到baos中  
            options -= 10;//每次都减少10  
        }  
        ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());//把压缩后的数据baos存放到ByteArrayInputStream中  
        Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null);//把ByteArrayInputStream数据生成图片  
        isBm.close();  
        baos.close();  
        return bitmap;  
    }  

压缩方法网上资料很多,就不赘述了,需要注意的是我们需要根据所在画图控件的大小来调整图片宽高压缩比

以上基本上所有需要的东西已经全部做完了,以下就是锦上添花的功能:
例如:添加保存时的progressDialog以便好看一点:

public class CustomProgressDialog extends Dialog {  
    private Context context = null;  
    private static CustomProgressDialog customProgressDialog = null;  
    public CustomProgressDialog(Context context){  
        super(context);  
        this.context = context;  
    }  
    public CustomProgressDialog(Context context, int theme) {  
        super(context, theme);  
    }  
    public static CustomProgressDialog createDialog(Context context){  
        customProgressDialog = new CustomProgressDialog(context,R.style.CustomProgressDialog);  
        customProgressDialog.setContentView(R.layout.customprogressdialog);  
        return customProgressDialog;  
    }  
    public void onWindowFocusChanged(boolean hasFocus){  
        if (customProgressDialog == null){  
            return;  
        }  
        ImageView imageView = (ImageView) customProgressDialog.findViewById(R.id.loadingImageView);  
        AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getBackground();  
        animationDrawable.start();  
    }  
    public void setMessage(String strMessage){  
        TextView tvMsg = (TextView)customProgressDialog.findViewById(R.id.id_tv_loadingmsg);  
        if (tvMsg != null){  
            tvMsg.setText(strMessage);  
        }  
    }  
}  

progressDialog的xml文件:

<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout  
    xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"  
    android:gravity="center"  
    android:orientation="vertical">  
    <ImageView  
        android:id="@+id/loadingImageView"  
        android:layout_width="30dp"  
        android:layout_height="30dp"  
        android:background="@drawable/progress_round"/>  
    <TextView  
        android:id="@+id/id_tv_loadingmsg"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:text="正在保存..."  
        android:textSize="16sp"  
        android:layout_marginTop="10dp"/>  
</LinearLayout>  

CustomProgressDialog 的样式:

<style name="CustomDialog" parent="@android:style/Theme.Dialog">  
        <item name="android:windowFrame">@null</item>  
        <item name="android:windowIsFloating">true</item>  
        <item name="android:windowContentOverlay">@null</item>  
        <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>  
        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>  
    </style>  
    <style name="CustomProgressDialog" parent="@style/CustomDialog">  
        <item name="android:windowBackground">@android:color/transparent</item>  
        <item name="android:windowNoTitle">true</item>  
    </style>  

那么就只需要在保存时CustomProgressDialog.createDialog就行了,在ondestroy时dismiss即可

效果图:

6bee5d7d-8424-4d98-ab1b-3463f9da3c02.png

具体的源码就不贴出来了,没人喜欢看,要看的话可以在csdn上
自定义view实现涂鸦(画板)功能(二)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容

  • Core Graphics Framework是一套基于C的API框架,使用了Quartz作为绘图引擎。它提供了低...
    ShanJiJi阅读 1,513评论 0 20
  • 之前在csdn上发了一次,之后可能转战简书了,为避免发发(二)的时候让人不明所以,所以决定还是重发一次保证完整性新...
    原来如此丶阅读 1,806评论 4 9
  • 上篇的学习,Paint中的基础知识基本结束,笔学完了,学习开始学习画布。本篇记录学习Canvas中的一些知识。在d...
    英勇青铜5阅读 3,503评论 4 9
  • 黑暗深處有一點光 我想你 蝴蝶有一滴淚 落在翅膀上 我想你 星星把夜晚嚼碎了 又吐出來 雪白的骨頭 我想你 今晚沒...
    無魚阅读 173评论 4 4
  • “我认识你,永远记得你。那时候,你还很年轻,人人都说你美,现在,我是来特意来告诉你,对我来说,我觉得现在你比年轻的...
    cdx阅读 638评论 0 0