Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create a program that emulates the camera. How can I store the Image to a file in the mobile? I am targeting Symbian S60v3, using Nokia N82 for my test mobile.

share|improve this question

1 Answer

up vote 2 down vote accepted

Nevermind, I got it. I can just use a FileConnection to write it -

        FileConnection filecon = (FileConnection)
                 Connector.open("file:///E:/imagefile.jpg");
        if (!filecon.exists())
            filecon.create(); // create the file if it doesn't exist
        DataOutputStream os = filecon.openDataOutputStream();
        os.write(raw);  // Raw image

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.