旋转位图图像上的阴影
以下是我的代码,
Paint mShadow = new Paint();
mShadow.setAntiAlias(true);
mShadow.setShadowLayer(10, 10,10, Color.BLACK);
canvas.save();
canvas.rotate((int)degrees, 100, 100);
canvas.drawBitmap(_image,200,200, mShadow);
canvas.restore();
尝试过,但阴影也会旋转。
如何让影子保持在同一个方向?
Following is my code,
Paint mShadow = new Paint();
mShadow.setAntiAlias(true);
mShadow.setShadowLayer(10, 10,10, Color.BLACK);
canvas.save();
canvas.rotate((int)degrees, 100, 100);
canvas.drawBitmap(_image,200,200, mShadow);
canvas.restore();
Tried this but the shadow rotates as well.
How can you get the shadow to stay in same direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这样:
try it like this: