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

Similar Messages

  • How to convert JPG files to PDF

    Suggestions on how to convert JPG files to PDF using Adobe?

    You would either need the PDF Pack service, or Adobe Acrobat or Photoshop.

  • How to convert from image based pdf to text based pdf

    I have Adobe 9 Pro. How to convert from image based pdf to text based pdf? For example, if someone emails a scanned pdf to me, how do I convert that document into a text based pdf?

    To perform OCR, open the document and select: Document > OCR Text Recognition > Recognize Text Using OCR
    More information on the various options is in the Acrobat help doc.

  • 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.

  • 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).

  • 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 Multiple Images to PDF using iTextSharp?

    Hello friends, in my small project i have a button for converting more than one image file to pdf, i made some search in google and found some articles about that i found one that helps me to do that but convert only two images to pdf, and i want to make
    it unspecified number of image to pdf
     can anyone help me please? how to do that? or give me an article about that
    this is my code:
    private void button2_Click(object sender, EventArgs e)
    string sMergedFiles = @"C:\PDFTest\PdfReport.PDF";\\pdf file path
    string sTiffFiles = "C:\\PDFTest\\TiffFiles\\";\\Tiff image files path
    Document document = new Document(PageSize.A4, 50, 50, 50, 50);
    PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(sMergedFiles, FileMode.CreateNew));
    document.Open();
    //here you can loop thru and call AddTiff2Pdf for multiple files
    string tiffFileName = Path.Combine(sTiffFiles, "asdf.tif");\\first tiff image
    AddTiff2Pdf(tiffFileName, ref writer, ref document);
    tiffFileName = Path.Combine(sTiffFiles, "1234.tif");\\second tiff image
    AddTiff2Pdf(tiffFileName, ref writer, ref document);
    document.Close();
    private void AddTiff2Pdf(string tiffFileName, ref PdfWriter writer, ref Document document)
    Bitmap bitmap = new Bitmap(tiffFileName);
    int numberOfPages = bitmap.GetFrameCount(System.Drawing.Imaging.FrameDimension.Page);
    PdfContentByte cb = writer.DirectContent;
    for (int page = 0; page < numberOfPages; page++)
    bitmap.SelectActiveFrame(System.Drawing.Imaging.FrameDimension.Page, page);
    System.IO.MemoryStream stream = new System.IO.MemoryStream();
    bitmap.Save(stream, System.Drawing.Imaging.ImageFormat.Png);
    iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(stream.ToArray());
    stream.Close();
    img.ScalePercent(72f / bitmap.HorizontalResolution * 100);
    img.SetAbsolutePosition(0, 0);
    cb.AddImage(img);
    document.NewPage();

    Why only two images allowed, cause failure with third ?Oh I used another way before, a third party tool, download and add reference to project then use the following code.There is
    no limitation of image amount. Ref this
    article.
    // Create a pdf document with a section and page added.
    PdfDocument doc = new PdfDocument();
    PdfSection section = doc.Sections.Add();
    PdfPageBase page = doc.Pages.Add();
    //Load a tiff image from system
    PdfImage image = PdfImage.FromFile(@"D:\images\bear.tif");
    //Set image display location and size in PDF
    float widthFitRate = image.PhysicalDimension.Width / page.Canvas.ClientSize.Width;
    float heightFitRate = image.PhysicalDimension.Height / page.Canvas.ClientSize.Height;
    float fitRate = Math.Max(widthFitRate, heightFitRate);
    float fitWidth = image.PhysicalDimension.Width / fitRate;
    float fitHeight = image.PhysicalDimension.Height / fitRate;
    page.Canvas.DrawImage(image, 30, 30, fitWidth, fitHeight);
    //save and launch the file
    doc.SaveToFile("image to pdf.pdf");
    doc.Close();
    System.Diagnostics.Process.Start("image to pdf.pdf");

  • 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);

  • Displaying JPG images in PDF report

    Hi
    We developed a report, wich generates modul documentation from designer repository. In the repository the JPG images are attached to modules. The images have different sizes. The report reads the modules description and displays the images attached to modules.
    The report resizes the images. Seems like the image wide is resized to fit perfectly in the containing frame.
    This behavior is god when we have a bigger image, than the containing frame. But if we have a smaller image than the frame, the reports enlarges the image.
    How can we prevent this behavior?
    Thanks

    I think for that particular image object in layout model, if you can set the vertical and horizontal elasticity to fix, the image will not resize.
    Thanks
    Rohit

  • Shockwave Flash object in Word2007 only converting to Image in PDF using Acrobat9 Pro

    I set the Shockwave Flash object to embed: True & the video is  located locally, so why isn't Acrobat 9 Pro converting the word video to  pdf video.
    I've tried:
    - using 'Acrobat' section on Word ribbon to convert
    - saving Word file to Acrobat using word's 'save as' command
    - using Adobe printer within Word
    - opening the Word file from within Acrobat
    Ive just reskimmed the Word 'advanced' & 'saving' options & I  can't see any extra checks to make.
    Thanks for this,
    Sem.

    hi thanks Bernd, 2 questions:
    Can Adobe Acrobat 9 Pro do this (as well as Extended - from the product comparsion chart it seems so...)?
    If the full version can, does the trial version also enable this - am not really looking forwards to paying for software & then finding still yet to be resolved..?
    Thanks for this, others also interested on various sites will keep them informed.

  • 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]

  • Havig problems converting JPG to PDF with Acrobat Prof 7

    I am using Acrobat professional 7. I am trying to convert JPG files to PDF. I have done this in the past without problems and now I am getting a message of "unrecoverable error". What can I do? I have tried doing this with one file and with multiple files and still get the same problem.

    What I do is:
    File
    Create PDF
    from Multiple files
    Browse
    (select file)
    add
    OK
    Then after I do all of that I get the message "unrecoverable error"
    I have created over the past year thousands of JPG files to PDF without problems. I can't seem to create a PDF from these JPG files today. I have tried using just one file and also several files and get the same message each time.

  • Using applescript to save an image to PDF?

    I'm still learning applescript, but I need a good one really quickly. I have several images that I need to save as PDF. Is there a way to do this through applescript? It will save me many, many hours of work over the next month.
    Thanks,
    Jonathan
    MacBook   Mac OS X (10.4.9)  

    Hello Jonathan,
    Ok i have only one final question.
    Do you know how to work in photoshop, don't you? Ok i think yes.
    Well i have 2 ways to do that, i did one action from photoshop that will get the image inside folder and will convert this image in pdf. Abouve the line of script
    that you have to attach to folder action and the action for Photoshop.
    About the action for Photoshop give me your email address and I send you, or do it your self. You have to do this: open one image in JPG, go to action, go new set, put your name of set, put the name of action if you like you can change the name, go print with preview, print and set save as PDF close your file and stop the action.
    Now that you have to do is put all your files inside your folder and leave the Photoshop do it for you, ok?
    Good Luck
    Hack
    property speak_alert : false -- if true, the script will speak the alert. If false, the script will display an alert dialog
    property dialog_timeout : 30 -- set the amount of time before dialogs auto-answer.
    property copychecksindicator : false
    property itemcheck_delaytime : 2
    property foldercheck_delaytime : 3
    property speciallabelindex : 7
    on adding folder items to this_folder after receiving added_items
    if copychecksindicator is true then
    set the added_items to my checkaddeditems(the added_items)
    if the added_items is {} then return "no vaild items"
    end if
    tell application "Finder"
    activate
    set this_folder to choose folder with prompt "pdf"
    set these_files to every file of folder this_folder
    end tell
    tell application "Finder"
    repeat with i from 1 to number of items in these_files
    set this_path to (item i of these_files) as string
    tell application "Adobe Photoshop CS2"
    launch
    open file (this_path as string)
    set this_files to current document
    do action "Jpg" from "Jpg para Pdf"
    end tell
    end repeat
    end tell
    end adding folder items to

  • 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.

  • I recently started using an iPad. I up loaded several apps. Evernote, cloudon, Goodreader, Drop Box and lots of others. It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.  Help

    I recently started using an iPad. I up loaded several apps. Evernote, cloudon, Goodreader, Drop Box and lots of others.
    It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.
    Is there a "hitch" in my "giddy up?"
    Help.
    Process:         iPhoto [345]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [183]
    Date/Time:       2013-04-26 13:53:18.305 -0700
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          405039 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  318933 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      5073147D-D214-4BD3-B7FA-9A9E6A158ABA
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000c8fc0000
    VM Regions Near 0xc8fc0000:
        CG backing stores      00000000c8ea6000-00000000c8f19000 [  460K] rw-/rw- SM=SHM 
    --> CG backing stores      00000000c8fc0000-00000000c92f7000 [ 3292K] r--/rw- SM=SHM 
        Submap                 00000000ffff0000-00000000ffff2000          r-x/r-x process-only submap
    Application Specific Information:
    objc[345]: garbage collection is OFF
    Performing @selector(doSaveAsPDF:) from sender NSMenuItem 0x6da8c240
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreGraphics        0x93976aec blt_pattern_blend_XXXX32 + 686
    1   com.apple.CoreGraphics        0x93976def blt_bitmap_blend_AXXX32 + 105
    2   com.apple.CoreGraphics        0x9355894c argb32_mark_pixelshape + 19824
    3   com.apple.CoreGraphics        0x93485293 argb32_mark + 279
    4   com.apple.CoreGraphics        0x9349c915 argb32_image + 1037
    5   libRIP.A.dylib                0x90afec75 ripd_Mark + 279
    6   libRIP.A.dylib                0x90afcc67 ripl_BltImage + 1368
    7   libRIP.A.dylib                0x90afc497 ripc_RenderImage + 269
    8   libRIP.A.dylib                0x90b08a8c ripc_DrawImages + 6467
    9   com.apple.CoreGraphics        0x935593be CGContextDrawImages + 239
    10  com.apple.coreui              0x94680a79 CUIPenCG::DrawImages(void*, CGRect const*, CGImage**, CGRect const*, unsigned long) + 45
    11  com.apple.coreui              0x94671fc5 CUIRenderer::DrawWindowFrameDark(CUIDescriptor const*) + 4531
    12  com.apple.coreui              0x9465ce0d CUIRenderer::Draw(CGRect, CGContext*, __CFDictionary const*, __CFDictionary const**) + 5701
    13  com.apple.coreui              0x9467dde5 CUIDraw + 206
    14  com.apple.AppKit              0x912a52e4 _NSDrawThemeBackground + 1429
    15  com.apple.AppKit              0x9145edeb -[NSThemeFrame _drawUnifiedToolbar:] + 874
    16  com.apple.AppKit              0x9145e7f3 -[NSThemeFrame _drawTitleBar:] + 673
    17  com.apple.AppKit              0x912a11cf -[NSThemeFrame _drawFrameInterior:clip:] + 125
    18  com.apple.AppKit              0x912a0dd9 -[NSThemeFrame drawFrame:] + 119
    19  com.apple.AppKit              0x9145e515 -[NSFrameView drawRect:] + 765
    20  com.apple.AppKit              0x9145dc5f -[NSThemeFrame drawRect:] + 107
    21  com.apple.AppKit              0x9126f6c9 -[NSView _drawRect:clip:] + 3717
    22  com.apple.AppKit              0x9129eae6 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1958
    23  com.apple.AppKit              0x9126d026 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 708
    24  com.apple.AppKit              0x9126c627 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 259
    25  com.apple.AppKit              0x91267caa -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4817
    26  com.apple.AppKit              0x91260bd9 -[NSView displayIfNeeded] + 1365
    27  com.apple.AppKit              0x9138081b -[NSThemeFrame handleSetFrameCommonRedisplay] + 233
    28  com.apple.AppKit              0x913220b8 -[NSWindow _setFrameCommon:display:stashSize:] + 2253
    29  com.apple.AppKit              0x913217e6 -[NSWindow setFrame:display:] + 71
    30  com.apple.AppKit              0x913c5049 -[NSWindow _setFrameAfterMove:] + 496
    31  com.apple.AppKit              0x913c4e3f -[NSWindow _windowMovedToRect:] + 261
    32  com.apple.AppKit              0x9195152d -[NSWindow _getPositionFromServer] + 100
    33  com.apple.AppKit              0x919542a8 -[NSWindow _initFromGlobalWindow:inRect:styleMask:] + 350
    34  com.apple.RemoteViewServices  0x94640ff9 -[NSRemoteWindowController _remoteHostDidGrantRights:] + 335
    35  com.apple.RemoteViewServices  0x946409a4 __58-[NSRemoteWindowController _handleReplySetupSharedWindow:]_block_invoke_0 + 43
    36  com.apple.CoreGraphics        0x935c740b _WindowRightsGrantOfferedNotificationHandler + 678
    37  com.apple.CoreGraphics        0x93400a3b CGSPostLocalNotification + 218
    38  com.apple.CoreGraphics        0x934cdcfd notifyDatagramHandler + 265
    39  com.apple.CoreGraphics        0x934cda25 CGSDispatchDatagramsFromStream + 316
    40  com.apple.CoreGraphics        0x934cd594 snarfEvents + 481
    41  com.apple.CoreGraphics        0x934cd247 CGSGetNextEventRecordInternal + 127
    42  com.apple.CoreGraphics        0x93520180 CGEventCreateNextEvent + 40
    43  com.apple.HIToolbox           0x9b5a744e _ZL38PullEventsFromWindowServerOnConnectionjh + 69
    44  com.apple.CoreFoundation      0x9585ad0a __CFMachPortPerform + 346
    45  com.apple.CoreFoundation      0x9585ab91 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 49
    46  com.apple.CoreFoundation      0x9585a7bb __CFRunLoopDoSource1 + 155
    47  com.apple.CoreFoundation      0x95893e01 __CFRunLoopRun + 2193
    48  com.apple.CoreFoundation      0x958931dc CFRunLoopRunSpecific + 332
    49  com.apple.CoreFoundation      0x958a3f01 CFRunLoopRun + 129
    50  com.apple.RemoteViewServices  0x9463b7c8 -[NSRemoteSavePanel runModal] + 322
    51  com.apple.RemoteViewServices  0x9463ef05 -[NSRemoteSavePanel runModalForDirectory:file:types:] + 110
    52  com.apple.RemoteViewServices  0x9463ec94 -[NSRemoteSavePanel runModalForDirectory:file:] + 55
    53  com.apple.print.framework.Print.Private 0x1990afa3 AskUserForFile + 420
    54  com.apple.print.framework.Print.Private 0x1991977d 0x198f7000 + 141181
    55  com.apple.print.framework.Print.Private 0x1991ea91 0x198f7000 + 162449
    56  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    57  com.apple.AppKit              0x91329663 -[NSApplication sendAction:to:from:] + 232
    58  com.apple.AppKit              0x9141ccaf -[NSMenuItem _corePerformAction] + 536
    59  com.apple.AppKit              0x9141c92c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 171
    60  com.apple.AppKit              0x9141bfb5 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    61  com.apple.AppKit              0x916f7ef7 -[NSMenu performActionForItemAtIndex:] + 65
    62  com.apple.AppKit              0x916f7f2a -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    63  com.apple.AppKit              0x916fc15b -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    64  com.apple.AppKit              0x91562670 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 172
    65  com.apple.AppKit              0x91392246 NSSLMMenuEventHandler + 452
    66  com.apple.HIToolbox           0x9b71cc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    67  com.apple.HIToolbox           0x9b598313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    68  com.apple.HIToolbox           0x9b597790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    69  com.apple.HIToolbox           0x9b5ac571 SendEventToEventTarget + 76
    70  com.apple.HIToolbox           0x9b71d0d0 _ZL18SendHICommandEventmPK9HICommandmmhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 482
    71  com.apple.HIToolbox           0x9b71d13a SendMenuCommandWithContextAndModifiers + 70
    72  com.apple.HIToolbox           0x9b78898d SendMenuItemSelectedEvent + 275
    73  com.apple.HIToolbox           0x9b5e8d79 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 129
    74  com.apple.HIToolbox           0x9b778752 _ZL19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttmS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 1898
    75  com.apple.HIToolbox           0x9b778a20 _HandlePopUpMenuSelection7 + 639
    76  com.apple.AppKit              0x91565aa2 _NSSLMPopUpCarbonMenu3 + 4532
    77  com.apple.AppKit              0x9198ab4c _NSPopUpCarbonMenu3 + 107
    78  com.apple.AppKit              0x91563754 -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOpti ons:] + 425
    79  com.apple.AppKit              0x91787b78 -[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 610
    80  com.apple.AppKit              0x91327243 -[NSControl mouseDown:] + 943
    81  com.apple.AppKit              0x912f0dcd -[NSWindow sendEvent:] + 7533
    82  com.apple.AppKit              0x91289f77 -[NSApplication sendEvent:] + 4788
    83  com.apple.iLifeKit            0x0201dc9b -[iLifeKit sendEvent:] + 55
    84  com.apple.iPhoto              0x0012c344 0xac000 + 525124
    85  com.apple.AppKit              0x914f1662 -[NSApplication _modalSession:sendEvent:] + 550
    86  com.apple.AppKit              0x914f122c -[NSApplication _realDoModalLoop:peek:] + 638
    87  com.apple.AppKit              0x914ec481 -[NSApplication _doModalLoop:peek:] + 69
    88  com.apple.AppKit              0x914f0f08 -[NSApplication runModalForWindow:] + 258
    89  com.apple.AppKit              0x91794a93 -[NSPrintPanel runModalWithPrintInfo:] + 621
    90  com.apple.AppKit              0x917929ec -[NSConcretePrintOperation runOperation] + 333
    91  com.apple.iPhoto              0x00363141 0xac000 + 2847041
    92  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    93  com.apple.AppKit              0x91329663 -[NSApplication sendAction:to:from:] + 232
    94  com.apple.AppKit              0x91329540 -[NSControl sendAction:to:] + 102
    95  com.apple.AppKit              0x91329443 -[NSCell _sendActionFrom:] + 160
    96  com.apple.AppKit              0x91328800 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2295
    97  com.apple.AppKit              0x913aba95 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 501
    98  com.apple.AppKit              0x91327243 -[NSControl mouseDown:] + 943
    99  com.apple.AppKit              0x912f0dcd -[NSWindow sendEvent:] + 7533
    100 com.apple.AppKit              0x91289f77 -[NSApplication sendEvent:] + 4788
    101 com.apple.iLifeKit            0x0201dc9b -[iLifeKit sendEvent:] + 55
    102 com.apple.iPhoto              0x0012c344 0xac000 + 525124
    103 com.apple.AppKit              0x9121bb21 -[NSApplication run] + 1007
    104 com.apple.AppKit              0x914acac5 NSApplicationMain + 1054
    105 com.apple.iPhoto              0x000bbc99 0xac000 + 64665
    106 com.apple.iPhoto              0x000bb2e5 0xac000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x9a596b5e __select_nocancel + 10
    1   libdispatch.dylib             0x96b4ecbd _dispatch_mgr_invoke + 642
    2   libdispatch.dylib             0x96b4d853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock             0x023e748f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   com.apple.CoreFoundation      0x958fb1aa -[NSObject performSelector:] + 58
    8   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    14  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    15  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    16  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    17  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib        0x9a595e12 __accept + 10
    1   com.apple.iPhoto              0x004a424d 0xac000 + 4162125
    2   com.apple.iPhoto              0x004ee651 0xac000 + 4466257
    3   com.apple.iPhoto              0x004ee5be 0xac000 + 4466110
    4   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x9a596b42 __select + 10
    1   com.apple.CoreFoundation      0x958e1e15 __CFSocketManager + 1557
    2   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    3   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation          0x9970fbe8 -[NSCondition wait] + 304
    4   com.apple.iPhoto              0x000fda64 0xac000 + 334436
    5   com.apple.iPhoto              0x000fd672 0xac000 + 333426
    6   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    7   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    8   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    17  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    18  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    19  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    20  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x9279e3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore 0x9279e11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore 0x9279df2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component 0x9736a16a 0x96d7d000 + 6213994
    7   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    8   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 14:: CVDisplayLink
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo           0x97f120cd CVDisplayLink::runIOThread() + 945
    4   com.apple.CoreVideo           0x97f11d05 _ZL13startIOThreadPv + 160
    5   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    6   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 15:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x9940182a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component 0x9748c467 0x96d7d000 + 7402599
    4   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x005acdd1 0xac000 + 5246417
    4   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    5   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    7   com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    8   com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    9   com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    10  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    11  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    12  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    13  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    14  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x00175872 0xac000 + 825458
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 19:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib        0x9a594c76 semaphore_timedwait_trap + 10
    1   libdispatch.dylib             0x96b50a55 _dispatch_semaphore_wait_slow + 274
    2   libdispatch.dylib             0x96b50ab4 dispatch_semaphore_wait + 36
    3   com.apple.RemoteViewServices  0x9463a725 __54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0345 + 79
    4   libdispatch.dylib             0x96b4cfbd _dispatch_call_block_and_release + 15
    5   libdispatch.dylib             0x96b4e01c _dispatch_worker_thread2 + 231
    6   libsystem_c.dylib             0x99457b24 _pthread_wqthread + 346
    7   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 20:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 21:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 22:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x005acdd1 0xac000 + 5246417
    4   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    5   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    7   com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    8   com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    9   com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    10  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    11  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    12  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    13  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    14  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x00175872 0xac000 + 825458
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x001bb758 0xac000 + 1111896
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 25:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib        0x9a596bb2 __semwait_signal + 10
    1   libsystem_c.dylib             0x9940a7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib             0x9940a558 usleep$UNIX2003 + 60
    3   com.apple.AppKit              0x914646da -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    5   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    6   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 28:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000540  ebx: 0x15675480  ecx: 0x00000150  edx: 0x00000004
      edi: 0x0000ffff  esi: 0xc8fc0000  ebp: 0xc009f508  esp: 0xc009f460
       ss: 0x00000023  efl: 0x00010246  eip: 0x93976aec   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xc8fc0000
    Logical CPU: 0
    Binary Images:
       0xac000 -   0xd98feb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf2a000 -  0x100afe7  org.python.python (2.6.7 - 2.6.7) <61DBA92A-C39A-3A52-86F2-59CF9D310CB4> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1056000 -  0x105efff  com.apple.PhotoFoundation (1.0 - 10.17) <D48FDC95-21FC-328C-9F4F-89C28A260C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10cf000 -  0x12abffb  com.apple.geode (1.5.3 - 270.7) <DFD97416-FD86-3AF1-BFF0-79A47DADE257> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x133a000 -  0x133fff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1347000 -  0x1376ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x139b000 -  0x13c2ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13d6000 -  0x13faffb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1411000 -  0x141cfff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1427000 -  0x143cffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1448000 -  0x1474ffb  com.apple.DiscRecordingUI (6.0.4 - 6040.4.1) <F3EDDD79-611F-3ECC-9B78-0AB8BAC0D446> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1490000 -  0x1492fff  com.apple.ExceptionHandling (1.5 - 10) <6CA9446C-7EF9-35EE-BDF2-AA8D51E93E9E> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x149b000 -  0x14a6ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14b2000 -  0x184bff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <B03978EF-A395-30D4-833B-7C474E1F5F12> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1948000 -  0x1bd9ff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1cb5000 -  0x1d4cff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1da8000 -  0x1e10ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1e52000 -  0x1f50ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x1f99000 -  0x1fc4ffb  com.apple.ProUtils (1.1 - 200.36) <E286BD1F-0BE8-3151-B758-89870AB4AC89> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x1fde000 -  0x2049fff  com.apple.iLifeKit (1.3.1 - 156.11) <F93283F4-046D-3653-9607-8B0F850E6318> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x208e000 -  0x22b6ff7  com.apple.prokit (7.2.3 - 1823) <0FEDF2D7-F31A-36F2-91A9-C03877B0CB46> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x23c4000 -  0x28f0ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2aee000 -  0x2b04ffb  com.apple.AOSAccounts (1.0.2 - 1.0.71) <13763832-1B2B-32E8-95BC-C23A627E6DD4> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2b19000 -  0x2b53ff3  com.apple.Ubiquity (1.1 - 210.2) <F8426ABA-BB3F-3A48-BF4E-9A0F6C12634F> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x2b6e000 -  0x2b6eff6  com.apple.SafariDAVNotifier (1.1.1 - 1) <DE95A56E-E2C8-3D96-B628-4DC6FA6CDD39> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2b74000 -  0x2b95ff7  com.apple.ChunkingLibrary (1.0 - 127.2) <8C1C8488-71E4-3C13-AF75-95CF06C040A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x2ba1000 -  0x2ba3fff  com.apple.LibraryRepair (1.0 - 1) <8D2DE423-2226-395A-9D90-3C43911F8613> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x2bab000 -  0x2c05fff  com.apple.proapps.MIO (1.0.6 - 512) <8321DF77-4AD8-376B-9465-83F471AA61D2> /Applications

    It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.
    Are you using the "Print to PDF" dialogue to convert your jpegs to pdf?
    In addition to OT's test, you might also check, if using a different "Theme" for printing will avoid the crash:
    14  com.apple.AppKit               0x912a52e4 _NSDrawThemeBackground + 1429
    15  com.apple.AppKit               0x9145edeb -[NSThemeFrame
    You crashlog shows, that iPhoto crashes, when trying to draw the "Print" theme background. There could be a problem wit the installed themes. Can you convert any jpegs to pdf, not only the jpegs downloaded from your iPad?
    Léonie

Maybe you are looking for