黑莓 - 裁剪图像
我想裁剪图像的一部分,为此我使用以下代码:
int x=20;
int y=50;
int [] rgbdata=new int[(0+width-x+height-y)* (image.getWidth())];
image.getARGB(rgbdata, 0, image.getWidth(), x, y, width, height);
cropedImage=new Bitmap(image.getWidth(),image.getWidth());
cropedImage.setARGB(rgbdata, 0,image.getWidth(), 80,80, width, height);
x 和 y 是以矩形形式进行裁剪的位置。 但它不起作用。
I want to crop a part of Image, for that I am using following code:
int x=20;
int y=50;
int [] rgbdata=new int[(0+width-x+height-y)* (image.getWidth())];
image.getARGB(rgbdata, 0, image.getWidth(), x, y, width, height);
cropedImage=new Bitmap(image.getWidth(),image.getWidth());
cropedImage.setARGB(rgbdata, 0,image.getWidth(), 80,80, width, height);
x an y are the position from where the cropping will be done in the rectangular form.
but it is not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用图形来做到这一点:
you can do this using graphics: