引言
Android的手写效率一直是件头疼的事情,比如手写效率、笔锋效果、手掌抑制等等,本文搜集了关于手写的开源项目和一些相关的文章资料。
开源项目
1 android-signaturepad
项目地址:android-signaturepad
项目介绍:这是一款银行手写签名的应用,通过event的getHistory方法获取存储在MotionEvent...
分类:
移动开发 时间:
2014-12-04 21:42:07
阅读次数:
342
CColorDialog dlg;
dlg.DoModal();
COLORREF m_crCurColor;
m_crCurColor = dlg.GetColor();
CPen m_pen(PS_SOLID,1,m_crCurColor);
HDC hdc = ::GetDC(m_hWnd);
SelectObject(hdc, m_pen);
::MoveToEx(hdc,...
分类:
其他好文 时间:
2014-11-24 15:26:56
阅读次数:
182
Graphics g
= e.Graphics;
g.SmoothingMode
= SmoothingMode.AntiAlias;
g.FillRectangle(Brushes.White,
this.ClientRectangle);
Pen p
=
new Pen(Color.Black,
10);
p.StartCap
= LineCap.Round;
p.En...
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.W...
//第一种;(单线程)
+ (id)sharePen{
static Pen *pen = nil;
if (pen == nil) {
pen = [[Pen alloc] init];
}
return pen;
}
//第二种;
+ (id)sharePen{
static Pen *pen = nil;...
分类:
移动开发 时间:
2014-09-18 20:47:14
阅读次数:
183
/*写一个程序可以对两个字符串进行测试,得知第一个字符串是否包含在第二个字符串中。如字符串”PEN”包含在字符串“INDEPENDENT”中*/#include #include void main(){ char a[100]; char b[100]; int i , j; ...
分类:
编程语言 时间:
2014-08-25 20:49:15
阅读次数:
229
今天举行了英语词汇发音交流会
一共有三个环节。第一个环节读单词我们组读的单词it、pen、do、stop、think、park、sink、wood,在这一个环节中我感受到了,什么是一个团队。对于我们这些读音存在大问题的,我们的团队,让我们优先选择把握大的单词,然后剩余的归他们,在这个过程中大家默契配合,大家相互听对方的发音,大家尽自己最大的努力把自己读的那个单词,尽可能的读到最好。...
分类:
其他好文 时间:
2014-08-17 17:07:22
阅读次数:
216
Linux下编程难免要开启多个vim共同编辑同一个文件,这时再次保存就会出现:swap file "*.swp" already exists![O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:原因:使用...
分类:
其他好文 时间:
2014-08-12 00:19:03
阅读次数:
675
****Dlg.h头文件添加:
//为工程添加画笔、点变量数组
public:
CPen m_pen[5];
CPoint m_point[5];
public:
void DrawLine(CDC *pDC);
void DrawPolyline(CDC *pDC);
void DrawPolygon(CDC *pDC);
void DrawRect(CDC *pDC);
voi...
分类:
其他好文 时间:
2014-08-07 23:12:37
阅读次数:
427
COLORREF circle_color = RGB(0, 105, 255); //获取窗口DC HDC hdc = GetDC(hWnd_); //背景色透明 SetBkMode(hdc, TRANSPARENT); // 这里的像素是相对窗体来说的, 而不是屏幕坐标, HPEN pen =....