I am unable to email an image from camera roll. the image gets "stuck". cannot input email address or subject line. am unable to cancel and go back to camera roll

i am unable to email images from my camera roll. the image gets "stuck". cannot insert email address or subject line. cannot cancel... return to camera roll.
what to do. i tries taking new picture and sending it in an email... same thing... gets "stuck "
Waht to do ?

Hello lohmann8,
Thank you for providing so much detail about the issue you are experiencing with emailing photos from the Camera Roll.
The first thing I recommend is quitting and relaunching the applications on your iPhone:
Double-click the Home button.
Swipe left or right until you have located the app you wish to close.
Swipe the app up to close it.
You can find the full article here:
iOS: Force an app to close
http://support.apple.com/kb/ht5137
If you are still seeing the same issue after quitting and relaunching the Photos and Camera app, I recommend restarting your phone and then resetting if it's still not working:
Restarting your device
Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
Press and hold the Sleep/Wake button until the Apple logo appears.
Note: Reset your device only if you are unable to restart it.
Resetting your device
Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
You can find the full article here:
iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
http://support.apple.com/kb/ht1430
If the issue persists, the last thing I recommend is backing up and restoring your iPhone:
iOS: How to back up and restore your content
http://support.apple.com/kb/HT1766
iTunes: Restoring iOS software
http://support.apple.com/kb/HT1414
Thank you for using Apple Support Communities.
Best,
Sheila M.

