Bitmap.scaleInto() 函数将在旧版本的黑莓实际设备上工作
谁能告诉我 do scaleinto 函数可以在具有 5.0.0 版本的旧操作系统的实际设备上运行吗?吹的是代码。
public static Bitmap resizeImage(Bitmap originalImage, int newWidth, int newHeight) {
Bitmap newImage = new Bitmap(newWidth, newHeight);
originalImage.scaleInto(newImage, Bitmap.FILTER_BILINEAR, Bitmap.SCALE_TO_FILL);
return newImage;
}
Can anyone tell me that do scaleinto function will work on actual device having older os that 5.0. Bleow is the code.
public static Bitmap resizeImage(Bitmap originalImage, int newWidth, int newHeight) {
Bitmap newImage = new Bitmap(newWidth, newHeight);
originalImage.scaleInto(newImage, Bitmap.FILTER_BILINEAR, Bitmap.SCALE_TO_FILL);
return newImage;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您可以在 API scaleInto 方法仅在 OS 5.0 中添加。您将无法在旧设备上使用它。
No, you can see in the API that the scaleInto method was only added in OS 5.0. You will not be able to use it on older devices.