-1
我想知道是否有一個應用程序的示例,用於在從手機加載的照片庫中添加文本。保存編輯後的照片後。由於在一張照片中添加文字(eclipse)
我想知道是否有一個應用程序的示例,用於在從手機加載的照片庫中添加文本。保存編輯後的照片後。由於在一張照片中添加文字(eclipse)
你可能會想嘗試this:
public static Bitmap mark(Bitmap src, String watermark, Point location, Color color, int alpha, int size, boolean underline) {
int w = src.getWidth();
int h = src.getHeight();
Bitmap result = Bitmap.createBitmap(w, h, src.getConfig());
Canvas canvas = new Canvas(result);
canvas.drawBitmap(src, 0, 0, null);
Paint paint = new Paint();
paint.setColor(color);
paint.setAlpha(alpha);
paint.setTextSize(size);
paint.setAntiAlias(true);
paint.setUnderlineText(underline);
canvas.drawText(watermark, location.x, location.y, paint);
return result;
}
我有點困惑你的要求。你是否在向像水印或其他的圖像添加文字? – Kyle
是的,您可以通過多種方式實現此目的。只是谷歌它 –
添加文字到畫廊中的照片 – ddd