我想将音频文件添加到图像中。因此,当有人得到该图像时,他可以从中提取声音。我认为我们可以在图像标题中添加额外的数据。但我不知道如何在 Android 中进行这种标头处理。你能指导我吗...
问问题
1472 次
1 回答
1
使用下面的代码,您可以在 Android 中向 JPEG 标头添加一个小注释。它仅适用于 JPEG。
final static String EXIF_TAG = "UserComment";
public static boolean setComment(String imagePath, String comment) {
try {
ExifInterface exif = new ExifInterface(imagePath);
exif.setAttribute(EXIF_TAG, comment);
exif.saveAttributes();
} catch (IOException e) {
e.printStackTrace();
}
return true;
}
但问题是您不能将音频文件放在那里,因为数据流太大而无法放入标题中。
于 2012-10-23T10:42:01.363 回答