Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-08 Thread Streets Of Boston
These questions have been going around on these boards before :-) And i dealt with these questions as well (I wrote a camera app that can deal with large pictures). You just have to deal with memory limitations. When you load or create a bitmap, it takes up RAM according to its size and config.

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Jim Graham
On Sat, Jul 07, 2012 at 03:41:26PM -0400, Mark Murphy wrote: > On Sat, Jul 7, 2012 at 3:33 PM, Jim Graham wrote: > > No, but it's my alternative for blending any photographic color filters > > (e.g., solid color, graduated, and/or split-field) with the photo, and > > then doing stuff like brightne

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Mark Murphy
On Sat, Jul 7, 2012 at 3:33 PM, Jim Graham wrote: > No, but it's my alternative for blending any photographic color filters > (e.g., solid color, graduated, and/or split-field) with the photo, and > then doing stuff like brightness, ontrast, color balance, gamma, and so > on, without running into

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Jim Graham
On Sat, Jul 07, 2012 at 03:26:15PM -0400, Mark Murphy wrote: > On Sat, Jul 7, 2012 at 3:22 PM, Jim Graham wrote: > >> The heap sizes are generally larger for such devices. > > > > Does this mean that I can't support those? > > I have no idea what you mean by that. If your app is running on a > d

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Mark Murphy
On Sat, Jul 7, 2012 at 3:22 PM, Jim Graham wrote: > On Sat, Jul 07, 2012 at 03:15:38PM -0400, Mark Murphy wrote: >> On Sat, Jul 7, 2012 at 3:13 PM, Jim Graham wrote: >> > Just wondering, how are Android devices with cameras 8 MP or higher >> > supported in Java, when just taking the photo is eith

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Jim Graham
On Sat, Jul 07, 2012 at 03:15:38PM -0400, Mark Murphy wrote: > On Sat, Jul 7, 2012 at 3:13 PM, Jim Graham wrote: > > Just wondering, how are Android devices with cameras 8 MP or higher > > supported in Java, when just taking the photo is either enough to > > violate the memory limits, or is close

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Mark Murphy
On Sat, Jul 7, 2012 at 3:13 PM, Jim Graham wrote: > Just wondering, how are Android devices with cameras 8 MP or higher > supported in Java, when just taking the photo is either enough to > violate the memory limits, or is close to it (particularly for > 10+ MP cameras)? The heap sizes are genera

[android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Jim Graham
Just wondering, how are Android devices with cameras 8 MP or higher supported in Java, when just taking the photo is either enough to violate the memory limits, or is close to it (particularly for 10+ MP cameras)? And how would I, in my camera app, provide that same support? Thanks, --jim --