I got cropping to work on captured images a Motorola Droid using the
built-in CropImage activity, but I first save the image to the SD card
before calling the CropImage activity. However, like SOB said this
does not work on all devices, such as the Nexus One.
I haven't tried this, but you might wa
No. I am searching for it.
On Mar 1, 1:56 am, Damian wrote:
> I have encountered this problem also. Did you find a solution?
>
> On Feb 16, 11:50 am,VaibhavGoel wrote:
>
> > By removing class-name and private restrictions, it works for the
> > images picked from gallery but when i pass Uri ofima
I have encountered this problem also. Did you find a solution?
On Feb 16, 11:50 am, Vaibhav Goel wrote:
> By removing class-name and private restrictions, it works for the
> images picked from gallery but when i pass Uri ofimageafter
> capturing it from camera, it gives Activity not found excepti
By removing class-name and private restrictions, it works for the
images picked from gallery but when i pass Uri of image after
capturing it from camera, it gives Activity not found exception as
shown below.
Code used:
Intent i = new
Intent(MediaStore.ACTION_IMAGE
First, don't set the class-name.
Your customer's phone may not have this particular activity
(com.android.camera.CropImage) installed.
But this should not give you the 'permission denial' error.
Maybe the CROP action can only crop public images. You set yours to
PRIVATE.
On Feb 12, 9:18 am, Vaibh
Thanks, Tuhin, for your intrest. But I want to crop the image, not re-
scale the image, where user can select the area to be croped form the
full size image.
On Feb 15, 2:40 pm, Tuhin subhra wrote:
> Bitmap bitmapOrg = BitmapFactory.decodeFile(Location_Image.filename);
> i
Bitmap bitmapOrg = BitmapFactory.decodeFile(Location_Image.filename);
int width = bitmapOrg.getWidth();
int height = bitmapOrg.getHeight();
int newWidth = 200;
int newHeight = 200;
// calculate the scale - in t
7 matches
Mail list logo