Git Product home page Git Product logo

Comments (5)

pwittchen avatar pwittchen commented on July 24, 2024 2

I think, it's not in the scope of this project. Once, you capture the picture as a File type, then you can do whatever you want with it (e.g. convert it into base64 format).

Here you have simple code snippet in Java with using Apache Commons IO:

    File file = new File(...);

    imageCapture.takePicture(file,
        new ImageCapture.OnImageSavedListener() {
            @Override
            public void onImageSaved(File file) {
                byte[] fileContent = FileUtils.readFileToByteArray(file);
                String encodedString = Base64.getEncoder().encodeToString(fileContent);
            }
            @Override
            public void onError(
                    ImageCapture.UseCaseError useCaseError,
                    String message,
                    Throwable cause) {
                // handle error here
            }
    }

It's just one example. I think, in case of Android you can try to search for a more lightweight solution for conversion without additional library to the reduce the final app size. Alternatively, you can try to copy code of this method into your project if license allows to do that because AFAIK, Apache Commons IO is an open-source project.

Here you have reference articles:

Regards,
Piotr

from camera-samples.

owahltinez avatar owahltinez commented on July 24, 2024 1

@jaypratapsingh unfortunately capturing images directly in base64 is out of scope for this project as well as the library itself.

from camera-samples.

Pinkal7600 avatar Pinkal7600 commented on July 24, 2024

@jaypratapsingh To convert image into base64 you can check solution from StackOverflow.

from camera-samples.

jaypratapsingh avatar jaypratapsingh commented on July 24, 2024

No, I mean I want to get the base64 when we take the picture from the camera.

from camera-samples.

jaypratapsingh avatar jaypratapsingh commented on July 24, 2024

Thanks, @pwittchen, yup I can go with it meanwhile if there is any other way by which I could get directly base64 it would be great.

from camera-samples.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.