Saving an image from an email

Hey i had one question, when i get email with a picture in it and I download the image is that image saved to my pre or is it just saved to the email? And if it is saved to the pre how can i view it outside of the email
Post relates to: Pre p100eww (Sprint)

If the image is an attachment, you should be able to tap on the attachment and you'll see a button that says "Save to Photos" which will do that.
http://kb.palm.com/wps/portal/kb/na/pre/p100eww/sprint/solutions/article/43841_en.html#N05E2BEA8.05D...
If the image is embedded in an HTML email (it's not an attachment), which is what I think you're asking about, I don't think you can save it.
But! A clever person on PreCentral figured out a workaround - use your two fingers to zoom way in to the picture, then take a screenshot. 
How do you take a screenshot?
Hold down Orange + Sym + P at the same time. You won't get any visual confirmation that a screenshot has happened, but when you open the Photos app, it will appear under a new category called "screenshots."
(cite: http://forums.precentral.net/general-webos-chat/189360-how-hell-do-i-save-pictures-email.html)
OR, you can just open up the email on your desktop computer, save the image as a file on your desktop, and then email the image as an attachment to yourself, open the email on your Pre, tap the attachment, and get that "Save to Photos" button mentioned earlier.

Similar Messages

  • Saving images from html email.

    Hi.
    Please help.
    I can't save images from html email. I can save attachments, but how save images with in html?
    I can't find it.

    I can send if I use:
    // Create your new message part
    BodyPart messageBodyPart = new MimeBodyPart();
    String htmlText = "<H1>Hello</H1>" +
    "<img src=\"cid:memememe\">";
    messageBodyPart.setContent(htmlText, "text/html");
    // Create a related multi-part to combine the parts
    MimeMultipart multipart = new MimeMultipart("related");
    multipart.addBodyPart(messageBodyPart);
    // Create part for the image
    messageBodyPart = new MimeBodyPart();
    // Fetch the image and associate to part
    DataSource fds = new FileDataSource(file);
    messageBodyPart.setDataHandler(new DataHandler(fds));
    messageBodyPart.setHeader("Content-ID","<memememe>");
    // Add part to multi-part
    multipart.addBodyPart(messageBodyPart);
    but if I try to read message (html and image inside it) sended from Outlook? i can't find images.
    messageBodyPart.getHeader("Content-ID");
    returned null.

  • All my Photos disappeared after I saved a photo from an email from my wife. I am running Mountain lion on Mac book pro 2012, help. What did I do wrong?

    All my Photos disappeared after I saved a photo to Iphoto from an email from my wife. I am running Mountain lion on Mac book pro 2012, help. What did I do wrong?

    Apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Saving an image from Image Field

    Hello all!
    I am working on a form for someone with a certain request.
    I am wondering if images from the Image Field can be saved? I tried right clicking on the image but no menu pops up so I am looking for other options. Are there any ways to work around this?
    Thanks in advance!

    Hi radzmar,
    Thanks for the reply. If any scripting was involved, would it be pretty lengthy/complex?
    Thanks again! Any information helps

  • Saving multiple images from

    Are there any updated functions or apps that would allow you to save multiple images from a text message to camera roll from iphone? If not, what are the best alternatives these days?

    Some apps, like Mail allow you to do this but others do not. Tap on photo and a list of choices comes up. In Mail one of the choices is to Save X Photos where X equals the number of photos in the email. I've never received more than one photo in a text so I'm not sure if this same choice will appear there.

  • Saving multiple images from a PDF to use later

    How can I save individual images from a PDF to use later?  I would like to be able to save them in a separate folder?

    When you open the pdf, you'll see the import pdf window. Just click the Images radio button, then select the images you want to open in PSE, and then save them in the editor:

  • Saving jpg images from mail to iPhoto

    To save a jpeg image from Mail to iPhoto does no longer work. When you in Mail click the small save button, next to the attachment count , and command Save to iPhoto, the jpeg does not come up in iPhot as supposed ! This worked fine previoulsy but apparently due to some of the updates now

    Mountain Lion: tallennus ei välttämättä onnistu suoraan Mailista iPhotoon

  • Saving an Image from a url

    I need to write a simple(even dos based) app that saves an image from a url (ie http://www.google.com/images/logo.gif) into c:\temp\*filename*
    thanks alot for the help

    Its just like reading/writing a regular file. Check out the 'Custom Networking" tutorial found on this page:
    http://java.sun.com/docs/books/tutorial/

  • Saving an image from a Canvas

    Hello,
    I'm a beginner. I've created an application wich uses a native procedure, myFunc(), wich paints an image over a Canvas.
    But now I want to create an Image from each frame that is painted over this Canvas. The paint method is like this one:
    public void paint(Graphics g) {
       Rectangle r = this.getBounds();
        Image image = this.createImage(r.width, r.height);
        Graphics g = image.getGraphics();
        this.paint(g);
        try {
           ImageIO.write((RenderedImage)image, "png", new File(name));
       } catch(IOException ioe) {
    }It works, but it just saves a gray image, such if no image were rendered to the Canvas. What's going wrong? Thank you

    Sorry, I've changed some parts of the code for making it more comprenhensive. The correct one is:
    public void paint(Graphics g) {
       Rectangle r = this.getBounds();
        Image image = this.createImage(r.width, r.height);
        Graphics g = image.getGraphics();
        this.myFunc(g);
        try {
           ImageIO.write((RenderedImage)image, "png", new File(name));
       } catch(IOException ioe) {
    myFunc(g) is the native funcion

  • Saving an image froma a Canvas

    Hello,
    I'm a beginner. I've created an application wich uses a native procedure, myFunc(), wich paints an image over a Canvas.
    But now I want to create an Image from each frame that is painted over this Canvas. The paint method is like this one:
    public void paint(Graphics g) {
       Rectangle r = this.getBounds();
        Image image = this.createImage(r.width, r.height);
        Graphics g = image.getGraphics();
        this.paint(g);
        try {
           ImageIO.write((RenderedImage)image, "png", new File(name));
       } catch(IOException ioe) {
    }It works, but it just saves a gray image, such if no image were rendered to the Canvas. What's going wrong? Thank you

    Sorry, I've changed some parts of the code for making it more comprenhensive. The correct one is:
    public void paint(Graphics g) {
       Rectangle r = this.getBounds();
        Image image = this.createImage(r.width, r.height);
        Graphics g = image.getGraphics();
        this.myFunc(g);
        try {
           ImageIO.write((RenderedImage)image, "png", new File(name));
       } catch(IOException ioe) {
    myFunc(g) is the native funcion

  • Saving still images from videos

    Hi, how do I save a still image from a video clip?

    You can do this with a free app called MPEG Streamclip.
    Detailed instructions are here at this link.
    https://discussions.apple.com/docs/DOC-3231

  • Saving a jpeg from Yahoo email in pictures but it will only save as a firefox doc

    I am trying to save a jpeg picture from my yahoo email inbox, but when I click "save image as" it will save as a Firfox Document only. It will save, but when I open the pic it only shows numbers and letters! HELP! How do I save a pic when this happens

    Thank you so much.  I need to print it out showing the person's name that sent it to me & that doesn't show when I copy or forward.  Sorry to be such a pest!

  • IPhone SDK: Saving an image from the camera rotates it

    When I use an image retrieved from the camera and try to save it to the disk, it always looks rotated -90 degrees. Anybody else have this problem? Or know what's going on? What's the easiest way to just rotate it 90 degrees?
    <code>
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *writablePath = [[paths objectAtIndex:0] stringByAppendingString:@"/newImg.jpg"];
    NSData * imageData = UIImageJPEGRepresentation([UIImage imageWithCGImage:cameraImage,1);
    if (imageData != nil) {
    [imageData writeToFile:writablePath atomically:NO];
    </code>

    Hi - I've found this post that might describe a similar (or same?) issue.
    http://discussions.apple.com/thread.jspa?messageID=7936896&tstart=0
    Hope that helps. You've gotten much farther than me - I'm still trying to figure out how to capture camera images using the SDK for a personal photo application. I couldn't find any mention of it in the UIImage Class Reference. Do you know where I might find docs on how to do it?
    Thanks

  • TS4253 I have over 100 photos, the unedited version of those photos is the only item that downloads onto Shutterfly or my computer. The Apple solution is to email each individual photo(over 100 of them)to yourself & then copy the image from the email  Ser

    I have over 100 photos, the unedited version of those photos is the only item that downloads onto Shutterfly or my computer. The Apple solution is to email each individual photo (over 100 of them) to yourself & then copy them to your computer? Really? This is the Iphone 5s, isn't it supposed to have great technology? It can't even recognize the photos on my iphone are all edited? Who has time to email over 100 vacation photos to get them correct? That is beyond acceptable from Apple.

    Please read this article about how to go about transferring photos from iphone to computer.
    http://support.apple.com/kb/HT4083

  • I need to know where are files stored when you save an image from an email

    I downloaded print central and can print from it, but how do I get an attachment to save inside to print central?

    there should be classes for newbie and advanced (not in age) and I would think they would if there are enough, have classes aimed at elderly as well - many need to and love to keep in touch with far-flung family and friends through Skype, video, IM and other new social formats.
    I know my father went to classes for awhile when he got a laptop and the classes was one of the reasons he choose the store he did, and had it custom configured for him (the computer, not the adult class).
    For many, just getting someone to understand what RAM and storage and what virtual memory vs real is a stretch of imagination. And we see that here with some questions.
    Try explaining 3D to someone that lives on a mobius strip in a flat world.
    One idea:
    I would think there are YouTube courses to follow at home on your own and that can output from computer to a TV or view on a tablet (and iPod and tablets output to TVs just fine too).

Maybe you are looking for

  • Can I turn off built in screen??

    I have a MacBook Pro 17", and I routinely connect it to an additional Apple 20" screen when at home. However, I have 1 program that does not like dual screens. In fact, it is a known problem with the program that it will not work correctly with more

  • Ipod nano's nike+ kit not showing any of my workout other than in the hist.

    My nike+ kit does everythign. But when i want to see my last workout it doesnt show it. But when i check the history on my IPOD it shows it there. When i connect it to Itunes it doesnt load the workout. I've only done wone workout so far. But I am wo

  • Why is my question deleted?

    Hi , I have only one profile and posted the question on ALV caming back problem? Why did I get a message like this ? Double posting under different user ID's => Thread locked and marked for deletion. Thanks, Manjula.S

  • Using BT Smart Talk App on iPhone 4 - Can make call but receiver can't hear me

    Switched to BT and the BT Smart Talk App appealed, which I've downloaded onro my iPhone 4. Been through registration process with BT for Smart Talk App (after downloading IOS7.0) which went well. However I've tried to make several calls and no-one ca

  • MacBook Pro (Retina, Mid 2012) Bluetooth Not Available

    I have disconnected my BT mouse which was unresonsive. The MacBook then restarted of it's own accordand and now says BT not available. System Info say Bluetooth - No information found.?