如果您的意思是在图像中添加一些文本是为了添加EXIF信息,
那么您可以查看此链接:
Write/Geotag JPEGs (EXIF data) in Android
如果您想在图像上绘制一些文本,那么以下可能会有所帮助:
将以下代码放在image.compressToJpeg(rectangle, 95, output);
.
建议image.compressToJpeg(rectangle, 100, output);
在绘图时更改此线以获得更好的图像质量。
// Decode the JPEG byte array from 'output' to 'Bitmap' object
Bitmap bmp = BitmapFactory.decodeByteArray(output.toByteArray(), 0, output.size());
// Use 'Canvas' to draw text ont 'Bitmap'
Canvas cv = new Canvas(bmp);
// Prepare 'Paint' for text drawing
Paint mPaint = new Paint();
mPaint.setColor( Color.RED );
mPaint.setStyle( Style.STROKE );
mPaint.setTextSize(20);
// Draw text on the 'Bitmap' image
cv.drawText("TEXT To SHOW", 10, 10, mPaint);
// Reset the stream of 'output' for output writing.
output.reset();
// Compress current 'Bitmap' to 'output' as JPEG format
bmp.compress(CompressFormat.JPEG, 95, output);
然后,您可以使用输出来做任何您需要的事情。