Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a camera take a picture (as a BMP) in a class. The user then clicks Done when they have the picture they want. How do I go about accessing that saved bmp in another class?

In other words, how do I use that saved pic in a different class and do something to that picture? Do I have to declare it globally?

Thanks!

share|improve this question
1  
What language? What platform? – Oded Nov 14 '10 at 16:33
Regardless of the language, you should strongly consider passing the picture as an argument to a method in the class you want to be able to access it, rather than exposing it as a global variable. – Cody Gray Nov 14 '10 at 16:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.