Android :: Cropping In Camera Application And Photo Location

Oct 26, 2009

I have not noticed this posted yet so just adding here for those that have not found it. The new camera/video/gallery application supports cropping. After taking a photo or viewing in the gallery, press the Menu button and Crop. You can resize the crop box by touching the edges or move it by touching in the center. Using this feature I was able to create and share panoramic images that were much more interesting. Clicking Menu and then More reveals the "Show on Map" command which displays the location the photo was taken.

Android :: Cropping in Camera Application and Photo Location


Android :: Live Wallpaper - Cropping Photo Activity

Jun 1, 2010

I'm trying to crop a photo to use in a Live Wallpaper but I'm getting a FileNotFoundException when the crop activity tries to save my new cropped image. This is the code I'm using:

File file = new File(getFilesDir(), "wallpaper.jpg");
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setData(uri);
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
intent.putExtra("outputX", metrics.widthPixels * 2);
intent.putExtra("outputY", metrics.heightPixels);
intent.putExtra("aspectX", metrics.widthPixels * 2);
intent.putExtra("aspectY", metrics.heightPixels);
intent.putExtra("scale", true);
intent.putExtra("noFaceDetection", true);
intent.putExtra("output", Uri.parse("file:/" + file.getAbsolutePath()));
startActivityForResult(intent, REQUEST_CROP_IMAGE);

The wallpaper.jpg file seems to exist on DDMS file explorer so I'm not sure what I'm doing wrong.

View 2 Replies View Related

General :: Android Web Browsers - Cropping Profile Photo In Facebook

Jun 27, 2012

Any web browser where the resize/crop profile photo window in Desktop (full) version of facebook actually works? Seriously, I can not change my friggin fb profile pic because when it asks to drag the edges of the box to crop the photo, it wont do anything. When I touch it and try to drag, it just moves the entire screen around. It wont actually select it...kind of like you do when you click inside a Flash window. I have tried stock browser, Boat, Dolphin HD and Opera. None of them will move or resize the drag box. Im stuck without PC access and have been wanting to change my photo for months but have not been able to. I dont understand this. When I had my Touch Pro 2 with Windows Mobile and used Opera Mobile, I had absolutely no problem dragging that box around.

View 1 Replies View Related

Android :: Need To Push Intent To Default Camera Application To Make It Take Photo

Apr 28, 2010

I need to push an intent to default camera application to make it take a photo, save it and return an URI. Is there any way to do this?

View 2 Replies View Related

HTC Incredible :: Camera Application Software Improve Photo Quality?

Aug 9, 2010

I'll keep this one short - I just want to know if anyone has tried some of the available camera apps, and actually noticed better Incredible photos with less noise, brighter indoor photos without flash, color rendering, or better focus. If you could explain any theoreticals on how software interacts with the hardware to produce such improvements, that would be appreciated too.

View 1 Replies View Related

Motorola Milestone :: Camera - Photo Right Edge Shows A Thin Vertical Strip Of Next Photo

Oct 20, 2010

Has anyone else experienced a strange problem with the Milestone (running 2.1) camera - in every photo, the right edge shows a thin vertical strip of the next photo! Shows in both Gallery & Media Gallery.. but don't have a similar issue in a video.

View 5 Replies View Related

HTC Hero :: Camera Not Working - Message The Application Camera Process Com.android.camera Has Stopped Unexpectedly Please Try Again

Dec 6, 2009

My camera stopped working. When I click my camera application I get the message "The application camera (process com.android.camera) has stopped unexpectedly. Please try again". It's just a blank screen?

View 3 Replies View Related

HTC EVO 4G : What Is Photo Location In Phone?

Jun 9, 2010

Where are the pictures taken on the EVO located? Are they stored on the SD card, or the internal memory of the phone?

View 3 Replies View Related

HTC Hero :: How To Move Photo / File To New Location?

Dec 28, 2009

Just a quick thank you to all the regulars who give up their time to populate these forums with some great advice that has made my first week of Hero ownership so much more fruitful. Now I wish to move a photo from one place to another folder using Astro and somewhere I'm losing the plot. I long press the photo, I then choose edit, then move......but then how do I actually move the photo/file to it's new location?

View 2 Replies View Related

Motorola Droid :: Photo/Video Default Storage Location

Feb 28, 2010

Does anyone know if there is a way to change the default storage locations for video or photos taken with the Moto Droid?

View 2 Replies View Related

