画矩形、圆形、箭头
Closed this issue · 4 comments
hongliangpan commented
在图片上,画矩形、圆形、箭头等进行标注
siwangqishiq commented
这种东西 在贴图文件夹里 自己放上一些矩形 圆形的图片就可以实现了
hongliangpan commented
贴图方式 放置 一个正方形
怎样进行 非等比缩放 ,变成 长方形?
不是直接贴图为长方形
siwangqishiq commented
目前的缩放方式是计算出一个scale值 然后操作贴图变幻矩阵来完成的 在 StickerItem.java updateRotateAndScale方法中
this.matrix.postScale(scale, scale, this.dstRect.centerX(), this.dstRect.centerY());// 存入scale矩阵
如果需要做非等比缩放 需要postScale的两个参数传不同的缩放值
hongliangpan commented
收到,多谢!