Similar Messages

  • When I try to download OS 10.5.6 from 10.4.11 I get 'software cannot be installed, I havemore than 1GB RAM, enough Hard Drive and a intel core processor. The OS 10.5.6 software is from my newer Mac ibook, any suggestions?

    When I try to download OS 10.5.6 from 10.4.11 I get 'software cannot be installed, I havemore than 1GB RAM, enough Hard Drive and a intel core processor. The OS 10.5.6 software is from my newer Mac ibook, any suggestions?

    Hi Tommy,
    Using install discs created for another computer is the problem. I suggest you get a stand alone install disc for Leopard and give that a try. I know it's a bummer since you have a perfectly good install disc but you can't take an install disc from a new computer and use it to update an older computer. As a matter of fact you would have problems using your install disc on the same type of computer if it didn't have the same build number. In the old days of Power Macs that wasn't an issue. You could take an install disc for one computer and update every Mac you owned. Sorry.

  • Why can't I download app update or music from iTunes? The download gets stuck.

    I have had problems in the last couple of weeks updating apps.  They start to update and never Finish.  Today I noticed it is happening with iTunes music.  Is anyone else having trouble with this?  I have an ipad1 with the latest os.

    Hard to say with no information.
    Which ipod touch?
    What ios?
    What did you try?
    What happened?

  • Download images from MySite PictureLibrary using imaging.asmx

    Hi Team,
    Could you please assist in Downloading images from one of the Custom View of MySite PictureLibrary using imaging.asmx.
    code samples appreciated
    Thanks Ba$va

    Hi,
    In SharePoint 2013, we can use REST API to perform CRUD operations on a site from client side.
    What’s more, I have seen a post with useful suggestions from Dennis in your another thread, you can check the links he provides for more information.
    http://social.technet.microsoft.com/Forums/en-US/b172e86d-fc3d-4905-88d0-fa809508fe3e/download-images-from-mysite-picturelibrary-using-restapi?forum=sharepointdevelopment
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • Creating a .jpg image from with in the J2ME app

    Hi,
    I want to send a document to the printer over bluetooth to print.
    For that I searched on net, but couldn't find any APIs supported by J2ME to print it. I also found a link http://www.hcilab.org/documents/tutorials/Brother/ where I found that I can send the data by creating an image and then writing data (text or image ) in to it, and then sending that image to print.
    Image img = Image.createImage(816, 40);
    Graphics g = img.getGraphics();
    g.setColor(0, 0, 0);
    g.setFont(Font.getFont(Font.FACE_PROPORTIONAL, Font.STYLE_BOLD,Font.SIZE_LARGE));
    g.drawString("Printing test from "
                             + System.getProperty("microedition.platform") + " on "
                             + new Date(), 10, 10, 0);
    driver.print(img, btAddr);This code is working fine on this printer.
    I am using HP 460cb printer, and I tried the same thing, but am not getting any results. Can any one of you tell me what mistake am I making.
                    Image blankImage = Image.createImage(SpotBilling.MAX_IMG_WIDTH, SpotBilling.MAX_IMG_HEIGHT);
                    Graphics g = blankImage.getGraphics();
                    g.setColor(0,0,0);
                    g.setFont(Font.getFont(Font.FACE_PROPORTIONAL, Font.STYLE_PLAIN, Font.SIZE_SMALL));
                    g.drawString("Printing test on Wednesday - 18th Jan, 2006", 10, 50, Graphics.TOP|Graphics.LEFT);
                    g.drawImage(imgTest, 60, 150, Graphics.HCENTER | Graphics.VCENTER);
                    int width = blankImage.getWidth();
                    int height = blankImage.getHeight();
                    int y = 0;
                    os.write(CMD_UNIVERSAL_EXIT);
                    for(int i = 1; i<=height; i++){
                             blankImage.getRGB(temp, 0, width, 0, y, width, 1);
                             byte[] pixels = new byte[width];
                             for (int x = 0; x < temp.length; x++) {
                                  pixels[x] = (byte) ((((temp[x] & 0x00FF0000) >> 16)
                                       + ((temp[x] & 0x0000FF00) >> 8) + (temp[x] & 0x000000FF)) / 3);
                             // Transfer Raster Graphics
                             os.write(TRANSFER_RASTER_DATA);
                             byte[] len = numToDecimal(pixels.length);
                             os.write(len);
                             os.write(DATA);
                             os.write(pixels);
                             y++;
                        }I have another query, if I can not do this. Is there any way I can create a .jpg image from with in the J2ME application.
    I have some text and an image that I get by invoking camera from the code and then capturing a picture. I need to combine them both, and then send it to the printer.
    If there is any way, I can convert this blankImage mentioned above (containing both text and Image), please provide me the solution.
    Any document or any source code is appreciated.
    regards,
    Ashish

    I have succeeded in creating a mutable image that contains text and image (.png), through
                         Image img;
                         img = Image.createImage(50, 60);
         protected void paint(Graphics g){
              g.drawImage(img, getWidth()/2, getHeight()/2, Graphics.HCENTER | Graphics.VCENTER);
              Graphics graph = img.getGraphics();
              graph.setColor(0, 0, 0);
              graph.setFont(Font.getFont(Font.FACE_PROPORTIONAL, Font.STYLE_BOLD,
                             Font.SIZE_LARGE));
              graph.drawString("Printing test from "
                                       + System.getProperty("microedition.platform") + " on ", 10, 10, 0);
              graph.drawImage(image, img.getWidth()/2, img.getHeight()/2,Graphics.HCENTER|Graphics.VCENTER);
              graph.fillArc(0,0,10,10,0, 360);
         }Now I want to create a .jpg image of this img image(Mutable image).
    What I am doing is that,
    1. I am converting this image in to int array, using getRGB() method.
    2. Then I am converting int array in to byte array.
    3. And then I am opening a file(extension is .jpg)
    4. Then I am sending this byte array in to the file which is .jpg
    The .jpg file is getting created, but the data in it is very absurd, like yyyyyyyyyyyyyyyyyyyyyyyy.
    Please help me in this matter.
    Regards,
    Ashish

  • If you change the image mode of this image from 8-bit RGB image to Grayscale mode while in PSCS – what will the new Pixel Count be?

    If you change the image mode of this image from 8-bit RGB image to Grayscale
    mode while in PSCS – what will the new Pixel Count be?

    If you mean by Pixel count the number of pixels, this will not change. The image will have the same size thus the same number of pixels.

  • Stop images from going under the panels?

    I don't know what happened but recently when I dock an image it resizes to the entire size of the photoshop window. The image edge stops on the left at the tool bar but on the right it goes underneath my panels. Another thing that started at the same time is an issue with mini bridge, as you can see it's attached to my panel but when I click the arrow to expand it it pushes the rest of the panel to the right and off screen.
    Also I've been having issues with the "Fit Screen" button. I used to be able to have the window a certain size and when I'd hit Fit Screen the the window would keep its size but the image would zoom so there were those grey areas around the image, now when I Fit Screen it resizes the window as well. I've checked that the Zoom Resizes Window option is unchecked but nothing works. Please help! I know that there is an application frame option for Mac that supposedly fixes these issues but I'm on a PC (Windows7) so I don't have that option.

    If you dock the panels on the right (layers,etc) like the toolbox is docked that will stop the image from going under the panels.
    Just grab the top of the panels (red box in screenshot) and move to the right until you see a blue line, then release.
    MTSTUNER

  • I cannot email a photo from iphoto. A message comes up that says "email server did not recognize username / password combination". How do I fix that? /

    I cannot email a photo from iphoto. A message comes up that says " email server did not recognize username / password combination ".  There does not seem to be a way from inside iphoto to fix that. Any suggestions ?

    Have you set Mail.app or iPhoto as Mail client in the iPhoto Preferences? Mail.app is working more reliable than iPhoto as mail client.
    See this post by Old Toad:
      Re: I am trying to email photo's from iphoto and I am getting the error message "The email server didn't recognize you username/password combination.  I have always been able to email photos out of iphoto.  Any suggestions?

  • My Mac will burn a DVD from iPhoto but the images and videos will not play on my DVD player. I am using DVD-R disks

    My Mac will burn a DVD from iPhoto but the images and videos will not play on my DVD player. I am using DVD-R disks

    Hi john, try Burn...
    http://burn-osx.sourceforge.net/Pages/English/home.html

  • When printing to the dye sublimation epson stylus pro 7700 using adobe illustrator it is required that I mirror the image.  When mirroring the image the print colors are muted.  Not mirrored and the print colors are perfect.  Any suggestions?

    When printing to the dye sublimation epson stylus pro 7700 using adobe illustrator it is required that I mirror the image.  When mirroring the image the print colors are muted.  Not mirrored and the print colors are perfect.  Any suggestions?

    CS5
    On Tue, Oct 7, 2014 at 9:49 AM, ADBEDesigner <[email protected]>

  • After moving from Canada to the US, getting a new iPhone 5C, and restoring my backup from iCloud, I can't update my apps. I get an error message that my account is not valid in the Canadian App store and I must change to the US store. How do I do that?

    After moving from Canada to the US, getting a new iPhone 5C, and restoring my backup from iCloud, I can't update my apps. I get an error message that my account is not valid in the Canadian App store and I must change to the US store. How do I do that?

    Change here:
    Settings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region.
    You must have a verified billing address & be located in the country whose store you are trying to use.

  • While erasing memories from iPhone 4, the phone gets switched off and can't turn on back

    while erasing memories from iPhone 4, the phone gets switched off and can't turn on back. Please help.

    What exactly do you mean by "erasing memories"?

  • How do I delete a dashed image frame, but keep the image?

    How do I delete a dashed image frame, but keep the image?

    It may stroke, on the control panel set stroke color to none, and weight to zero [0].

  • Double clicking a jpeg image in bridge opens the image in windows viewer not Photoshop cc 2014....any suggestions?

    double clicking a jpeg image in bridge opens the image in windows viewer not Photoshop cc 2014....any suggestions?

    Hi
    open Adobe Bridge click on the Edit>>> go to preferences >> then select file association on the left .
    then on the right scroll down and select the JPEG extension and change the application to which you want to open the Jpeg
    below is the screenshot for your reference

  • I can-t see netTV from Mediaset on the ipad because I cannot install Silverlight. Is there any ipad compatible Silverlight version goin to be released? When? Or is there any other apple application I can use in place of Silverlight?

    I can't see netTV from Mediaset on the ipad because I cannot install Silverlight. Is there any ipad compatible Silverlight version goin to be released? When?
    Or is there any other apple application I can use in place of Silverlight?
    I just want to see a service I'm paying for on the ipad instead of PC, it should be allowed!!!!
    Roberto

    I red about a Silverlight 5 version that should run also on ipad/iphone, annouced last year for 2011, but I can't find any recent update. On apple store you can find a silverlight 3 version at 5.99$, but it does not seem to be the same thing, just same name.
    I'm not sure that this closure is a good policy from apple side. If I knew in advance I would never buy an ipad.

Maybe you are looking for

  • How can I create a linkable TOC on the left using Acrobat XI Pro?

    I am completely new to making PDFs. I have a User Manual that I created in Word and would like to have a TOC on the left for easy access to the topics. How can I do this?

  • InDesign CC Server 2014 app.open() File does not exist.

    I've set up InDesign CC Server 2014 trial on a Windows Server 2008 R2 and trying to run a simple script that converts a idml to PDF. Here's the code document = app.open(File("C:\inetpub\wwwroot\presentation\Documents\Resumes.idml")); document.exportF

  • Deplay Crystal Report via web

    Hi. Is there any way to deploy report in intranet. I have file Report.rpt and i want users to have access to it via www. Is there any tutorial how to do it? Best regards Lukasz Bloch

  • DVDSP Slideshow will not Build...

    Hi, I'm wrinting this because I simply cannot build my iphoto slideshows to DVD. Here is what I have done. Maybe I've done something wrong. I have 7 slideshows from iPhoto that I would like to put into a DVD using DVDSP3. My intentions are to open up

  • Reversal  of Cenvat Duty

    Hi Expert, Please suggest while doing GRN manual excise invoice is captured but by mistake user changed the material type from Raw material to consumables and then after done part 2 and MIRO on January 2014  which result  into system has captured 50%