Android :: Camera Photo Completely Black

Aug 25, 2009

I am creating a little application where I use the Android Camera class. Everything seems to work but the result is a black picture. I think I forget to set a parameter. Do you have any ideas on which parameter I must set up ?

The code:
public boolean takeIt() { ImageCaptureCallback iccb = null;
try { String filename = "photo.jpeg";
ContentValues values = new ContentValues();
values.put(Media.TITLE, filename);
values.put(Media.DESCRIPTION, "Image capture by camera");
iccb = new ImageCaptureCallback(new FileOutputStream(new File (dataMgr.getRoot(), filename)));
} catch(Exception ex ){ ex.printStackTrace();
} camera.takePicture(mShutterCallback, mPictureCallbackRaw, iccb);
return true;
}

View 2 Replies View Related

Android :: Upload A Photo From Camera To PHP Server

Sep 13, 2010

I have 3 days into this and my mind is melting oozing out my ears...

The end result is that I want to upload selected photos from and Android phone to a php website.

I can display the images from the camera and get the filename that I want to upload. However I cannot use FileInputStream on the file name because it is not private to my application. Use FileInputStream generates an error that the file contains a path separater.

Does anyone know how to get the filestream running? Do I have to copy the file into a private file store?

After 3 days of googling this I am amazed I haven't that answer.

View 1 Replies View Related

Android :: Emulator Version - Using For Photo - Camera Testing

Feb 24, 2009

