Bug: Mail loses image metadata

When you use mail to send an image, the image loses its metadata. This is especially annoying with regard to losing the date the picture was taken. When mail sends images, even if it has to create images of a new size, it should retain the metadata associated with the images.

Kody,
Please detail the source of the image at the time you attached it, and how you attached it? I will test as soon as possible.
Ernie

Similar Messages

  • Image metadata is not retained(stripped) in lightbox slideshow widget

    How is this corrected

    Can someone at Adobe please confirm that there is no reading of the image metadata.  I thought it was limiting that it was only the caption field available.  I am stunned if this is the case that no metadata is being read.  I am working on a photo web site and got to the point of importing photos with the 'captions' checked.  Huge surprise.  It is hard to believe that something as fundamental as basic metadata fields (caption, title, filename, copyright) isn't pulled with the image and available as needed.  C'mon, you are the company that has Photoshop and Lightroom.  Do you guys talk to the other teams?
    I was looking at Muse galleries as an alternative to the LR web module for 2 reasons:  one is flexibility in layout, and the other is speed, since the LR gallery export cranks along at a glacial pace to the point of being almost unusable.  And this is the LR4 upgrade; much slower than LR3.  See the LR threads on this if you're interested.  Still waiting for that fix.
    The thought of manually entering caption info to a dozen galleries, each with 20 or 30 images, is nonsense.  This makes Muse a non-starter for photo galleries.  This is basic capability.  Adobe should be embarrassed that LR4 doesn't do what it should in this regard, and that the feature needed don't even exist in Muse.  Everyone expects a few bugs in the early days of a new software, but not missing essential, fundamental features to make web galleries useful. 
    Rant now over and I will happily apologize if the metada fields are, indeed, available.  Please explain how.  Thanks.

  • I use a desktop version of Lightroom and am wanting to move to the Cloud version.  What happens to my files, etc., on my desktop when I download the cloud version?  I don't want to lose my metadata, etc.  If anyone out there knows, please let me know.

    I use a desktop version of Lightroom and am wanting to move to the Cloud version.  What happens to my files, etc., on my desktop when I download the cloud version?  I don't want to lose my metadata, etc.  If anyone out there knows, please let me know.

    I just installed LR CC and am having trouble opening catalogs where I followed the instructions to upgrade.  Just posted a question about it.
    Discovered a problem when I went looking for some images that were not included in the most recent catalog.  After opening up a couple of older ones and upgrading, I went back to the most recent and couldn't opening.  Message says it is not writable.  And also says it may be due to incorrect permissions.  If you have any suggestions for this, I would love to hear them.

  • How to send HTML mail with images multipart/related message

    Hi,
    Could any body tell me how to send HTML mail with images in "multipart/related" message,if any body can give the code ,it would be helpful.
    Thanks

    Hi,
    Could any body tell me how to send HTML mail with
    ith images in "multipart/related" message,if any body
    can give the code ,it would be helpful.
    ThanksHi!
    Refer to
    http://developer.java.sun.com/developer/onlineTraining/JavaMail/index.html
    I've found it very helpful.
    Look at the last part for a code showing how to send HTML mail!
    Regards

  • Send HTML mail with image

    Hi experts and gurus,
    how can I send an HTML email which is displaying an image in the HTML context (table)?
    I'm using the 'SO_NEW_DOCUMENT_SEND_API1' like below:
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = ls_doc_data
          document_type              = 'HTM'
          put_in_outbox                = 'X'
          commit_work                 = 'X'
        TABLES
          object_content             = gt_mail_body
          receivers                  = gt_receiver .
    I think that might switch to function module 'SO_NEW_DOCUMENT_ATT_SEND_API1', but I have no clue how to set up the PACKING_LIST properly and to incorporate the image into the HTML code afterwards.
    Can anybody help me?
    Regards, Steffen

    Hi,
    I am also trying to send the image in the mail body but the image is not being displayed in the mail.
    I am using cl_bcs class to send the image as the attachment in the mail and the body content but the
    image is not being displayed instead all I can see a box with red cross however, the attached gets open.
    But it is not able to find the image source I guess.
    I am using Lotus notes to check the mail.
    Please help me ......
    I am uploading the image file from desktop into my code then I am attaching it in the mail.
    Please let me know the solution
    The code is as follows :
    REPORT  ztest_mail_544.
    DATA: l_send_request         TYPE REF TO cl_bcs,
            l_document             TYPE REF TO cl_document_bcs,
            l_sender               TYPE REF TO cl_sapuser_bcs,
            l_sub                  TYPE char50,
            l_recipient            TYPE REF TO if_recipient_bcs,
            tl_contents            TYPE STANDARD TABLE OF soli,
            tl_reciev              TYPE STANDARD TABLE OF somlreci1,
            lp_encrypt             TYPE bcsd_encr,
            wa_contents            TYPE solisti1,
            l_doc_len              TYPE so_obj_len,
            l_cnt                  TYPE sy-tabix,
            l_rcv_email            TYPE adr6-smtp_addr,
            l_result               TYPE sy-binpt,
            l_bcs_exception        TYPE REF TO cx_bcs,
            l_subj                 TYPE string,
            l_doc                  TYPE REF TO cl_document_bcs,
            e_result               TYPE sr_state,
            ls_receivers           TYPE somlreci1,
            ll_text                TYPE uname.
    DATA filename TYPE string .
    DATA : it_tab TYPE solix_tab.
    filename = 'C:\Documents and Settings\Desktop\otter.jpg'.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = filename
        filetype                      = 'BIN'
      TABLES
        data_tab                      = it_tab
    EXCEPTIONS
       file_open_error               = 1
       file_read_error               = 2
       no_batch                      = 3
       gui_refuse_filetransfer       = 4
       invalid_type                  = 5
       no_authority                  = 6
       unknown_error                 = 7
       bad_data_format               = 8
       header_not_allowed            = 9
       separator_not_allowed         = 10
       header_too_long               = 11
       unknown_dp_error              = 12
       access_denied                 = 13
       dp_out_of_memory              = 14
       disk_full                     = 15
       dp_timeout                    = 16
       OTHERS                        = 17
    wa_contents-line = 'Mail containing pics <br/>'.
    APPEND wa_contents TO tl_contents.
    CLEAR wa_contents.
    wa_contents-line = '<p><img src="otter.jpg" width="304" height="228"></img > </p><br/>'.
    APPEND wa_contents TO tl_contents.
    TRY.
    *-- Create persistent send request
        l_send_request = cl_bcs=>create_persistent( ).
           tl_contents[] = it_mail_body[].
    *-- Get the length of the Document
        DESCRIBE TABLE tl_contents LINES l_cnt.
        READ TABLE tl_contents INTO wa_contents INDEX l_cnt.
        l_doc_len = ( l_cnt - 1 ) * 255 + STRLEN( wa_contents ).
    *-- Subject of the mail
        CLEAR l_sub.
        l_sub = 'test mail for image'.
        l_document = cl_document_bcs=>create_document(
                     i_type       = 'HTM'
                     i_text       = tl_contents
                     i_length     = l_doc_len
                     i_subject    = l_sub
                     i_language   = sy-langu
                     i_importance = '9' ).
    *-- Add document to send request
        CALL METHOD l_send_request->set_document( l_document ).
    *-- Don't send delivery info for successful mails
        CALL METHOD l_send_request->set_status_attributes
          EXPORTING
            i_requested_status = 'E'
            i_status_mail      = 'A'.
    *-- Set sender
        l_sender = cl_sapuser_bcs=>create( 'HR_SUPPORT' ).
        CALL METHOD l_send_request->set_sender
          EXPORTING
            i_sender = l_sender.
        DATA : i_attachment_type    TYPE  soodk-objtp,
               i_attachment_subject TYPE  sood-objdes .
        DATA : t_attachment TYPE STANDARD TABLE OF  solix.
        TRY.
           l_att_type = i_attachment_type.
           l_subject  = i_attachment_subject.
            i_attachment_type = 'jpg'.
            t_attachment[] = it_tab[].
            l_doc = l_document .
            i_attachment_type = space.
            i_attachment_subject = 'otter.jpg'.
            CALL METHOD l_doc->add_attachment
              EXPORTING
                i_attachment_type    = i_attachment_type
                i_attachment_subject = i_attachment_subject
                i_att_content_hex    = t_attachment.
          CATCH cx_document_bcs.
        ENDTRY.
        l_recipient = cl_cam_address_bcs=>create_internet_address('xyz @abc.com' ).
        CALL METHOD l_send_request->add_recipient
          EXPORTING
            i_recipient  = l_recipient
            i_express    = 'X'
            i_copy       = ''
            i_blind_copy = ''.
        IF sy-subrc = 0.
        ENDIF.
        CALL METHOD l_send_request->set_send_immediately( 'X' ).
    *-- Send Email
        CALL METHOD l_send_request->send(
            EXPORTING
              i_with_error_screen = 'X'
            RECEIVING
              result              = l_result ).
        COMMIT WORK.
      CATCH cx_bcs INTO l_bcs_exception.
        write : 'mail not sent '.

  • Update image metadata programatically

    Hi
    I developed a plugin, which changes exif information of the image (using a third party program). Is there a way to inform Lightroom programatically to refresh image metadata? Right now I have to right-click on the folder and choose "Synchronize Folder...".

    There's at least one ODBC driver for SQLLite http://www.ch-werner.de/sqliteodbc/, and maybe command line access to the database too
    But there's nothing directly through Lightroom, and you won't be able to code Lightroom to refresh EXIF data. There is no coding mechanism to write to EXIF fields or to refresh the image (ie sadly you can't automate Metadata > Read Metadata).
    If you write directly to the SQL while LR is open, the best you can expect is that the EXIF will use updated data from the database when you next click on that image in Library. However, you are likely to encounter database locking problems  and stand a good chance of corrupting the database. Abandon all hope, ye who enter here?

  • Muse image metadata and global caption styling

    When will Muse be able to import image metadata and perform global caption styling with accurate positioning for lightboxes and slideshows?

    I've done some testing.
    if images are uploaded to the Facebook Wall, the Comments field that Aperture presents before uploading the image becomes the Description field on Facebook.
    however, if the images are uploaded to a known Facebook Album, the Version Name becomes the Description.
    both of these situations are not logical. in the case of uploading to the Wall, 'Comments' should probably be 'Description'. I'll report them to Apple's bugreport.
    images seem to be scaled down to fit within 2048x2048 pixels.

  • Reading Image Metadata..

    Hi,
    I am converting some PHP pages to JSP. There is an image gallery page where images are being displayed and also the comment and Author names is displayed under that image.Those things are set as image metadata.
    The code for doing this in PHP looks like....
    $exif = exif_read_data($full_file_path, 0, true);
    foreach ($exif as $key => $section)
                                            foreach ($section as $name => $val)
    echo $section['Comments'];
    echo $section['Author'];
    How can I achieve this in java i.e. how can I read author and comment metadata fields using java....
    Thanks & Regards
    Shailesh

    http://www.drewnoakes.com/code/exif/

  • Retreiving image metadata

    Can anyone point me on how to retreive image metadata from an image... I was looking into the possibility of using JAI but could not find a clear answer.... If some one could post a link or point me in the correct direction...
    Thanks in advance....
    Sharad R.

    What type of meta data, what type of files?
    You might want to look at:
    http://groups.google.com/groups?q=IIOImage+bufferedimage&hl=en&lr=&ie=UTF-8&oe=UTF-8&selm=2e027e56.0301172122.12504427%40posting.google.com&rnum=3
    - K

  • Image Metadata Editor

    I have been looking for inserting descriptions into my pictures. Unfortunately, there isn't any option to edit Metadata in File Explorers (I tried Thunar and Nautilus). I wouldn't like to have a photo gallery software just to do that, and, by the way, I couldn't find any of those that allows me to edit metadata in a straight-forward way. I have to navigate through a lot of menus in order to do that.
    Basically, I was looking for a plugin or other software that enhanced the "Image" tab on Thunar, so I could see and edit all file metadata there. Honestly, I don't know how do you guys keep your photo albums organized without this feature.

    I've found Shotwell pretty straightforward to edit tags. However, I personally also use feh + dmenu + a script I found somewhere to view and edit metadata. The latter method I find quite speedy when I've imported a bunch of photos. The script is
    image-metadata.sh:
    #!/bin/bash
    if [ $# -lt 2 ]
    then
    echo -e usage: "$0 <action> <filename>\n actions: edit-comment, edit-tags"
    exit -1
    fi
    action=$1
    file=$2
    if [ "$action" == "edit-comment" ]
    then
    commentText=$(echo | dmenu -t "$(exiv2 -Pt -g Exif.Photo.UserComment $file)")
    if [ $? -ne 1 ] # not aborted
    then
    if [ -z "$commentText" ]
    then
    exiv2 -M"del Exif.Photo.UserComment" $file
    else
    exiv2 -M"set Exif.Photo.UserComment $commentText" $file
    fi
    fi
    fi
    if [ "$action" == "edit-tags" ]
    then
    exiv2 -Pt -g Iptc.Application2.Keywords $file > /tmp/._image_keywords.txt
    selection=$(exiv2 -Pt -g Iptc.Application2.Keywords $file | dmenu -sb "#000" -nf "#aaa" -nb "#222" -sf "#509ba6" -fn 'Deja Vu Sans Mono-14:bold' -l 10)
    if [ -n "$selection" ]
    then
    exiv2 -M "del Iptc.Application2.Keywords" $file
    while read keyword
    do
    if [ "$selection" != "$keyword" ]
    then
    exiv2 -M "add Iptc.Application2.Keywords String $keyword" $file
    else
    deleted=true
    fi
    done < /tmp/._image_keywords.txt
    if [ -z $deleted ]
    then
    exiv2 -M "add Iptc.Application2.Keywords String $selection" $file
    fi
    fi
    rm /tmp/._image_keywords.txt
    fi
    if [ "$action" == "show" ]
    then
    comment=$(exiv2 -Pt -g Exif.Photo.UserComment $file)
    exiv2 -Pt -g Iptc.Application2.Keywords $file > /tmp/._image_keywords.txt
    echo -n Comment: $comment, "Keywords: "
    first=true
    while read keyword
    do
    if [ $first == "false" ]
    then
    echo -n ", "
    fi
    echo -n $keyword
    first="false"
    done < /tmp/._image_keywords.txt
    echo
    rm /tmp/._image_keywords.txt
    fi
    It requires exiv2, iptc, and dmenu. (Also ttf-dejavu, but you can edit out that font choice ) The script is not mine; unfortunately, I cannot remember where I found it.
    Then in .config/feh/themes, put
    tag --action2 ";/path/to/image-metadata.sh edit-comment %f" --action1 ";/path/to/image-metadata.sh edit-tags %f" --info "/path/to/image-metadata.sh show %f"
    Browse pictures with "feh -Ttag *.jpg" for instance, then press 1 to edit tags, press 2 to edit comments.

  • Mail Signature: image size keeps changing to fit window

    When adding a logo image to a signature in mail, the image is not remaining the same size, it changes in size semingly to fit the width of the window that the email happens to be in. Mostly the image is showing larger than the window itself. We are having this problem on imac (snow leopard) and brand new macbook pro (mountain lion). I have tried using PNG and JPEG files but both have the same problem. Older signatures (2 years old) show the image correctly keeping it the same size. Any advice muchly appreciated : )

    I worked it out in the end - I had 2 things too big in my image settings; the canvas size (which was 14cm long!) and he DPI (which was 300dpi) I have since changed to approx 8cm long and 100DPI and it now displays the logo in the signature without increasing the size of it to fit the size of the window. My only issue now is trying to get the image to still show in the reply thread, so that when you look down the email conversation you can see the logo in each of the previous email signatures. This one is stumping me!

  • How do I edit image metadata?

    What I would like to be able to do is something like:
      tell application "Image Events"
      tell pic
        make new metadata tag with properties {name:"creation", value:cr}
      end tell
      end tell
    Only, sips/Image Events doesn't support setting most image metadata. Any suggestions as to how to approach this problem?

    Thanks. Lightroom 2.4, unfortunately, isn't very scriptable. This is ironic, since the program itself relies on Lua for its interface functionality. I will probably, eventually, manage to compile Exempi and the Python XMP Toolkit and do the job that way.
    Refs:
      [Exempi|http://libopenraw.freedesktop.org/wiki/Exempi]
      [Python XMP Toolkit|http://www.spacetelescope.org/projects/python-xmp-toolkit/docs/index.ht ml]

  • Is it possible to mail merge images?

    Can you mail merge images from a Numbers spreadsheet into Pages instead of selecting an image from the media inspector?

    Jen,
    That's not supported, as far as I know. Interesting idea though.
    Jerry

  • Need to know how to disconnect the camera Nikon Ds3 (USB cable) properly after uploading images through bridge-do not want to lose images on compact flash card.

    Need to know how to disconnect the camera Nikon Ds3 (USB cable) properly after uploading images through bridge…do not want to lose images on compact flash card.

    Give #navbar a width that is wide enough to hold all of the buttons within it.
    #navbar {
         width:####px;
    Replace #### with a pixel number large enough to hold the nav buttons.

  • Keynote '09 loses images

    keynote '09 loses images & crashes in both 10.6.8 and 10.7

    Keynote 1 came with some stuff that was stored here:
    Hard Drive>Application Support>Keynote>Image Library
    there should be some .key files in there that you can open in K2 or 3 and copy and paste the images out of onto your own stuff.

Maybe you are looking for

  • BAPI for Open Sales Order

    Experts, I need a BAPI for list of Sales order against which the invoice has not been generated.  I need to pass date and bapi shall return list of sales order that are not invoiced. Thanks Harsh

  • ISE 1.2 / WLC 5508 EAP-TLS expired certificate error, but wireless still working

    Hi I have a customer that we've deployed ISE 1.2 and WLC 5508s at.  Customer is using EAP-TLS with and everything appears to setup properly.  Users are able to login to the network and authenticate, however, frequently, I'm getting the following erro

  • What is a "pz" process in rac?

    Hi. I have oracle cluster 10g. I need to know what is a "pz" process. I don't know what is this and, I was finding information in metalink and the web without results. Node 1: oracle 10587 1 0 08:28:52 ? 2:17 ora_pz98_PROD1 oracle 9827 1 0 08:28:43 ?

  • Partition by month - Advice please

    Guys, I am about to partition a table based on months. I need a months data to get to a single partition. Please can you tell me if this is the best way to do it ? PARTITION BY RANGE(RECEIVED_TIMESTAMP) PARTITION PRT2007_10 values less than '31-OCT-2

  • Version conflict? Error -5002 when adding a sales order in SDK 2004.

    I get the -5002 error without any description when I reference the "SAP Business One Objects Bridge API version 6.2 SP3" and try to add an invoice in SBO 2004. The code is basically: Set vDOC = vCmp.GetBusinessObject(oInvoices) vDOC.CardCode = "K9999