是否可以合并两个 jpeg 文件?如果是的话怎么办?
我正在尝试在我的应用程序中合并两个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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
检查这篇文章合并两个图像并存储在SD卡中:
组合图像
Check this post for Combining two images and stores in SDcard :
Combining Images