I have 1.0 r2 and it takes garbage pictures, and crashes when trying to view any saved image (I've only saved images taken from the emulator's "camera" so I don't know if it shows images that were pushed via adb properly.)

I'll try the 1.1 SDK, and failing that, an earlier version.

Is this a known issue, sort of a "well, if you're really going to work with pictures, you should be using a G1 anyhow..." kind of thing?

View 2 Replies View Related

Android :: How Can I Create Photo - Apply Cool Effects With Camera

Jun 11, 2010

I'd like to make an Android app that lets a user apply cool effects to photos taken with the camera. There are already a few out there, I know, but I'd like to try my own hand at one.

I have been googling and stack-overflowing, but so far I've mostly found some references to published papers or books. I am ordering this one from Amazon presently - Digital Image Processing: An Algorithmic Introduction using Java

After some reading, I think I have a basic understanding of manipulating the RGB values for all the pixels in the image. My main question is how do I come up with a transformation that produces cool effects?

By cool effects I mean some like those in these iPhone apps:

I already have quite a bit of experience with Java, and I've made my first app for android already. Any ideas?

View 1 Replies View Related

Android : Trying To Iterate Through All Photo Images - Produced By ADP1 Camera

Feb 12, 2009

I am trying to iterate through all the photo images (produced by ADP1 camera), held on external SD storage in an ADP1. I want to extract the binary data for each image file, determine image size in bytes and send the image data (possibly after compression) over a network conection.

My code is generating an exception when I try to generate a Bitmap based on Photos taken by the ADP1 Camera, stored physically on External SD Card Storage. It looks like the image size is exhausting VM for my application.

I attempt to extract a Bitmap via android.provider.MediaStore.Images.Media.getBitmap() static member function. Code...

View 2 Replies View Related

Camera Force Close In App When Take Photo?

Nov 26, 2012

i have an apk app which can take photo and take video with a button.

I have first device running the app and I have 2 button, take photo and take video.When I click take video in this app and it works well but when i click take picture from the button, the app always "force closes".

this is my error logcat

11-19 14:43:27.085: ERROR/AndroidRuntime(6903): FATAL EXCEPTION: main 11-19 14:43:27.085: ERROR/AndroidRuntime(6903): java.lang.NullPointerException
11-19 14:43:27.085: ERROR/AndroidRuntime(6903): at com.android.camera.Camera.initializeFirstTime(Came [code].......

View 6 Replies View Related

Android :: Camera Date/location Watermatk App?

Apr 29, 2010

I'm want date and lat/long to be automatically overlaid when I take a pic. Anyone heard of such an app?

View 2 Replies View Related

Motorola Droid X :: Panoramic Photo Using Camera 360

Jul 27, 2010

Does anyone know if you can shoot a panoramic photo with the Droid X if you are using the Camera 360 app? I've looked through the settings & different shooting options, and can't find where I can?

View 2 Replies View Related

HTC Desire :: Problems With Photo Files When Trying To Use Camera

Sep 2, 2010

Just a small problem I have with my files when trying to use the camera, apologies if this has been dealt with already but don't fancy trawling the forums whilst on my mobile When trying to use the camera I get the message "unable to save file to SD card due to insufficient file permissions"

I am also unable to view a lot of my photos on the SD card through the gallery where as previously I didn't have any such problem. I am rooted and have bog standard 2.2 with sense UI

View 2 Replies View Related

General :: Galaxy S2 - Take Photo Without Opening Camera App?

Mar 26, 2012

We all had these moments when we just had the opportunity to take the perfect picture, but the camera app slowed us down and we missed it.

Thats why i came up with an idea which will allow you to take photos from your homescreen / anywhere with one of the hardware buttons without opening the camera app first.

Is this something you can achieve with the app tasker?

Im using the galaxy s2

View 2 Replies View Related

General :: How Fast Camera Takes A Photo

Nov 13, 2012

What affects how fast the camera takes a photo? Is it software (app or possibly rom?), hardware(camera, ram, cpu), or something else? Just wondering, because I noticed my friends s3 take photos much faster, especially in regard to auto focusing (iphone as well). I have an HTC Sensation, and my camera takes much longer to take a photo.

View 1 Replies View Related

General :: Can't Take Photo With Camera - SD Card Is Full?

Apr 23, 2014

i flashed my a13 tablet t730 mainboard all things goes right but i can't take a photo with the camera it said your sd card is full??

View 5 Replies View Related

HTC Incredible :: Resetting Camera Photo File Names

Sep 29, 2010

I Love my HTC Droid Incredible. I have no problems using the camera or moving images where I want them (Facebook, Flickr, or my PC). As I take photos, they are saved as a file name like "IMAG0029.jpg". They sequentially increment. I am fine with that.

What I would like, is, a way to re-set the embedded number to zero; either when the camera is empty (after a download), or manually.

View 1 Replies View Related

General :: Camera App With Recording And Photo Button On Screen

Apr 12, 2012

I have been feeling the need for a cam app that would have the record button and the button for shooting a pic on screen. So many times i have recorded a vid instead of taking a pic making the poser like a statue artist. Is there an app that would be compatible with gingerbread 2.3.6? (i have a gs2 btw) .

View 1 Replies View Related

Sony Ericsson Xperia X10 : Get Camera To Use Flash When Taking A Photo / App?

May 8, 2010

I got my X10 in Australia at last, can anyone tell me how to get the camera to use flash when taking a photo.
I can get the light to come on in video mode but just want to use as flash.

Is there an app out there or am I just stuck with crappy camera that cant take pics at night.

View 11 Replies View Related

General :: Add Folders To Google+ Photo Backup (other Camera Apps)

May 24, 2013

Since other camera apps use other folders to save the pictures in them, how can I add those folders to also sync to Google+? Do I need to change the folders these apps save too?

View 1 Replies View Related

Motorola Droid X :: Camera Screen - Photo Doesn't Exist But Still Shows Up

Aug 5, 2010

When at the home screen and then moving two screens to the right I get to what looks to be some type of image player in the middle and it has the Media Share, Blockbuster, Camcorder, and Gallery at the bottom.

While playing around with the camera I just took some random photos of junk and have since deleted them. But now in the middle of the screen I still see what seems to be the last image I took. Yet the file isn't actually on the phone or card. The round button in the middle (with the square around the 'play' icon) is selected but red (when I touch it it turns green and used to scroll through the photos before I deleted them).

How do I get this ugly blurry test image out of this screen and back to the way it was before?

View 4 Replies View Related

HTC Hero :: Camera Picture Location

Oct 19, 2009

Where the photos are stored once they have been taken, etc.. I'm attempting to upload a picture on Sketch Online.

View 6 Replies View Related

Motorola Droid :: Camera Photos And GPS Location

Nov 20, 2009

I noticed when I take a photo, if you look at the details of that photo, it has the GPS location of where it was taken recorded. Are there any apps that take advantage of that? Like something that shows the images on a map or something?

View 3 Replies View Related

General :: Default Camera Pictures Location?

Jul 6, 2012

Many people think that the pictures taken from the phone camera are stored in internal storage and think they are losing internal memory because of taking picture bit the pictures you take is stored on sd card

Images are stored insdcardDCIMcamera

so dont worry take pictures

instal link 2 sd and wipe all cache and dalvik-cache to free up 5-15mb

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved