Converting jpg images in email to pdf fail

I have a user who uses Adobe X Pro, Windows 7-64(all updates applied) to convert her emails to a pdf.
She USED to be able to do thei without any issue using 9x Pro
Now with X Pro, she right clicks on a folder in her email, and clicks "convert "xxxxx" to Adobe pdf"
It goes through the conversion proccess, and when she goes into the created pdf, NONE of the .jpg photos have been converted--BUT ALL the other types have been!!!! (tiff, img, etc...)
This is annoying as F because it used to work flawlessly in her older version, but not X
She is running it on a new Dell with 8 gigs ram, so should be more than adequate.
WHY IS IT NOT PULLING THE JPGS OVER!!!!??!?!?!?
need help with this ASAP

My guess it is more of a problem than just AAX. You have suggested Win7-64 that is an issue also. Also what e-mail package as the settings there may be an issue. Anyway, as a first step should try to print the e-mail to the Adobe PDF (the one with the pictures in it) and see if that works. Then try to figure out the settings in the mail package. Based on what you have described there is a lot more going on than an upgrade with AAX, since AA9 is not really a 64-bit type of system, but I suspect that the OS is part of the problem (as a new OS -- OK, I could be wrong, but the gut feel is there is more than AAX in dealing with this issue).

Similar Messages

  • PDFmaker not converting Jpg attachments to emails in Microsoft Outlook 2013

    I am having problems converting jpg attachments to emails in Microsoft Outlook 2013 using PDFmaker. I'm running Adobe Acrobat 11 and just updated it to the latest version and that did not solve the problem.
    I can convert the emails and Word attachments and can convert the jpgs manually by saving them to my desk top and then adding them as attachments to the resulting PDF but I have several emails each was several attachments that I want to save and it will take me hours to do it manually.
    I was thinking there might be some security setting on the jpgs that is preventing PDFmaker from automatically converting them.
    I already confirmed that the Preference Conversion Setting is selected to include all attachments in the Adobe PDF. I also unselected the box that reads "block download of external content" but it did not help.

    Manual method is a difficult task .You can easily transfer your mails from the Thunderbird to MS Outlook using third party conversion software.i faced the same problem.i tried the following utility. It converts all my Thunderbird accounts to a single PST.you can also try the free demo version of the software.
    http://www.datacarelab.com/software-for-mbox-to-outlook.php

  • Convert Jpg images into patterns (.pat)

    Is it possible to Batch convert Jpg images into .pat files? I am familiar with the define pattern function but what I really need is to convert many jpg's.
    Thanks

    Use edit Define pattern on the image to define a Photoshop pattern. Then use the preset manager to save the pattern as a *.pat file.....
    To batch this you may need to use a Photoshop Script to name the patterns a action define pattern step would have a hard code pattern name. Changing that step to a script could retrieve the document name and set the pattern name the same as the jpeg name.  You could define many patterns that way then use the preset manager select all the defined patterns and save a single *.pat file with that set of patterns.

  • Convert JPG images to PDF

    Working with 8.0 Pro. I want to basically open the JPG image and save it as a PDF via VB script. For some reason, I can't seem to make it work. Can anyone provide a few lines of code to do this?
    Thanks for any help.

    I can't think of a simple way to script this, except to open the JPEG
    in a separate application and print to PDF. But maybe you've found a
    way I missed. Can you share what you have tried?
    Aandi Inston

  • How to convert JPG image to BMP ? (Printing jpg images in smartforms from content server)

    Hi,
    We have employee photos(JPG Format) stored in Content server. And now we want to print the photos in smartforms. For this I had written the below code to read the photo from content server in binary format as below.
    REPORT ZTEST1.
    PARAMETERS P_PERNR TYPE PERNR_D.
    DATA: PS_CONNECT_INFO TYPE TOAV0,
          IT_BINARY TYPE TABLE OF SDOKCNTBIN.
    CALL FUNCTION 'HR_IMAGE_EXISTS'
      EXPORTING
        P_PERNR                     = P_PERNR
    *   P_TCLAS                     = 'A'
    *   P_BEGDA                     = '18000101'
    *   P_ENDDA                     = '99991231'
    IMPORTING
    *   P_EXISTS                    =
       P_CONNECT_INFO              = PS_CONNECT_INFO
    * EXCEPTIONS
    * ERROR_CONNECTIONTABLE       = 1
    *   OTHERS                      = 2
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.
    IF PS_CONNECT_INFO IS NOT INITIAL.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
       STOR_CAT                    = SPACE
       CREP_ID                     = PS_CONNECT_INFO-ARCHIV_ID
          DOC_ID                      = PS_CONNECT_INFO-ARC_DOC_ID
    *   PHIO_ID                     =
    *   SIGNATURE                   = 'X'
    *   SECURITY                    = ' '
    *   NO_CACHE                    = ' '
    *   RAW_MODE                    = ' '
    * IMPORTING
    *   FROM_CACHE                  =
    *   CREA_TIME                   =
    *   CREA_DATE                   =
    *   CHNG_TIME                   =
    *   CHNG_DATE                   =
    *   STATUS                      =
    *   DOC_PROT                    =
    TABLES
    *   ACCESS_INFO                 =
    *   CONTENT_TXT                 =
       CONTENT_BIN                 = IT_BINARY
    * EXCEPTIONS
    * BAD_STORAGE_TYPE            = 1
    *   BAD_REQUEST                 = 2
    *   UNAUTHORIZED                = 3
    * COMP_NOT_FOUND              = 4
    *   NOT_FOUND                   = 5
    *   FORBIDDEN                   = 6
    *   CONFLICT                    = 7
    * INTERNAL_SERVER_ERROR       = 8
    *   ERROR_HTTP                  = 9
    * ERROR_SIGNATURE             = 10
    *   ERROR_CONFIG                = 11
    *   ERROR_FORMAT                = 12
    * ERROR_PARAMETER             = 13
    *   ERROR                       = 14
    *   OTHERS                      = 15
      IF SY-SUBRC <> 0.
    * Implement suitable error handling here
      ENDIF.
    ENDIF
    Now the issue is I want to convert that binary data to bitmap image and upload the same in to SE78. So that I can use that BMP image from SE78 in my smartforms.
    I had used the class CL_IGS_IMAGE_CONVERTER to covert the image into bmp but it is giving error that error in IMAGE DATA CORRUPT & Error Code 3. The conversion code used is as below.
    ******* CONVERT THE JPG IMAGE INTO BMP PHOTO. **********
      DATA: L_IGS_IMGCONV TYPE REF TO CL_IGS_IMAGE_CONVERTER,
    L_IMG_BLOB    TYPE W3MIMETABTYPE,
    L_IMG_SIZE    TYPE W3PARAM-CONT_LEN,
    L_IMG_TYPE    TYPE W3PARAM-CONT_TYPE,
             L_IMG_SUBTYPE TYPE W3PARAM-CONT_TYPE,
    L_IMG_URL     TYPE W3URL,
    L_ERR_CODE    TYPE I,
    L_ERR_TEXT    TYPE STRING,
             P_DEST TYPE CHAR32 VALUE 'IGS_RFC_DEST'.
      DATA: G_IMG_BLOB     TYPE W3MIMETABTYPE,
          G_IMG_TYPE     TYPE W3PARAM-CONT_TYPE,
          G_IMG_SIZE     TYPE W3PARAM-CONT_LEN.
      IF NOT IT_BINARY[] IS INITIAL.
        G_IMG_BLOB[] = IT_BINARY.
        CREATE OBJECT L_IGS_IMGCONV
          EXPORTING
            DESTINATION = P_DEST.
        CALL METHOD L_IGS_IMGCONV->SET_IMAGE
          EXPORTING
            BLOB      = G_IMG_BLOB
            BLOB_SIZE = G_IMG_SIZE.
        CASE PS_CONNECT_INFO-RESERVE.
          WHEN 'TIF'.
            G_IMG_TYPE = 'image/tiff'.
          WHEN 'JPG'.
            G_IMG_TYPE = 'image/jpeg'.
          WHEN 'PNG'.
            G_IMG_TYPE = 'image/png'.
          WHEN 'GIF'.
            G_IMG_TYPE = 'image/gif'.
          WHEN 'BMP'.
            G_IMG_TYPE = 'image/x-ms-bmp'.
          WHEN OTHERS.
            EXIT.
        ENDCASE.
    L_IGS_IMGCONV->INPUT  = G_IMG_TYPE.
        L_IGS_IMGCONV->OUTPUT = 'image/x-ms-bmp'.
    *    PERFORM GET_SIZE USING PICTURE_CONTAINER
    * L_IGS_IMGCONV->WIDTH
    * L_IGS_IMGCONV->HEIGHT.
        CALL METHOD L_IGS_IMGCONV->EXECUTE
          EXCEPTIONS
            OTHERS = 1.
        IF SY-SUBRC IS INITIAL.
          CALL METHOD L_IGS_IMGCONV->GET_IMAGE
            IMPORTING
              BLOB      = L_IMG_BLOB
              BLOB_SIZE = L_IMG_SIZE
              BLOB_TYPE = L_IMG_TYPE.
          SPLIT L_IMG_TYPE AT '/' INTO L_IMG_TYPE L_IMG_SUBTYPE.
        ELSE.
          CALL METHOD L_IGS_IMGCONV->GET_ERROR
            IMPORTING
              NUMBER  = L_ERR_CODE
              MESSAGE = L_ERR_TEXT.
          BREAK-POINT.
        ENDIF.
      ENDIF.
    ENDIF.
    So could you please some one help me how to convert JPEG Photo to BMP programatically.
    Regards,
    Mayur.

    johnandersonpalmdesert wrote:
    My printer is requesting a vector file.
    Jpeg File format does not support vectors.  Photoshop has limited vector support and tools.  Photoshop can not save vector file formats like SVG.  What File type does your printer want?
    Adobe Illustrator is Adobe vector application.

  • Convert jpg image to array of integers and store in file

    For a project that I am working on I need to be able to take the black and white jpg images that I am using and convert each pixel into either a -1 or +1 according to if the pixel color is white or black. Then, once I have an array of those values, I need to store the array to a file. Can this be done? Can PixelGrabber accomplish this task? Thanks in advance!
    Keith Pemberton

    Yes
    PixelGrabber pg = new PixelGrabber(myImage, 0, 0, width, height, pixels, 0, width);

  • Convert inserted images from MSWord to PDF?

    I have Acrobat 9 installed on two computers.  My desktop Acrobat will convert MSWord text and inserted images into PDF files.  My laptop Acrobat will convert identical MSWord text but not images into PDF - text appears as if no image was present (no wrap).  I have checked Preferences and JPG appears OK.  Same result whether using Acrobat's Create PDF from File, or MSWord's Acrobat tab.  What should I do to fix Acrobat 9 on my laptop?  Both computers on Windows 7 64-bit.

    Thanks to both answers above - it's a MSWord issue, not Acrobat.  No inserts (images, text box, charts, etc) will print to any destination (printer or PDF). 
    I have initiated correspondence with the MS forum, but if either of you know how to "configure Word' to print images" your advice would be welcome.  I have searched Word options and find no button to enable/disable printing of inserted images.
    Best regards,
    Carlo

  • Why won't my 4S open jpg images in email?

    A friend emails me images on my phone as JPGs, but they won't open on my 4S.  They open just fine on my desktop. I can't find anything in settings that would be preventing it. 
    Thanks.

    I tried forwarding my friends email to myself and when I do that, the pictures open with no trouble.  Does that mean it has to do with how he is attaching the files? 

  • How to batch convert jpgs to pdfs?

    I am trying to figure out how to convert a bunch of jpg images to a single pdf file.  I know there are some 3rd party programs that will do this but I was wondering if it is possible to do right inside Adobe Acrobat.  I am running Adobe Acrobat 5.0.  Thank you for any help.

    That's an old version so I don't remember if it has this option but you "should" be able to go to File>Create PDF>From multiple files. Again, your version is old so it may not be there. It's available in the newer versions.

  • Convert jpg to bmp

    Hi
    I am new to the java programming.
    and I have to convert jpg images to bmp images.
    can you please give me suggestions what can be done.
    thanks.

    i hav tried using ImageIO.. but it is not converting the image efficiently. Define 'efficiently'.
    i think there is some difference of 2 pixels..Of course there's a difference. JPG is a compressed format and BMP is not.

  • Unable to convert an image (.bmp) to PDF

    I have a written servlet that uses Adobe LiveCycle API to convert files to PDF. This works. I have a problem with one image (.BMP) for which the PDF conversion fails. I then tried converting the image to PDF using Adobe Acrobat. I see the following error:
    I am able to open the image file without any issues. Why does Acrobat think the file is corrupt? Is there a way to find out if an image is OK for PDF conversion, either manually or programmatically? Attaching the image file for reference.

    Hi ,
    For this issue, it looks like your SharePoint server(s) have been patched with MS13-052. 
    Please try to uninstall it and reboot your machine.
    Here is a similar post for you to take a look at:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/eec6e515-6a0a-42f2-963d-51fde59be9c4/sharepoint-server-20102-abnormal-issues-please-help
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Signing a PDF/A with a JPG image, invalidates the compliance

    I am trying to sign a PDF/A document.
    I can't do it with Adobe Acrobat without invalidating the PDF/A compliance. So I am using our tool to sign the file.
    When I use a BMP as the graphical represenation of the signature, the file remains compliant, if we use a JPG image the compatibility fails.
    The only difference between the two PDF/A files (compliant and incompliant) is the XObject that is different (one is simple neat bmp object, the other is a JPG, with Fileter /DCTDecode etc.).
    I would like to know if there is any way I can make the JPG image to work without invalidating the PDF/A compliance, or is it inevitable, as a JPG object has attributes that contradict basic concepts of PDF/A.
    Thanks
    Tal

    Thanks.
    what you say about PDF/A being a final version makes a lot of sense, but not when you are talking about digital signatures of course.
    if you first sign and then convert the file to be PDF/A compliant you automatically invalidate the signatures.
    long term electronic archiving and digital signatures is a perfect match, and people still ike to see their hand written signature, even on an electronic document, and it is exactly where the problem begins.
    the pre flight is very cheap with information.
    it gives me a general note on the XObject that it should start with stream and then CR LF, and must end with an endstream preceeded by EOL. as far as I can tell my object complies with these requirements

  • Convert email to PDF

    Version: Adobe Acrobat 9 Standard
    Using: Microsoft Outlook 2007
    Feature: Convert to Adobe PDF
    Issue: Unable to convert encrypted emails to PDF Portfolio.  I can open the encrypted email and convert it to PDF (single email to single PDF).  However, I cannot select multiple emails in a folder (i.e., Inbox), some encrypted/some not encrypted, or all encrypted, and then convert to PDF (portfolio PDF).  I can select multiple emails that are not encrypted and convert them to a portfolio PDF just fine.  It is the encrypted emails that are failing.
    Does anyone have a solution, a setting that must be changed, or a process that must be followed to make this work?
    Thank you in advance.
    Chris Kiel

    https://itunes.apple.com/gb/app/pdf-print-driver-for-ipad/id585512317?mt=8&affId =1285982&ign-mpt=uo%3D4
    First Install this app
    After installation, click to open this app
    Virtual Printer will OFF by default, tab to ON it
    Please do not turn on Wi-Fi Drive, this causes app hang sometimes
    Now open Mail or webpage & click to print, it’ll get printed into PDF via Virtual PDF Printer

  • Batch Convert .msg emails to PDF with Acrobat

    Seem to be having a problem converting a large amount of emails to PDF using the Acrobat plug-in in Outlook 2007. Following are system setup:
    Office 2007
    XP Pro
    Acrobat 9 Standard
    We have a large volume of emails stored in Worldox GX2 and I want to convert them to PDF from Outlook. I check the files out of Worldox to a local folder and drag and drop the .msg files to a folder in Outlook. When I try to select any number of them and then convert to PDF I get the following error:
    Details of Email to PDF conversion:
    Failed to Convert:
    From: , Subject: , Date: , Status: Not an email message
    This happens even if I try to convert just one email. HOWEVER, if I open any given email then by double-clicking it in the outlook folder and then file-convert to PDF, it converts fine. What?!?!
    Any help would be appreciated!!!

    Thanks,
    I just found that out, too.
    What I'd like to find out is how to fix this.
    Bob

  • Convert word document into .JPG image. Possible?

    Hello
    I need to convert a word document into a .JPG image... Anyone who can recommend a mac program that can help, or how word can do it for me?
    Best regards
    Jesper Pedersen

    In Word go to File > Print... > PDF > Save As PDF.Open the resulting file in Preview.
    Choose File > Save As... > Format: JPEG.
    Hope that helps.
    mrtotes

