画画板小案例 代码已上传https://gitee.com/nangongyibin/Android_DrawingVersion ...
分类:
其他好文 时间:
2019-01-10 22:59:58
阅读次数:
154
制作一个画画板,有清屏有橡皮擦有画笔可以换颜色 画画板 body{ background color: ccc; } .control bar{ vertical align:top; display:inline block; } 清屏 画笔 橡皮擦 (function(){ var w=800; ...
分类:
其他好文 时间:
2017-11-19 15:35:30
阅读次数:
143
使用CAShapeLayer 和 UIBezierPath 实现的画画功能。 1、首先根据触摸屏幕获取点信息: - (CGPoint)pointWithTouches:(NSSet *)touches{ UITouch *touch = [touches anyObject]; return [to ...
分类:
其他好文 时间:
2017-03-07 13:11:59
阅读次数:
133
#画画板(掌握) >记录用户触摸事件的XY坐标,绘制直线 * 给ImageView设置触摸侦听,得到用户的触摸事件,并获知用户触摸ImageView的坐标 iv.setOnTouchListener(new OnTouchListener() { @Override public boolean o ...
分类:
其他好文 时间:
2017-02-13 14:01:59
阅读次数:
215
页面布局,相对布局 按钮位于父窗体的下方使用android:layout_alignParentBottom=”true” 图片位于按钮的上方,填充父窗体,使用android:layout_above=”@+id/xxxxxid” 获取到ImageView对象 调用Bitmap.createBitm ...
分类:
移动开发 时间:
2016-04-02 17:29:34
阅读次数:
233
1 @interface NJView () 2 /** 3 * 定义一个大数组(大数组中保存小数组, 每一个小数组保存一条直线所有的点) 4 */ 5 @property (nonatomic, strong) NSMutableArray *totalPoints; 6 ...
分类:
移动开发 时间:
2016-01-23 18:26:55
阅读次数:
207
终于效果例如以下:一、简单说明 1、使用一个数组 strokesArr(笔画数组)记录全部笔画。数组中保存的是一个个的笔画字典,一个字典就是一个笔画。笔画字典中有三项:笔画的大小、颜色、pointsArrInOneStroke数组,(保存的是touch begin时的落笔点和touch move过....
分类:
移动开发 时间:
2016-01-07 16:04:11
阅读次数:
233
Android上的第三方开源DrawableView支持手写,类似于写字板。DrawableView支持改变画笔颜色,画笔线条粗细,画布的手势缩放和拖曳显示部分区域。并最终支持将手绘的图保存到本地。在github上的项目主页:https://github.com/PaNaVTEC/DrawableV...
分类:
其他好文 时间:
2015-12-04 01:03:53
阅读次数:
247
package com.example.huahuaban;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import android.net.Uri;import a...
分类:
移动开发 时间:
2015-11-19 13:04:12
阅读次数:
261