从相机图像创建 base64 编码的 JPG 字符串以供上传

Creating base64 encoded JPG string from image from camera for upload

我正在构建一个 Android 应用程序,它可以拍照,然后将它们上传到 Rails API。

api 需要 base64 编码的原始文件字节,以 JPG 格式存储为表示图像的临时文件。

但是,API 拒绝上传的文件并显示以下错误消息:

<Paperclip::Errors::NotIdentifiedByImageMagickError:

这似乎是由于 Android 应用程序编码失败造成的。

我发送的 base64 图像字节如下所示:

光看是无效的

图像是在 android 中创建的,方法是使用相机 API 拍摄照片并对生成的字节数组进行 base64 编码:

String encoded = Base64.encodeToString(byteArray, Base64.DEFAULT);

有人知道我做错了什么吗?

单击按钮从相机捕获图像时使用此

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
            File f = new File(android.os.Environment.getExternalStorageDirectory(), "temp.jpg");
            intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f));
            ((Activity) context).startActivityForResult(intent, Constants.REQUEST_IMAGE_CAPTURE);

并在 activityactivity 的结果上执行以下代码:

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
final ImageView uploadArea = (ImageView) attachmentDialog.findViewById(R.id.uploadArea);
        Bitmap bitmap;
        if (resultCode == RESULT_OK) {
            if (requestCode == 1) {

                File f = new File(Environment.getExternalStorageDirectory().toString());
                for (File temp : f.listFiles()) {
                    if (temp.getName().equals("temp.jpg")) {
                        f = temp;
                        break;
                    }
                }
                try {
                    BitmapFactory.Options bitmapOptions = new BitmapFactory.Options();

                    bitmap = BitmapFactory.decodeFile(f.getAbsolutePath(),
                            bitmapOptions);

                    Matrix matrix = new Matrix();

                    matrix.postRotate(-90);

                    Bitmap rotatedBitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
                    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
                    rotatedBitmap.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream);
                    byte[] attachmentBytes = byteArrayOutputStream.toByteArray();

                    String attachmentData = Base64.encodeToString(attachmentBytes, Base64.DEFAULT);


                    uploadArea.setImageBitmap(rotatedBitmap);

                    String path = android.os.Environment
                            .getExternalStorageDirectory()
                            + File.separator
                            + "CTSTemp" + File.separator + "default";
                    f.delete();
                    OutputStream outFile = null;
                    File file = new File(path, String.valueOf(System.currentTimeMillis()) + ".jpg");
                    try {
                        outFile = new FileOutputStream(file);
                        bitmap.compress(Bitmap.CompressFormat.JPEG, 85, outFile);
                        outFile.flush();
                        outFile.close();
                    } catch (FileNotFoundException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
}

希望对您有所帮助,如需更多信息,请咨询