Email photo attachment with assigned resolution

After I took 1600x1200 resolution picture and kept it in a folder in memory card, I would like to send this picture by email but with only 640x480 resolution.
How could I change the set up?
I am using 8320 curve.
Thanks.

There is not a way on the device to change the resolution of the image.
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Emailed photos taken with iPhone not being received

    Emailed photos taken with iPhone not being recieved.
    Photos I have taken with the iPhone and then emailed are never received. I have sent them to two different yahoo accounts and neither account received the photos... I sent both using EDGE and WIFI... Same trouble with both...
    Any idea why this feature is not working ?
    Thanks,
    -Frank

    Now it's magicly working.... maybe....
    I did as you asked and sent myself emails from my iphone and nothing was received.... tried sending to my yahoo account and my work account... did this 3 or 4 times and nothing was received and nothing was shown as being sent... even though I caould hear the "sent" sound each time....
    I then tried sending to my personal and my work accounts and also added one of those to the "CC" line... so that email had 2 email address in the "To:" line and 1 eamil address in the "cc:" line... That one worked just fine !!! got it twice in my personal account and once in my work account.
    I then tried emailing the same photo that I had tried before and it too worked correctly...
    The only itmes that have shown up in my sent box are the last tow... the email with multipul addresses and the photo that I sent right after...
    So... it appears to be owrking at the moment...
    Thanks for your help... I'm not sure why it's working now.. but at least it is...
    Thanks for you help,
    -Frank

  • When I receive photo attachment with yahoo(firefix 3.6.3) and I try to open it after clicking download I dont get a choice to open - only to save the photo (doesnt happen with safari but i vastly prefer firefox) - how can i simply open the photo

    using firefox 3.6.3 - generally love the program - when I open an email with a photo attachment (I use mac and yahoo) I click on download the photo and I'm asked to save file -i dont get the option to simply oprn the attahment - i dont want to save - simply open (if I uses safari to double check the problem with same email I do have the choice to open) - do i have some setting wrong - I love firefox but his is really annoying Thanks for your help
    == always happens

    using firefox 3.6.3 - generally love the program - when I open an email with a photo attachment (I use mac and yahoo) I click on download the photo and I'm asked to save file -i dont get the option to simply oprn the attahment - i dont want to save - simply open (if I uses safari to double check the problem with same email I do have the choice to open) - do i have some setting wrong - I love firefox but his is really annoying Thanks for your help
    == always happens

  • HT1338 When I email an attachment with "Always Sent Windows-Friendly Attachments" checked, the result is a picture embedded in the body of the email, not a attachment.  What am I doing wrong.

    When I email an attachment (a .jpg file) with "Always Send Windows-Friendly Attachments" checked, the result is a picture embedded in the body of the email, not a attachment.  What am I doing wrong.

    1. "Always Send Windows-Friendly Attachments" has nothing to do with the display of attachments on either your machine or other ones. It's an esoteric setting that strips the resource fork from Mac files (that might have them) which could apper as a duplicate file on the Windows machine.
    2. Send Plain Text emails. Then it will always be received as an attachment.

  • Emailing Photos Results In Lower Resolution

    My brother just emailed me a photo he took on the iPhone 3GS and it was showing as 600x800 and I knew something was off. Pulling the photo from his phone to my computer results in a larger 1200x1600 photo. How can we email the full size image to each other? Is there a setting or something I am missing?
    Thanks!

    There IS a way around it. When you click on a picture and choose "share" it emails it, resized, however if you click and hold on the picture you can choose "copy" which copies the original image unaltered.
    Paste that into an email to send the full resolution image. You can copy as many as you want I think up to 32 successfully into an email by using the icon in the lower left while looking at the entire album instead of the single picture.
    You must have OS 3.0 on your iphone to do this.

  • Email Excel attachment with a BOLD row

    hi!
    My requirement is that data in an internal table should be sent as an attachment in an email. There are a few records in the internal table which needs to be in bold(i have the logic to figure out whichones). I am using the below FM  .
    CALL FUNCTION 'SO_OBJECT_SEND'
       EXPORTING
         object_hd_change                 = wa_object_hd
         object_type                       = 'RAW'
       TABLES
         objcont                          = i_text
         receivers                        = i_recv
         packing_list                     = i_packing_list
         att_cont                         = i_att
    Does any body have any idea how to bold a few records in the excel attachment?
    I appreciate your suggestions.
    Thanks,
    manasa
    Message was edited by:
            manasa

    Hi Manasa,
    The Code below is for sending Excel attachment in email. Not sure for BOLD...
    You can copy and paste the following codes and execute..
    Hope this will help you..
    TYPE-POOLS: truxs.
    DATA t5 LIKE t005t OCCURS 0 WITH HEADER LINE.
    START-OF-SELECTION.
    SELECT * INTO TABLE t5
    FROM t005t
    WHERE spras = sy-langu.
    DATA wa_data TYPE truxs_t_text_data.
    CALL FUNCTION 'SAP_CONVERT_TO_TXT_FORMAT'
    EXPORTING
    i_line_header = 'X'
    TABLES
    i_tab_sap_data = t5
    CHANGING
    i_tab_converted_data = wa_data
    EXCEPTIONS
    conversion_failed = 1
    OTHERS = 2.
    DATA stmp(4096) TYPE c.
    DATA itmp TYPE i.
    LOOP AT wa_data INTO stmp.
    itmp = STRLEN( stmp ).
    stmp+itmp = cl_abap_char_utilities=>cr_lf.
    MODIFY wa_data FROM stmp.
    ENDLOOP.
    PERFORM send_email.
    *& Form send_email
    FORM send_email .
    DATA docs LIKE docs OCCURS 0 WITH HEADER LINE.
    DATA excelsize TYPE i.
    DATA excel LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    DATA doc LIKE sodocchgi1.
    DATA excelln TYPE i.
    DATA int_objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA int_objhead LIKE solisti1 OCCURS 2 WITH HEADER LINE.
    DATA int_objtext LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    DATA int_reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    DATA bodyln LIKE sy-tabix.
    DATA output_data TYPE ssfcrescl.
    excel[] = wa_data[].
    excel table sizes
    DESCRIBE TABLE excel LINES excelln.
    Body Email
    int_objtext-line = 'Test Body'.
    APPEND int_objtext.
    DESCRIBE TABLE int_objtext LINES bodyln.
    READ TABLE int_objtext INDEX bodyln.
    CLEAR doc.
    doc-doc_size = ( bodyln - 1 ) * 255 + STRLEN( int_objtext ).
    doc-obj_name = ' '.
    doc-sensitivty = 'P'.
    doc-proc_syst = sy-sysid.
    doc-proc_clint = sy-mandt.
    CLEAR: int_objpack, int_objpack[].
    int_objpack-transf_bin = ' '.
    int_objpack-head_start = 1.
    int_objpack-head_num = 0.
    int_objpack-body_start = 1.
    int_objpack-body_num = bodyln.
    int_objpack-doc_type = 'RAW'.
    int_objpack-obj_descr = 'Test'.
    APPEND int_objpack.
    CLEAR: int_objhead, int_objhead[].
    int_objhead = 'Attachment'.
    APPEND int_objhead.
    int_objpack-transf_bin = 'X'.
    int_objpack-head_start = 1.
    int_objpack-head_num = 0.
    int_objpack-body_start = 1.
    int_objpack-body_num = excelln.
    int_objpack-doc_size = excelsize.
    int_objpack-doc_type = 'XLS'.
    int_objpack-obj_name = 'excel'.
    int_objpack-obj_descr = 'test.xls'. "File name
    APPEND int_objpack.
    Set Receiver
    int_reclist-receiver = 'SAPUSER'.
    int_reclist-rec_type = 'B'.
    int_reclist-notif_del = 'X'.
    int_reclist-notif_read = 'X'.
    int_reclist-notif_ndel = 'X'.
    int_reclist-express = 'X'.
    APPEND int_reclist.
    doc-obj_descr = 'Report in Excel'.
    Sending Email
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = doc
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = int_objpack
    object_header = int_objhead
    contents_bin = excel
    contents_txt = int_objtext "Body
    receivers = int_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    ENDFORM. " send_email
    Note:
    - If you are using FM SAP_CONVERT_TO_TXT_FORMAT you will not be able to execute this program in the background.
    - dont forget to change 'SAPUSER' to your SAP user ID
    - you can check the email by using tcode 'SBWP'.
    Reward points if this Helps.
    Manish

  • How to email photo found with "Faces"

    When I find a photo with Faces the email button is grayed out. What do I need to do while in Faces to find out where a photo is located in the library (i.e. which project)? This would enable me to go to the correct project, locate the photo, and then use the email button? Or, perhaps there is a simpler way? Thank you.

    I -- known, at least in the circle of interest I call my desk, for being slow with a pen -- get that joke.
    You'll beat me to 1700 -- and deserve to be there already.
    Cheers.
    PS: the Export options are there -- but the Output options (of which Email is one) are not all there. The only explanation I can come up with is that people kept trying to email the cropped view shown in Faces, and complained when their expectations were not met, and so the engineers broke that bridge, forcing users to return to the Project (where the cropped Faces view is neither visible nor available) and make their own crops.
    Message was edited by: Kirby Krieger

  • How to email photoshop files with high resolution

    I need to send a photoshop file that is resolution 300 but it keeps converting to 72 when I email it. How do I email it and keep the 300 resolution?

    You can always resort to .zip compression application and send the .zip.
    Also you can resort to a cloud service if the file is too large to send over email.
    Adobe CC for example https://creative.adobe.com/products/files
    Dropbox Dropbox
    or GDrive https://www.google.com/intl/en/drive/
    or OneDrive Microsoft OneDrive
    Once uploaded to the cloud space share the url download url via email to the other person.
    Darrell

  • Sending E-Mail with ABAP List as Attachment with custom Extension

    Hello everyone.
    I have the following problem:
    I want to send a ABAP list as an attachment to an external e-mail address with a <b>custom file extension</b>.
    Everything works fine, exept the thing with the file extension.
    I am using FB 'SO_NEW_DOCUMENT_ATT_SEND_API1'.
    When I choose 'ALI' as Packing_List-Doc_Type everything works fine, but the attached file has the extension 'txt'.
    When I choose e.g. 'lbl' as Doc_Type, the extension is correct, but the file contains invalid data.
    Packinglist code:
    <i>AttType = 'ALI'.
    Describe Table ObjBin Lines TabLines.
    Read Table ObjBin Index TabLines.
    ObjPack-Doc_Size = ( TabLines - 1 ) * 255 + strlen( ObjBin ).
    ObjPack-Transf_Bin = 'X'.
    ObjPack-Head_Start = 1.
    ObjPack-Head_Num = 1. "0.
    ObjPack-Body_Start = 1.
    ObjPack-Body_Num = TabLines.
    ObjPack-Doc_Type = AttType.
    ObjPack-Obj_Name = 'ATTACHMENT'.
    ObjPack-Obj_Descr = cFileName.
    Append ObjPack.</i>
    function call:
    <i>Call Function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                Document_Data              = DocData
                Put_in_Outbox              = 'X'
           TABLES
                Packing_List               = ObjPack
                Object_Header              = ObjHeader
                Contents_Bin               = ObjBin
                Contents_Txt               = ObjTxt
                Receivers                  = RecList
           EXCEPTIONS
                Too_Many_Recievers         = 1
                Document_Not_Sent          = 2
                Document_Type_Not_Exist    = 3
                Operation_No_Authorization = 4
                Parameter_Error            = 5
                X_Error                    = 6
                Enqueue_Error              = 7
                Others                     = 8.</i>
    Thanks for your help,
    Arndt

    Hi,
    look here:
    Re: How to email an attachment with more than 255 characters?
    Andreas

  • Adobe Photoshop Elements 13 won't launch email with photos attached, why?

    Adobe Photoshop Elements 13 won't launch email with photos attached, why?

    Gordon,
    Are you trying to use email functionality in Elements Organizer and then witnessing this problem.
    If this is the case, I would recommend you to go through this article once and see i it helps:
    Elements Organizer Help | Share files and slideshows by email
    Thanks,
    Anwesha

  • When I select a photo to email from "my pictures" or Picasa, Thunderbird is no longer opening a blank email with the photo attached.

    I used to be able to select a photo in my pictures or Picasa, select size, select email, and a blank email would open in Thunderbird with the photo attached. I am wondering if there is a setting somewhere in Thunderbird that should be enabled.
    Hope someone can help.
    thanks

    check Thunderbird is your default mail client. see http://windows.microsoft.com/en-us/windows-vista/change-the-default-e-mail-program

  • When I try to send an email with photo attachment to a contact a screen appears stating "the sender name is not recognized by the server " what do I need to change so this will not happen in the future. I am a novice!!!!!

    When I try to send an email with photo attachment on my iPad a screen appears which states " the sender is not recognized by the server" . What do I have to change so I can always send emails fr om my iPad with or without attachments. I am a novice!!!!!!

    If you purchased about 2 years ago new I am sure it is a Intel iMac. To find out what type of iMac you have just click on the Apple menu item in the finder and select about this Mac. I would check the ISP mail site and get the correct outgoing mail server info.   

  • Hello, i opened an email with photo attachment, it is still trying to download and has blocked my ipad2. I foolishly turned it off and now can`t turn it on as it just shows the spinning circle icon 0 help- novice user here

    Help< I opened an email with photo attachements and it is taking all day to download, I cant delete it,  it just stops mail from working. Everything else was fine till i thought turning off the ipad and trying again would work. It didn`t, I cant turn it on at all - itjust shows the spinning wheel (loading?) icon and nothing else. Being a novice and ive only had this for a couple of weeks i need help!

    Have you tried a reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Hidden Photo attaching to ALL emails end with photos attached

    Hi. Every time I send an email with photos attached, an additional photo (always the same one) always attaches itself, too. You cannot see it as an attachment at the bottom of the email, however, when the recipient opens the pictures and clicks to view the next photo, etc., this one particular photo always shows up at the end. I can no longer send business related photos, because this personal family photo always attaches itself. Can anyone help me? Thanks!

    Hi Chris,
    Can you see this hidden photo in the catalog? Try attaching a tag to this photo and a different tag(Tag2) to the photos you want to send. Search for the 2nd tag(tag 2) and when the results are displayed, select all these photos and send an email to yourself to see if the hidden photo is still getting attached. This should not be happening but please see if the above steps make any difference.
    -Smriti

  • Email photo as attachment to open with photoshop on pc

    I AM TRYING TO EMAIL PHOTOS as attachment, without the photo in full view - my recipient is requesting it as an ATTACHMENT - jpeg or otherwise - he is having trouble dragging it off - and opening it into photoshop - he's not a MAC guy (pity him) - but he can't seem to get my photos into photoshop - I've even tried sending them through my kodakgallery website as an album.
    And I've used the print menu to make them pdf - but then he says they only open in Acrobat Reader ...
    HELP!
      Mac OS X (10.4.5)   Intel Duo Core Mac 2006

    You're in the iPod nano forum. You probably need to post here.
    Mail.

Maybe you are looking for

  • Had Enough - Now Swapping for Zen Micro -

    This is kind of sad considering I didn't think any company could get any worse than Microsoft for things not working... I bought my ghetto 1gig sansa, which was plastic, yet it actually WORKED compared to this dumb 2gb nano I purchased. First, it won

  • Connecting two computers using ethernet

    How do i connect two computers to transfer my iphoto library using ethernet? How do I know how long it will run?

  • Wifi Problem HELP!

    hey guys, I'm using 4.3.3 iOS and my Wi-Fi is not working at all. it's not picking up the signal and the text on Wifi setting is grey which means not applicable. anyone knows how to fix it? I was travelling and my battery went flat for few days. when

  • Registry settings are missing

    The following is the message I am getting when I start Itunes. I have remove and reinstall itunes to no avail please help daughter got new ipod and wants to play with it. "The registry settings used by itunes fot importing and burning cds and DVD are

  • Is it possible to display a TickLabel on minor tick marks?

    I am trying to figure out whether it is possible to display a label on minor tick marks in a LineChart. I can't immediately gleam from the NumberAxis > ValueAxis > Axis javadoc how / if this could be possible to do. Tried experimenting a bit with mak