Taking Photo's with the camera and adding as a contact photo

Using my new Palm Pre 2 and took a photo to add as a contact.
The process is simple enough to assign the photo taken to the contact, by lining up within the square and pressing Assign to contact.
However the end result just shows a blurred image of the enlarged photo.
Does anyone know how a picture taken with the camera can be set to view correctly as the contact?
Imported photo's work fine, but that defeats the object, i.e. you see a friend, take their photo but can't add it correctly to your contacts.
Post relates to: Pre 2 p102ueu (Unlocked EU)

Kookie wrote:
I got an HP touch pad and when tapping the camera the screen comes up faceing me with my picture,  If I want a picture of something else I have to turn it around with the back to me and I can't see the picture to focus sit.  Is that right?
Like, I can only take a picture toward me, not in front of me.
That's correct - there is only one camera on the TouchPad, and it was meant for video chatting.  The camera app was added by HP as an afterthought when other Homebrew authors started writing their own "Camera" apps.
Wyrenut 
I am a Volunteer here, not employed by HP.
You too can become an HP Expert! Details HERE!
If my post has helped you, click the Kudos Thumbs up!
If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

Similar Messages

  • Help with taking a pic with Android camera and adding pic to display list

    Hi,
    My students and I have not been able to make an AIR app that can take a picture using the devices camera and then add the image to the display list. We are able to open the devices camera and of course take a picture, but that's it.
    We've been using these two tutorials/examples:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fla sh/media/CameraUI.html
    and
    http://tv.adobe.com/watch/adc-presents/input-for-mobile-devices-camera /
    I've uploaded our project: http://www.dayvid.com/professor/camera.zip
    Can someone help us out?
    Thanks!
    Below is the main document class:
    package  {
    import flash.desktop.NativeApplication;
    import flash.display.Loader;
    import flash.display.MovieClip;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.ErrorEvent;
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.events.MediaEvent;
    import flash.media.CameraUI;
    import flash.media.MediaPromise;
    import flash.media.MediaType;
    import flash.events.MouseEvent;
         public class Main extends MovieClip{
              private var deviceCameraApp:CameraUI = new CameraUI();
              private var imageLoader:Loader;
              public function Main()
                   this.stage.align = StageAlign.TOP_LEFT;
                   this.stage.scaleMode = StageScaleMode.NO_SCALE;
                                     camera_btn.addEventListener(MouseEvent.CLICK, cameraBtnClicked);
                          private function cameraBtnClicked(event:MouseEvent):void
                                    if( CameraUI.isSupported )
                                                      result_txt.text = "Initializing camera...";
                                                      deviceCameraApp.addEventListener( MediaEvent.COMPLETE, imageCaptured );
                                                      deviceCameraApp.addEventListener( Event.CANCEL, captureCanceled );
                                                      deviceCameraApp.addEventListener( ErrorEvent.ERROR, cameraError );
                                                      deviceCameraApp.launch( MediaType.IMAGE );
                   else
                                                      result_txt.text = "Camera interface is not supported.";
              private function imageCaptured( event:MediaEvent ):void
                   result_txt.text = "Media captured...";
                   var imagePromise:MediaPromise = event.data;
                   if( imagePromise.isAsync )
                    result_txt.text = "Asynchronous media promise.";
                    imageLoader = new Loader();
                    imageLoader.contentLoaderInfo.addEventListener( Event.COMPLETE, asyncImageLoaded );
                    imageLoader.addEventListener( IOErrorEvent.IO_ERROR, cameraError );
                    imageLoader.loadFilePromise( imagePromise );
                   else
                    result_txt.text = "Synchronous media promise.";
                    imageLoader.loadFilePromise( imagePromise );
                    showMedia( imageLoader );
              private function captureCanceled( event:Event ):void
                   result_txt.text = "Media capture canceled.";
                   NativeApplication.nativeApplication.exit();
              private function asyncImageLoaded( event:Event ):void
                   result_txt.text = "Media loaded in memory.";
                   showMedia( imageLoader );  
              private function showMedia( loader:Loader ):void
                   this.addChild( loader );
              private function cameraError( error:ErrorEvent ):void
                   result_txt.text = "Error:" + error.text;
                   NativeApplication.nativeApplication.exit();

    Hi,
    My students and I have not been able to make an AIR app that can take a picture using the devices camera and then add the image to the display list. We are able to open the devices camera and of course take a picture, but that's it.
    We've been using these two tutorials/examples:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fla sh/media/CameraUI.html
    and
    http://tv.adobe.com/watch/adc-presents/input-for-mobile-devices-camera /
    I've uploaded our project: http://www.dayvid.com/professor/camera.zip
    Can someone help us out?
    Thanks!
    Below is the main document class:
    package  {
    import flash.desktop.NativeApplication;
    import flash.display.Loader;
    import flash.display.MovieClip;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.ErrorEvent;
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.events.MediaEvent;
    import flash.media.CameraUI;
    import flash.media.MediaPromise;
    import flash.media.MediaType;
    import flash.events.MouseEvent;
         public class Main extends MovieClip{
              private var deviceCameraApp:CameraUI = new CameraUI();
              private var imageLoader:Loader;
              public function Main()
                   this.stage.align = StageAlign.TOP_LEFT;
                   this.stage.scaleMode = StageScaleMode.NO_SCALE;
                                     camera_btn.addEventListener(MouseEvent.CLICK, cameraBtnClicked);
                          private function cameraBtnClicked(event:MouseEvent):void
                                    if( CameraUI.isSupported )
                                                      result_txt.text = "Initializing camera...";
                                                      deviceCameraApp.addEventListener( MediaEvent.COMPLETE, imageCaptured );
                                                      deviceCameraApp.addEventListener( Event.CANCEL, captureCanceled );
                                                      deviceCameraApp.addEventListener( ErrorEvent.ERROR, cameraError );
                                                      deviceCameraApp.launch( MediaType.IMAGE );
                   else
                                                      result_txt.text = "Camera interface is not supported.";
              private function imageCaptured( event:MediaEvent ):void
                   result_txt.text = "Media captured...";
                   var imagePromise:MediaPromise = event.data;
                   if( imagePromise.isAsync )
                    result_txt.text = "Asynchronous media promise.";
                    imageLoader = new Loader();
                    imageLoader.contentLoaderInfo.addEventListener( Event.COMPLETE, asyncImageLoaded );
                    imageLoader.addEventListener( IOErrorEvent.IO_ERROR, cameraError );
                    imageLoader.loadFilePromise( imagePromise );
                   else
                    result_txt.text = "Synchronous media promise.";
                    imageLoader.loadFilePromise( imagePromise );
                    showMedia( imageLoader );
              private function captureCanceled( event:Event ):void
                   result_txt.text = "Media capture canceled.";
                   NativeApplication.nativeApplication.exit();
              private function asyncImageLoaded( event:Event ):void
                   result_txt.text = "Media loaded in memory.";
                   showMedia( imageLoader );  
              private function showMedia( loader:Loader ):void
                   this.addChild( loader );
              private function cameraError( error:ErrorEvent ):void
                   result_txt.text = "Error:" + error.text;
                   NativeApplication.nativeApplication.exit();

  • How do I delete my user ID photo, taken with the camera in the MacBook Pro.  It keeps appearing randomly when I sign in....even after I make changes.

    How do I delete my user ID photo, taken with the camera in the MacBook Pro (when you first buy and set up the computer...).  The photo keeps appearing randomly, even after I've changed it to a "better picture".  I can't get the change to "stick".  Anyone else having trouble with this?  Thanks!

    what OS are you using?

  • How Do I export photo's with the camera info attached?

    I'm trying to export some photo's to another photographer for some constructive feedback. Is there a way to include my camera info used on each shot, such as ISO, Aperture, Shutter speed, etc attached with the photos?

    A few notes:
    • Exposure settings are stored in the EXIF information which is stored in the image-format file.
    • Any file viewer should be able to show you the EXIF information.  You just have to know how to use the viewer.
    • As shown, in the OS X program "Preview" use "Tools ▹ Show Inspector" to see the EXIF
    • Your friend will have to know how to show the EXIF with the viewer s/he uses.
    • The OS X program "Preview" should not be confused with what in Aperture is called a "Preview".
    • Previews in Aperture are, in effect, large JPG-format thumbnails.  Their existence and size are set in Aperture Preferences.
    • Previews exported from Aperture _should_ contain the EXIF info.  (Sorry, I can't confirm this right now -- but it is easy to check.)
    • Files created  by exporting Images from Aperture contain the EXIF by default.
    • You can put the exposure settings _on_ the picture or on a border around the picture using the highly-regarded Aperture plug-in BorderFX.  I suggest doing this, saving the BorderFX preset, and re-using it for each Image you want to share with your friend.
    • Example:
    (Sorry -- will add later.  Forum software not allowing me to include a picture file.)

  • I'm having trouble taking a landscape with the Camera Fill Feature. What am I doing wrong?

    The application interface rotates to a landscape orientation automatically when using the Camera Fill feature, simply holding the phone itself in a horizontal orientation before entering the Camera Fill mode gives the most predictable results.

    Double check all your audio settings. 
    System Preferences --> Sound --> Input should be set to your audio interface.
    GB --> Preferences --> Audio/MIDI --> Input should be set to your audio interface.
    With your track selected, open the Track Info pane, and select the Edit tab.  Under input make sure that Mono 1 or 2 is selected (which number will depend on which input you plugged your bass cable into).

  • Transferring photos from my Nikon coolpix s7c  to my mac causes a "communications error" with the camera and will not transfer photos as it has done in the past. Seems to have stopped working with my Mac Lion upgrade?

    iphoto has stopped transferring my photos from my Nikno coolpix s7c camera. Seems like it stopped when I upgraded to Lion? It continues to work with a PC?

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Is there a way to import photos to the iPad without the photo also appearing in the Camera Roll?  I have a Photo Transer app that lets me wirelessly import photos to an album but they also appear in the CR and when you delete from the CR the photo is dele

    Is there a way to import photos to the iPad and put in an album without having the photo also in the Camera Roll?  I have a photo transfer app but when I import the album and photos they are also shown in the CR.  When you delete them from CR they are deleted from the album too.

    You can sync photos from your computer via iTunes, and each folder that you sync will get its own album : syncing photos. You will need to sync all the photos that you want on the iPad together in one go - synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next sync.
    In terms of albums that you create directly on the iPad no, effectively you are just creating pointers to the photos in those new albums, so if you delete the original photo you will therefore also be deleting all pointers to it.
    You could consider a third-party photo management app instead e.g. Photo Manager Pro

  • I can no longer download photos to my ipad with the camera attachment. the message says thats its using too much power. i have a 100% charge and i used it before and it worked fine.

    I can no longer upload photos with the camera attachment. I am getting an error saying the device uses too much power. I have used the device before. Is there anything that can be done to fix this problem?

    You don't actually say what the problem is, but maybe this can help:
    USB and Firewire information:
    http://support.apple.com/kb/HT1151?viewlocale=en_US
    http://support.apple.com/kb/HT4049?viewlocale=en_US

  • We just added a new iPad Air to our family of 4 apple devices and I can not get it to join the automatic Photo Share with the other 3 devices. What have I overlooked in set up?

    I added an iPad Air to our family of Apple devices a few weeks back and can not get it to participate in the auto Photo Share with the other 3 devices. My Mac, iPhone and first generation iPad share but the new device does not. ITunes sees all 4 devices but I can not get the new iPad and other 3 to share.
    Any ideas what I may have overlooked in setup? Thanks!

    Welcome to the Apple Community TM7555.
    Settings > iCloud > Photos > On. Photo stream isn't anything to do wither iTunes.

  • TS1315 I have just purchased the new iPad with the camera connection kit. I just want to bewant to be able to insert my SD card into the Pad and only view my photos, not import them to the pad.  Can this be done and how do I do this.  Please advise.  Thaj

    I have just purchased the new iPad with the camera connection kit.  I just want to be able insert my SD card into the Pad and view my photos, not import them.Can this be done and how?  Please advise.  Thank you.

    See this article: iPad: Using the iPad Camera Connection Kit
    No, this canot be done, afaik. When your camera or card is connected, you will see the thumbnails in the camera pane, but not full size preview. So to browse your photos on the iPad you will need to import them to your camera roll. But you need not delete them from the camera or card after importing, so you might simply import selected photos to your camera roll from the camera grid and then delete them again from the camera roll after importing and browsing, without removing them from the card/camera.
    Regards
    Léonie

  • I have just purchased the new iPad with the camera connection kit.  I just want to view my photos from my SD card, not import them to the iPad.  Can this be done and how is it done?  Please advise.  Thank you.

    I have just purchased the new iPad with the camera connection kit and want to be able to view my photos full screen and not import them.  Can this be done and how?  Please advise.  Thank you.

    When connecting the Camera Connection Kit to a camera or SD card all you see are the thumbnails of the photos. I suggest you review those, select the photos you might want to see full screen, then import them to your iPad. After viewing them you can always delete them if you no longer want them on your iPad.
    I also suggest Keeping the photos on your camera or SD card until you import the to your computer and back them up to at least one other location.

  • I'm giving away my old iPhone 4.   I've deleted all my photos taken with the iPhone.  However, I can't delete the photo album which was taken with my Canon Camera and downloaded to my iPhone from my PC.  How can I remove this album?

    I am giving away my old iPhone 4 with IOS.7 installed. 
    I have deleted all my photos taken with this iPhone, however, I cannot delete
    a photo album I had downloaded from my computer to my iPhone 4.  I've tried via iTunes and
    I've tried to delete them in the same manner as I've deleted photos taken with the iPhone but
    not this album.   HELP  ?
    Thank you.

    You should erase all contents and setting before giving your iphone away.
    iOS: Understanding 'Erase All Content and Settings' - Support - Apple

  • In the synchronized application photos taken with another camera are distorted, as well as those taken on the site for the iphone

    in the synchronized application photos taken with another camera are distorted, as well as those taken on the site for the iphone

    Does the new IOS 8 and instagram only allow pictures taken with the phone? as I can still choose from those, just not the ones I upload/save.
    I don't know about instagram, but apps, that not yet have been upgraded to iOS8 can only access the photos that appear in the "Recently Added" album, because there is no longer a Camera Roll.
    As a work-around, try to create an album of the photos you want to share to instagram. For other apps this helped to make photos accesible.

  • I am trying to attach multiple photos to an email from my ipad 2. I can see how to do it from the camera and camera roll option,but not from the photos program. What am I missing? Thanx so much!

    I am trying to attach multiple photos to an email using ipad 2. I can see how to do it using the camera and camera roll ap...
    But not using the photos ap..which is where the photos are. Any help would be appreciated.!

    In an album in Photos touch the Edit button and then touch the desired photos (up to 5). A blue check appears in each selected photo. Next touch the Share button at the upper left and select Mail. This starts a email with the photos attached.

  • On holidays we took pictures with two cameras and an iPad. I put everithing on my PC. Rearranged them by date, time and or subject putting a number in front of the picture name. I synchronised with my iPad and my pictures show in misselaneous order. Help

    We took pictures during oue holidays with two cameras and an iPad. I put all the pictures on my PC and reorganized them by date, time and/or subject, By putting a number in front of the picture name. Then I synced with my iPad. All the pictures show in a misselaneous order. What went or did I wrong?

    You did nothing wrong, but the photo app puts stuff in chronological order.
    You can look for another app. Afraid I don't have one to suggest, but I do understand that other apps will sort photos differently.

Maybe you are looking for

  • Issue when doing Delta loads from PSA to DSO using DTP - Pls help Urgent

    Hi All, I have done 3 data loads into PSA and from PSA, iam loading the data into DSO - by splitting that load into 3 using 3 DTPs. (Split that by Fiscal Period). 2 of the DTP loads are extracting the data from 3 PSA requests. But, one of the DTP loa

  • PSD files saved as Photoshop Image 13

    I have been using Photoshop CS6 (64 Bit) on my Windows 8.1 laptop (64 bit) for over a year and has been working perfect. About two days ago something weird happened. All of my PSD files show that they are Photoshop Image 13 files instead of showing i

  • Why aren't I allowed to post in the iPad Forum?

    I was allowed to post in the iPhone forum but now I'm told that I'm not allowed to post in the iPad forum! What is going on here? EDIT. Disregard; I went back and tried for the 5th or 6th time and it seems to have posted. Jive software must being act

  • Nothing is working. what to do? not right since mozilla firefox updated.

    the back arrow in the upper left corner does not work on any page. cannot post comments on facebook. can only access mail and facebook from desktop icon. do not like the way google is set up now nor do I like the bookmarks on the right side of the sc

  • R/3 job and get the details of variants like (from and to)

    Hi, How to find R/3 job and get the details of variants like (from and to) for that job. the job is extraction job and running for 4 hours in R/3 once atfer this job completes BW job will start executing. Now i have to analyse R/3 job that how many y