BlackBerry - 如何从较大图像创建子图像?

发布于 2024-08-17 20:08:31 字数 97 浏览 2 评论 0原文

我需要在运行时从较大的图像创建一个新的较小的图像。较小的图像尺寸是固定的(正方形)并表示较大图像的特定区域(较小的图像是较大图像的子集)。图像格式并不重要。

谢谢。

I need to create a new, smaller, image from a larger image at runtime. The smaller image size is fixed (square) and represents a specific region of the larger image (the smaller image is a subset of the larger image). Image format doesn't matter.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只有影子陪我不离不弃 2024-08-24 20:08:31

您可以使用此功能:

Bitmap[] splitImage(Bitmap bitmap, int rCnt, int cCnt) {
    Bitmap[] result = new Bitmap[rCnt * cCnt];
    int w = bitmap.getWidth() / cCnt;
    int h = bitmap.getHeight() / rCnt;
    for (int i = 0; i < rCnt; i++)
        for (int j = 0; j < cCnt; j++) {
            Bitmap bitmapPart = new Bitmap(w, h);
            Graphics g = new Graphics(bitmapPart);
            g.drawBitmap(0, 0, w, h, bitmap, w * j, h * i);
            result[i * cCnt + j] = bitmapPart;
        }
    return result;
}

查看 Google 代码上的 BB 益智游戏

You can use this function:

Bitmap[] splitImage(Bitmap bitmap, int rCnt, int cCnt) {
    Bitmap[] result = new Bitmap[rCnt * cCnt];
    int w = bitmap.getWidth() / cCnt;
    int h = bitmap.getHeight() / rCnt;
    for (int i = 0; i < rCnt; i++)
        for (int j = 0; j < cCnt; j++) {
            Bitmap bitmapPart = new Bitmap(w, h);
            Graphics g = new Graphics(bitmapPart);
            g.drawBitmap(0, 0, w, h, bitmap, w * j, h * i);
            result[i * cCnt + j] = bitmapPart;
        }
    return result;
}

Take a look at full source of Puzzle game for BB on Google Code

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文