##实现白板功能
- 画笔颜色自定义
- 橡皮擦功能
- 缩放
- 移动
- 撤销画笔上一步的操作
- 清空画笔操作
- 旋转可自定义角度
- 可禁用白板功能
- 补充说明 demo中通过 WebSocket 实现互动功能 (WebSocket 请自行部署,效果图已添加再项目中)
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencyResolutionManagement {
repositories {
// JitPack 远程仓库:https://jitpack.io
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.stone-gao:blankSpace:1.0.0'
}
<com.gl.blankspaceview.widget.BlankPhotoView
android:id="@+id/photoView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:src="@mipmap/test" />
详见demo