Maybe you are looking for

  • 2 probs,Neo2 no longer detects DVD drive in POST & Floppy slot missing pin? RMA?

    Sorry for starting another thread but my first post wasnt very explanatory. Here's my problems. My DVD/CD Drive is no longer being recognized by my motherboard in POST and it wont appear in Windows/My Computer. This started when I was troubleshooting

  • How can i add new identity in file option of menu bar

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/869755'' how can i add new identity option in file option of menu bar

  • SCC1 Problem

    My SAP is SAP R3 4.6C, now I want to use T-Code:SCC1 to transport request from A client to B client in the same server, in the SCC1 of client B, transport processing is normal and without any error information, but after transporting, all objects of

  • FM:"FKK_LINE_ITEMS_WITH_SELECTIONS" mandatory components of structure - "FKKEPOSC"

    Hi, I want to use the FM "FKK_LINE_ITEMS_WITH_SELECTIONS" for creating one Z-Account statement to display same like chronology-FPL9. So while calling this FM, I am passing the structure "FKKEPOSC". But I guess some mandatory fields/components I am mi

  • Solstice X.25 license problem?

    I installed Solstice x.25 on an Ultra 1 (Solaris 7) and installed the license key using lit. When I try to start the network using x25tool, I get the message similar to "x.25 is looking for a license server, still trying" followed by network has been