1

I have called an intent by passing action "android.media.action.IMAGE_CAPTURE"

i.e. intent.setAction("android.media.action.IMAGE_CAPTURE");and the image I get is small size.and i want to get Full Sized image of 730X1115 size.How can I get that.

Geetanjali
  • 1,043
  • 3
  • 13
  • 37

2 Answers2

0

Have you tried using

Intent cameraIntent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);

Though both your code and this redirects you to the Native Camera there is been much difference with the quality considerations. May be you should give it a try.

Andro Selva
  • 53,910
  • 52
  • 193
  • 240
  • I have tried it but there is no rectangle coming for cropping image – Geetanjali Aug 06 '11 at 04:14
  • But you cannot expect users to drop the images right! It is we who have to do it in program. Once you are done capturing image using camera use bitmap and compress or scale your image accordingly. I believe this is how we do it. – Andro Selva Aug 06 '11 at 04:23
  • no no I mean that when we capture the image by camera then i have used crop = true then why is it not showing any rectangle – Geetanjali Aug 06 '11 at 04:40
  • and i have already done all this.using bitmap and completed all – Geetanjali Aug 06 '11 at 04:40
0

I have scaled that image by giving the dimensions of the border in which it gets fit.

Geetanjali
  • 1,043
  • 3
  • 13
  • 37