是否可以合并两个 jpeg 文件?如果是的话怎么办?

发布于 2024-12-09 20:11:59 字数 166 浏览 1 评论 0原文

我正在尝试在我的应用程序中合并两个 jpeg 文件,使其成为一个 Jpeg 文件。 通过谷歌搜索我得到了很多例子。但所有示例都适用于位图图像,所以我很无助。

我正在使用相机捕获的一张 jpeg 图像,第二张图像位于我的可绘制目录中。 知道如何做到这一点吗? 如果可能的话请给我一些代码来实现它。 谢谢。

I am trying to combine two jpeg file in my application and make it one Jpeg file.
By Googling i got many example. but all example works with the bitmap image so I'm helpless.

I am using one jpeg image that is captured by the camera and the Second one is available in my drawable dir.
Any idea how to do this?
If is it possible then please give me some code to implement it.
Thanks.

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

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

发布评论

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

评论(2

平生欢 2024-12-16 20:11:59

您可以使用 jpeg.dll 解压缩/压缩 jpeg 图像。如果不解压缩,您无法对 jpeg 图像进行任何更改/添加。

步骤是:

1)读取并解压缩jpeg文件

2)对未压缩的RGB缓冲区进行更改

3)压缩为jpeg并保存文件

编辑:我错过了它是Android平台。对于 Android 平台,您需要使用其 SDK,如下链接:

http://code.google.com/p/jjil/source/browse/trunk/JJIL-Android/src/jjil/android/RgbImageAndroid.java?r=282

you can use jpeg.dll to decompress/compress jpeg images. without decompressing, you can't make any changes/additions on jpeg images.

steps are:

1) read and decompress jpeg files

2) do changes on uncompressed RGB buffers

3) compress as jpeg and save file

edit: I missed it was Android platform. For Android platform you need to use its SDK like the link below:

http://code.google.com/p/jjil/source/browse/trunk/JJIL-Android/src/jjil/android/RgbImageAndroid.java?r=282

梦幻的心爱 2024-12-16 20:11:59

检查这篇文章合并两个图像并存储在SD卡中:

组合图像

Check this post for Combining two images and stores in SDcard :

Combining Images

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