Large Tiff files

In our digital print department, all of our techs use PC's, we are seeing really large tiff file sizes. Our techs are opening pdf files in Photoshop, flattening them, and saving as tiff's. The file size of the tiffs are much, much larger than the pdf files before flattening. Our techs just started seeing this recently. Can someone tell me how they usually make tiffs (settings used) or if there is a hidden setting that might need to be changed?

This is entirely normal. A TIFF will almost always be larger than a PDF, unless the PDF was raster; most are vector. However, if the files are larger than before, you probably have a different resolution than before.

Similar Messages

  • Automatically Slicing Large TIFF Files with Photoshop 5.1

    I am trying to automatically slice a very large TIFF file (800 MB) into 28 equally-sized rectangles using Actions (it is a scanned image of 28 scientific slides and reducing the resolution is not an option). My goal is to start with the TIFF file and end up with a folder that contains 28 separate files. I'll do this on many such TIFF files, so it needs to be coded into an action.
    So far I have an action that creates guides in a grid pattern and then converts the guides to 28 individual rectangular user slices that together cover the entire screen. Unfortunately the file is far too large  to use with the "Save for Web & Devices" tool and I also can't export to TIFF from that tool. So I made an action that individually selects each slice (using the slice select tool), copies it, creates a new file, pastes the image, saves it as a flattened, non-compressed TIFF into a new folder, then closes the file. When I try to run this I get the following error:
    The command "Select" is not currently available
              -- Continue --       -- Stop --
    If I press Continue the action is not carried out. If I press Stop and select the slice manually there is no problem (but then my action will not be fully automated). The image is in 8-bit RGB mode, and I've also tried converting the locked Background layer into a standard layer. I don't see any reason why the select command shouldn't be available! There is only one layer and there are user slices available for selection. I tried separating the slicing and select/import jobs into 2 different actions but it still didn't work.
    Any help you can give me would be greatly appreciated! Thank you!
    Photoshop CS 5.1 Extended, v. 12.1 x64 - I have installed the recent update
    Windows 7 64-bit
    6 GB RAM

    This might do it...
    It will save the individual files in a folder called filechop off the files path.
    #target photoshop
    function main(){
    if(!documents.length) return;
    var dlg=
    "dialog{text:'Script Interface',bounds:[100,100,380,290],"+
    "panel0:Panel{bounds:[10,10,270,180] , text:'' ,properties:{borderStyle:'etched',su1PanelCoordinates:true},"+
    "title:StaticText{bounds:[60,10,220,40] , text:'File Chop' ,properties:{scrolling:undefined,multiline:undefined}},"+
    "panel1:Panel{bounds:[10,40,250,130] , text:'' ,properties:{borderStyle:'etched',su1PanelCoordinates:true},"+
    "statictext1:StaticText{bounds:[10,10,111,30] , text:'Accross' ,properties:{scrolling:undefined,multiline:undefined}},"+
    "statictext2:StaticText{bounds:[140,10,230,27] , text:'Down' ,properties:{scrolling:undefined,multiline:undefined}},"+
    "across:DropDownList{bounds:[10,30,100,50]},"+
    "down:DropDownList{bounds:[140,30,230,50]},"+
    "saveFiles:Checkbox{bounds:[10,60,230,80] , text:'Save and Close new files?'}},"+
    "button0:Button{bounds:[10,140,110,160] , text:'Ok' },"+
    "button1:Button{bounds:[150,140,250,160] , text:'Cancel' }}};"
    var win = new Window(dlg,'File Chop');
    if(version.substr(0,version.indexOf('.'))>9){
    win.panel0.title.graphics.font = ScriptUI.newFont("Georgia","BOLD",20);
    g = win.graphics;
    var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [1.00, 1.00, 1.00, 1]);
    g.backgroundColor = myBrush;
    var myPen =g.newPen (g.PenType.SOLID_COLOR, [1.00, 0.00, 0.00, 1],lineWidth=1);
    win.center();
      for(var i=1;i<31;i++){
       win.panel0.panel1.across.add ('item', i);    
       win.panel0.panel1.down.add ('item', i);    
    win.panel0.panel1.across.selection=0;
    win.panel0.panel1.down.selection=0;
    var done = false;
        while (!done) {
          var x = win.show();
          if (x == 0 || x == 2) {
            win.canceled = true;
            done = true;
          } else if (x == 1) {
            done = true;
    if(!documents.length)return;
    var startRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    doc = app.activeDocument;
    app.displayDialogs = DialogModes.NO;
    doc.flatten();
    var tilesAcross = parseInt(win.panel0.panel1.across.selection.index)+1;
    var tilesDown =parseInt(win.panel0.panel1.down.selection.index)+1;
    var tileWidth = parseInt(doc.width/tilesAcross);
    var tileHeight = parseInt(doc.height/tilesDown);
    var SaveFiles = win.panel0.panel1.saveFiles.value;
    ProcessFiles(tilesDown,tilesAcross,tileWidth,tileHeight,SaveFiles);
    app.preferences.rulerUnits = startRulerUnits;     
    main();
    function ProcessFiles(Down,Across,offsetX,offsetY,SaveFiles){
    try{
    var newName = activeDocument.name.match(/(.*)\.[^\.]+$/)[1];
    }catch(e){var newName="UntitledChop"}
    var Path='';
    try{
    Path =  activeDocument.path;
    }catch(e){Path = "~/Desktop";}
    if(SaveFiles){
    Path = Folder(decodeURI(Path) +"/FileChop");
    if(!Path.exists) Path.create();
    TLX = 0; TLY = 0; TRX = offsetX; TRY = 0;
    BRX = offsetX; BRY = offsetY; BLX = 0; BLY = offsetY;
    for(var a = 0; a < Down; a++){
      for(var i = 0;i <Across; i++){
                var NewFileName = newName +"#"+a+"-"+i;
       app.activeDocument.duplicate (NewFileName, true);
        activeDocument.selection.select([[TLX,TLY],[TRX,TRY],[BRX,BRY],[BLX,BLY]], SelectionType.REPLACE, 0, false);
        executeAction( charIDToTypeID( "Crop" ), undefined, DialogModes.NO );
        app.activeDocument.selection.deselect();
    if(SaveFiles){
    var saveFile = File(decodeURI(Path+"/"+NewFileName+".jpg"));
    SaveJPEG(saveFile, 10);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
        activeDocument = documents[0];
    TLX = offsetX * (i+1) ; TRX  = TLX + offsetX; BRX = TRX; BLX = TLX; 
    TLX = 0; TLY = offsetY * (a +1); TRX = offsetX; TRY = offsetY * (a +1);
    BRX = offsetX; BRY = TRY + offsetY; BLX = 0; BLY = (offsetY * (a +1)+offsetY);
    if(SaveFiles){
    Path.execute()
    function SaveJPEG(saveFile, jpegQuality){
    jpgSaveOptions = new JPEGSaveOptions();
    jpgSaveOptions.embedColorProfile = true;
    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgSaveOptions.matte = MatteType.NONE;
    jpgSaveOptions.quality = jpegQuality;
    activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);

  • Saving large tiff files we see a lot of times the lines in the saved file that have either missing ( white) pixels or they appear as a black line across entire file or portion of it

    saving large tiff files we see a lot of times the lines in the saved file that have either missing ( white) pixels or they appear as a black line across entire file or portion of it

    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • What is best way dealing with large tiff file in OSX Lion?

    I'm working with large tiff  file (engineering drawing), but preview couldnt handle (unresponsive) this situation.
    What is best way dealing with large tiff file in OSX Lion? (Viewing only or simple editing)
    Thx,
    54n9471

    Use an iPad and this app http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=400600005&mt=8

  • Large tiff file in Photoshop CS6

    I have been working on a large tiff file in Photoshop CS 6 for several hours now and it has grown to over 3 GB.  I was able to save it and exit but when I tried to reopen it I got an error that said that the version of Photoshop that I was running would not recognize the file.  I downloaded CC2014 but it does not recognize it either.  Any suggestions?

    If Photoshop does not recognize the file as being in a known image format you may want to search for a file recovery program to see if what you have can be processed at all.
    https://www.google.com/search?num=100&newwindow=1&safe=off&rlz=1C1CHFX_enUS546US546&q=Tiff +Image+File+repair+software&oq…
    Make a copy of the bad file before trying to repair it.

  • Can Photoshop open large TIFF files?

    Hi,
    Windows 32-bit OS cannot open TIFF files bigger than 4GB. I need to work on TIFF files that have a size up to 10GB. Does Photoshop support this?
    Thanks,

    The scanned files come from a big Roche cells scanner. Computers which have the Roche utility software can open it and those computer are in 32-bit or 64bit. I have even downloaded a TIFF image, from the nasa site, of 25GB and i could open it on my 32bit Windows OS.
    After doing some research, I found the following site http://www.remotesensing.org/libtiff/document.html . From there, I went to the following site : http://www.awaresystems.be/imaging/tiff/tifftags/extension.html and it seems that some tags within the tiff files are not recognized by some viewers.
    I also installed Microsoft KB2635500 http://support.microsoft.com/kb/2635500, which solves issues when we try to display a large TIFF file that contains multiple pages, althought this is not the case as we speak of a single file. I also should have tried before installing this KB.
    The tiff file (9GB) the user obtained when scanning with a Roche cell scanner is a TIFF file extension. The file I downloaded from the NASA website is also a TIFF file (25GB). I have a 32-bit OS and I could open the NASA tiff file without any problem but another user with a 32-bit OS cannot open any tiff file bigger than 4GB. That user gets the error message stating the file is corrupted or not supported.
    I will check later on in the morning when this user arrives.

  • Saving large tiff files as jpeg

    Hello, experts:
    I scanned, as a tiff file, a full-centre spread of a large newpaper. This had to be scanned in eight sections, the pages were so big on my A4 scanner window. When I joined all the sections up in Photoshop CS5, the size of the file was huge (about 21 inches by about 19 inches) It is also digitally large (about 320 MB, since the resolution is 300 dpi). Because I want to keep the composite photo but don't want the file to be so digitally large, yet need the good resolution, I thought it would be a good idea to save it as a jpeg file, which would give me the dimensions I need but not be so digitally bulky as the original. On pressing the drop-down menu for Saving As, the jpeg option did not appear in the dialogue box. Why is this, and how may I save the file in jpeg format? With grateful thanks to any/all that can offer a helpful response,
    True to form

    Curt, I'm very appreciative of the help you have given so far. However, I did try to change the image to an 8-bit as you recommended, and, though it is possible to make this change, and thereby reduce the sheer amount of data in the photo, when I click to choose 8-bit, the picture goes all bright and weird. This is because when I click on 8-bit, a window also arises, called HDR toning. In this window are lots of sliders, and, try as I may, it does not seem to be possible to adjust anything to make the picture normal in appearance. If you have any useful comment on what to do to make the picture like it is before the change to 8-bit, I should be glad to hear it. Thanks in anticipation.
    T.T.F.

  • [SOLVED] Viewing Large tiff files.

    Hi Arch Users!
    I have a number of tif image files of scanned engineering documents that are fairly large (25MB+). Viewing them in Windows is not so much of a problem. However, they are illegible when viewed in GNOME's Document Viewer.
    Is there any package official or in AUR that will allow me to open these documents correctly.
    Regards
    JLight
    Last edited by jlight2011 (2012-04-26 13:03:41)

    Trilby wrote:There are many.  I'd start with feh, but you'll really need to give more information on what you're looking for if you want useful recommendations.
    Just installed feh. Tried opening  but it would not show the drawings, No error or such just plane white background.
    All I want to do is open the scanned engineering documents and zoom into specific parts, nothing more. In Gnome Document viewer, the drawings are barely visible. If I zoom it does not improve. I can see an outline but cant read any useful information like the dimension of hole.
    In feh the document opens (the CPU is working hard the fan becomes really loud) but that is it. I waited for 5 min and gave up.
    I have a DELL XPS (about 4 months old). intel i7, 8GB RAM.
    In windows the document viewer cant open these also. I used to use a program, whose name I cant recall except that it had 'tiff' in it.
    Please tell me if you need more specific info.
    Cheers!
    J

  • Open Tiff file error

    Hi!
    I've a very big tiff file, created by a scanner.
    The scanner produces tiff files from my code, but the shipped SW can produce pdf.
    My question is, how can I open this large tiff file in Labview (Vision)?
    Using the Shipped SW I scanned a PDF and using Ghostscript I could convert the pdf to png and after the conversion I could open it!
    Is there any way to convert this big tiff file to open in LV?
    IMAGE:http://data.hu/get/3787417/Irbesartan_393356_2.tif
    +++ In God we believe, in Trance we Trust +++
    [Hungary]

    Hi Durnek,
    My first idea is to convert it from tiff to some light-weight format (i.e. BMP or lossy JPG) - you may do it i.e. controlling MS Paint via ActiveX.
    Also, I would like to ask you which function/SW are you using to open/read this file? Could you also prove the image in the other way? (I am redirected to Hungarian portal - I can't easily download it).
    Thanks and BR,
    Wojciech.

  • Photoshop CC crashes working with larger TIFF

    I have a Mac workstation that is routinely crashing while working on larger TIFF files. Here is a copy of the latest crash report.
    Process:         Adobe Photoshop CS6 [1900] 
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.1.2 (13.1.2.224)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [165]
    Date/Time:       2014-01-15 09:29:03.431 -0800
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          274555 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  1517785 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      F64B6195-CB0C-467E-B495-A3293D5B43A6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    VM Regions Near 0x18:
    -->
        __TEXT                 0000000100000000-0000000103674000 [ 54.5M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Application Specific Information:
    objc[1900]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.FinderKit             0x00007fff91fdeeeb TGroupManager::CompareGroups(TGroup const*, TGroup const*) + 7
    1   com.apple.FinderKit             0x00007fff920ac16e GroupComparator::operator()(TFENode const&, TFENode const&) const + 98
    2   com.apple.FinderKit             0x00007fff920af35b void std::__insertion_sort<__gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, GroupComparator>(__gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, __gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, GroupComparator) + 92
    3   com.apple.FinderKit             0x00007fff920af2f0 void std::__final_insertion_sort<__gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, GroupComparator>(__gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, __gnu_cxx::__normal_iterator<TFENode*, std::vector<TFENode, std::allocator<TFENode> > >, GroupComparator) + 154
    4   com.apple.FinderKit             0x00007fff920ad415 -[FI_TBrowserViewDataSource(groupings) sortGroups:ascending:] + 55
    5   com.apple.FinderKit             0x00007fff920ae1f2 -[FI_TBrowserViewDataSource(groupings) addNodesInGroups:forContainer:removeAll:groupChanges:sortGroupsAscending:] + 918
    6   com.apple.FinderKit             0x00007fff920b48e4 -[FI_TBrowserViewController(DataSource) addItems:forContainer:removeAll:groupChanges:] + 106
    7   com.apple.FinderKit             0x00007fff920b4a28 -[FI_TBrowserViewController(DataSource) folderContentChanged:] + 181
    8   com.apple.FinderKit             0x00007fff920fea19 -[FI_TColumnViewController folderContentChanged:] + 67
    9   com.apple.FinderKit             0x00007fff920130c3 TNodeEngine::AddPreparedNodes(TFENode const&, bool, TFENodeVector const&, TGroupedNodes const&, objc_object*) + 97
    10  com.apple.FinderKit             0x00007fff92014a58 TNodeBrowser::AddPreparedNodes(TFENode const&, bool, TFENodeVector const&, TGroupedNodes const&, objc_object*) + 240
    11  com.apple.FinderKit             0x00007fff92014d23 TNodeBrowser::HandleFirstPopulationAttempt(TFENode const&, bool, TFENodeVector const&, TGroupedNodes const&, bool, objc_object*) + 35
    12  com.apple.FinderKit             0x00007fff920199a3 TNodeInsertionHandler::SecondStep() + 201
    13  com.apple.FinderKit             0x00007fff920125e8 TNodeEngine::ProcessCompletion(TNodeEngineNotificationHandler*) + 74
    14  com.apple.FinderKit             0x00007fff92057ec2 IAsynchronousOperation::PerformSecondStepOnMainThread() + 44
    15  com.apple.FinderKit             0x00007fff9205814c __ScheduleSecondStepOnMainThread_block_invoke_0 + 27
    16  libdispatch.dylib               0x00007fff92e9ca82 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib               0x00007fff92e9e8f2 _dispatch_main_queue_callback_4CF + 308
    18  com.apple.CoreFoundation      0x00007fff96686e7c __CFRunLoopRun + 1724
    19  com.apple.CoreFoundation      0x00007fff96686486 CFRunLoopRunSpecific + 230
    20  com.apple.HIToolbox             0x00007fff968252bf RunCurrentEventLoopInMode + 277
    21  com.apple.HIToolbox             0x00007fff9682c4bf ReceiveNextEventCommon + 181
    22  com.apple.HIToolbox             0x00007fff9682c3fa BlockUntilNextEventMatchingListInMode + 62
    23  com.apple.AppKit              0x00007fff93efb779 _DPSNextEvent + 659
    24  com.apple.AppKit              0x00007fff93efb07d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    25  com.apple.AppKit              0x00007fff941af735 -[NSApplication _realDoModalLoop:peek:] + 610
    26  com.apple.AppKit              0x00007fff941af369 -[NSApplication runModalForWindow:] + 120
    27  com.apple.AppKit              0x00007fff94432579 -[NSSavePanel runModal] + 300
    28  com.apple.AppKit              0x00007fff9443053d -[NSSavePanel runModalForDirectory:file:types:] + 247
    29  com.apple.AppKit              0x00007fff944305de -[NSSavePanel runModalForDirectory:file:] + 21
    30  com.adobe.Photoshop             0x000000010171906c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20502348
    31  com.adobe.Photoshop             0x000000010009f65f 0x100000000 + 652895
    32  com.adobe.Photoshop             0x0000000100fc437f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12814943
    33  com.adobe.Photoshop             0x000000010009feea 0x100000000 + 655082
    34  com.adobe.Photoshop             0x0000000100fc5ba6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12821126
    35  com.adobe.Photoshop             0x00000001005f15cd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2514093
    36  com.adobe.Photoshop             0x0000000100091074 0x100000000 + 594036
    37  com.adobe.Photoshop             0x000000010008cffa 0x100000000 + 577530
    38  com.adobe.Photoshop             0x0000000100087af7 0x100000000 + 555767
    39  com.adobe.Photoshop             0x0000000100087993 0x100000000 + 555411
    40  com.adobe.Photoshop             0x0000000101706654 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20426036
    41  com.apple.AppKit              0x00007fff93ef7a0e -[NSApplication run] + 555
    42  com.adobe.Photoshop             0x0000000101706d22 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20427778
    43  com.adobe.Photoshop             0x0000000101707fec AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20432588
    44  com.adobe.Photoshop             0x000000010008818d 0x100000000 + 557453
    45  com.adobe.Photoshop             0x00000001002ca14c boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2249692
    46  com.adobe.Photoshop             0x00000001002ca229 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2249913
    47  com.adobe.Photoshop             0x00000001000029f4 0x100000000 + 10740
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x00007fff90cff7e6 kevent + 10
    1   libdispatch.dylib               0x00007fff92e9e786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib               0x00007fff92e9d316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support        0x0000000112a7518b 0x112a2f000 + 287115
    3   MultiProcessor Support        0x0000000112a7504c 0x112a2f000 + 286796
    4   MultiProcessor Support        0x0000000112a95f14 0x112a2f000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib        0x00007fff90cfee42 __semwait_signal + 10
    1   libsystem_c.dylib               0x00007fff95f0bdea nanosleep + 164
    2   com.adobe.PSAutomate          0x000000012c1436eb 0x12c000000 + 1324779
    3   com.adobe.PSAutomate          0x000000012c129539 0x12c000000 + 1217849
    4   com.adobe.PSAutomate          0x000000012c143a56 0x12c000000 + 1325654
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine          0x0000000142c76c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x0000000142a24ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine          0x0000000142c76c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x0000000142a24ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine          0x0000000142c76c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x0000000142a24ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine          0x0000000142c76c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x0000000142a24ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib        0x00007fff90cfd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff90cfcd71 mach_msg + 73
    2   com.apple.CoreFoundation      0x00007fff9667e50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation      0x00007fff96686c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation      0x00007fff96686486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO           0x00007fff8ddd0fe9 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO           0x00007fff8ddc715a CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f592a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine          0x0000000142c76bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine          0x0000000142c8eddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f592a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine          0x0000000142c76bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine          0x0000000142e092c3 APXGetHostAPI + 4164403
    4   com.adobe.ape.engine          0x0000000142c76cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x0000000142c76d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x0000000142c76e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib        0x00007fff90cfed7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib   0x000000012fc7e5ec Invoke + 45721
    2   ServiceManager-Launcher.dylib   0x000000012fc7d813 Invoke + 42176
    3   ServiceManager-Launcher.dylib   0x000000012fc7cbe0 Invoke + 39053
    4   ServiceManager-Launcher.dylib   0x000000012fc7cc66 Invoke + 39187
    5   ServiceManager-Launcher.dylib   0x000000012fc7830f Invoke + 20412
    6   ServiceManager-Launcher.dylib   0x000000012fc78616 Invoke + 21187
    7   ServiceManager-Launcher.dylib   0x000000012fc78cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib   0x000000012fc78f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib   0x000000012fc7b61d Invoke + 33482
    10  ServiceManager-Launcher.dylib   0x000000012fc7b775 Invoke + 33826
    11  ServiceManager-Launcher.dylib   0x000000012fc7bfb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib   0x000000012fc7c0ad Invoke + 36186
    13  ServiceManager-Launcher.dylib   0x000000012fc6ed6b Login + 480
    14  ServiceManager-Launcher.dylib   0x000000012fc727ad Login + 15394
    15  ServiceManager-Launcher.dylib   0x000000012fc7c412 Invoke + 37055
    16  ServiceManager-Launcher.dylib   0x000000012fc7e253 Invoke + 44800
    17  libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    18  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib        0x00007fff90cff7e6 kevent + 10
    1   com.adobe.dvatransport.framework0x000000012fa695b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   com.adobe.dvatransport.framework0x000000012fa7527b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   com.adobe.dvatransport.framework0x000000012fa5dab5 SkyConnectionEnv::MainLoop() + 117
    4   com.adobe.dvatransport.framework0x000000012fa5db19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.dvatransport.framework0x000000012fa754df boost::asio::detail::task_io_service::run(boost::system::error_code&) + 1167
    3   com.adobe.dvatransport.framework0x000000012fa75acd boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 61
    4   com.adobe.dvatransport.framework0x000000012fa67d99 boost_asio_detail_posix_thread_function + 25
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x0000000130b67661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x0000000130b4ed33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x0000000130b5d773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib        0x00007fff90cff7e6 kevent + 10
    1   com.adobe.dvatransport.framework0x000000012fa695b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   com.adobe.dvatransport.framework0x000000012fa7527b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   com.adobe.dvatransport.framework0x000000012fa5dab5 SkyConnectionEnv::MainLoop() + 117
    4   com.adobe.dvatransport.framework0x000000012fa5db19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework0x000000012f9a8f45 thread_proxy + 133
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                  0x0000000103d43010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    4   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 40:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x00007fff90cfedf2 __select + 10
    1   com.apple.CoreFoundation      0x00007fff966cfc8b __CFSocketManager + 1355
    2   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    3   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 41:: CoreAnimation render server
    0   libsystem_kernel.dylib        0x00007fff90cfd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff90cfcd71 mach_msg + 73
    2   com.apple.QuartzCore          0x00007fff9090fdf5 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore          0x00007fff9090fd35 thread_fun + 24
    4   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    5   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 42:
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.Photoshop             0x000000010029b77d boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2058765
    3   com.adobe.Photoshop             0x00000001017e3aca AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21332394
    4   com.adobe.Photoshop             0x00000001017e1959 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21323833
    5   com.adobe.Photoshop             0x0000000101747974 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20693076
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 43:: ace
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw             0x00000001be2e6776 0x1be030000 + 2844534
    6   com.adobe.CameraRaw             0x00000001be2e6403 0x1be030000 + 2843651
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 44:: ace
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw             0x00000001be2e6776 0x1be030000 + 2844534
    6   com.adobe.CameraRaw             0x00000001be2e6403 0x1be030000 + 2843651
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 45:: ace
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw             0x00000001be2e6776 0x1be030000 + 2844534
    6   com.adobe.CameraRaw             0x00000001be2e6403 0x1be030000 + 2843651
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 46:: ace
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw             0x00000001be2e6776 0x1be030000 + 2844534
    6   com.adobe.CameraRaw             0x00000001be2e6403 0x1be030000 + 2843651
    7   com.apple.CoreServices.CarbonCore0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 47:: cr_scratch
    0   libsystem_kernel.dylib        0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.CameraRaw             0x00000001be5e6551 0x1be030000 + 5989713
    3   com.adobe.CameraRaw             0x00000001be5884c2 0x1be030000 + 5604546
    4   com.adobe.CameraRaw             0x00000001be3ed2f9 0x1be030000 + 3920633
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 48:
    0   libsystem_kernel.dylib        0x00007fff90cffab6 pwrite + 10
    1   com.apple.CoreServices.CarbonCore0x00007fff990d9ccc BasicWrite(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 200
    2   com.apple.CoreServices.CarbonCore0x00007fff990d9bd6 PBWriteForkSync + 88
    3   com.apple.CoreServices.CarbonCore0x00007fff9911867b AsyncFileThread(void*) + 128
    4   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    5   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 49:: Dispatch queue: com.apple.NetworkBrowser.ConnectedBrowser
    0   libsystem_kernel.dylib        0x00007fff90cff386 close + 10
    1   com.apple.AppleShareClientCore0x000000012dba7a7c GetStatus + 1017
    2   com.apple.AppleShareClientCore0x000000012dba765a TServerProxy::GetSrvrInfo(sockaddr*, unsigned char*) + 66
    3   com.apple.AppleShareClientCore0x000000012dbba92c TServerProxy::Connect(unsigned int) + 118
    4   com.apple.URLMount.AFPPlugin  0x000000011a136eab AFP_GetServerInfo + 887
    5   com.apple.CoreServices.OSServices0x00007fff8d0d178e ConnectedBrowser::setNodeModel(__NWNode*, __CFString const*, __CFURL const*) + 134
    6   com.apple.CoreServices.OSServices0x00007fff8d0d23ef ConnectedBrowser::copyConnected() + 837
    7   com.apple.CoreServices.OSServices0x00007fff8d0d1c66 __workAroundRadarBug6737002_block_invoke_3 + 61
    8   libdispatch.dylib               0x00007fff92e9ca82 _dispatch_call_block_and_release + 18
    9   libdispatch.dylib               0x00007fff92e9e2d2 _dispatch_queue_drain + 264
    10  libdispatch.dylib               0x00007fff92e9e12e _dispatch_queue_invoke + 54
    11  libdispatch.dylib               0x00007fff92e9d928 _dispatch_worker_thread2 + 198
    12  libsystem_c.dylib               0x00007fff95f573da _pthread_wqthread + 316
    13  libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 50:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib        0x00007fff90cfeafa __open_nocancel + 10
    1   libsystem_c.dylib               0x00007fff95f19f7a fopen + 80
    2   com.apple.DesktopServices       0x00007fff96f8e407 TFSVolumeInfo::GetHiddenList() + 175
    3   com.apple.DesktopServices       0x00007fff96f8dc73 TFSVolumeInfo::Initialize(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, bool&) + 1477
    4   com.apple.DesktopServices       0x00007fff96f8f10f TFSVolumeInfo::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TCountedPtr<TFSVolumeInfo>&, bool&) + 129
    5   com.apple.DesktopServices       0x00007fff96f5d7da TNode::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TNodePtr&, bool&) + 126
    6   com.apple.DesktopServices       0x00007fff96f66a14 TNode::SynchronizeVolumes(bool, TCountedPtr<TVolumeSyncThread> const&) + 214
    7   com.apple.DesktopServices       0x00007fff96f67339 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 891
    8   com.apple.DesktopServices       0x00007fff96f8d041 __PostNodeTaskRequest_block_invoke_010 + 82
    9   com.apple.DesktopServices       0x00007fff96fa0978 ExceptionSafeBlock(void ( block_pointer)()) + 15
    10  com.apple.DesktopServices       0x00007fff96f8cfe9 __PostNodeTaskRequest_block_invoke_0 + 88
    11  libdispatch.dylib               0x00007fff92e9ca82 _dispatch_call_block_and_release + 18
    12  libdispatch.dylib               0x00007fff92e9e2d2 _dispatch_queue_drain + 264
    13  libdispatch.dylib               0x00007fff92e9e12e _dispatch_queue_invoke + 54
    14  libdispatch.dylib               0x00007fff92e9d928 _dispatch_worker_thread2 + 198
    15  libsystem_c.dylib               0x00007fff95f573da _pthread_wqthread + 316
    16  libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 51:
    0   libsystem_kernel.dylib        0x00007fff90cff192 __workq_kernreturn + 10
    1   libsystem_c.dylib               0x00007fff95f57594 _pthread_wqthread + 758
    2   libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 52:
    0   libsystem_kernel.dylib        0x00007fff90cff192 __workq_kernreturn + 10
    1   libsystem_c.dylib               0x00007fff95f57594 _pthread_wqthread + 758
    2   libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 53:: Dispatch queue: TNodeEngine 0x12dff6790
    0   com.apple.CoreFoundation      0x00007fff9665008d CFBasicHashFindBucket + 1917
    1   com.apple.CoreFoundation      0x00007fff9664f8ef CFDictionaryGetValue + 143
    2   com.apple.CoreServicesInternal0x00007fff9713e4a4 _ZL17getPropertyForKeyPK10__CFString + 27
    3   com.apple.CoreServicesInternal0x00007fff97147e25 _FSURLCopyResourcePropertyForKey + 65
    4   com.apple.CoreFoundation      0x00007fff966a5225 CFURLCopyResourcePropertyForKey + 133
    5   com.apple.DesktopServices       0x00007fff96fb1503 TFSInfo::GetBooleanProperty(__CFString const*) const + 29
    6   com.apple.DesktopServices       0x00007fff96fb14e1 TFSInfo::IsRootItem() const + 19
    7   com.apple.DesktopServices       0x00007fff96f37bde TNode::IsVisible() const + 122
    8   com.apple.DesktopServices       0x00007fff96f352b7 TNodeIterator::GetUnsortedChildrenForNode(TNodePtr const&, short (*)(unsigned long, unsigned short const*, unsigned long, unsigned short const*), short (*)(long long, long long), unsigned int, bool) + 227
    9   com.apple.DesktopServices       0x00007fff96f34ef5 TNodeIterator::TNodeIterator(TNodePtr const&, short (*)(unsigned long, unsigned short const*, unsigned long, unsigned short const*), short (*)(long long, long long), unsigned int, bool) + 257
    10  com.apple.DesktopServices       0x00007fff96f348e5 TNode::NewNodeIterator(TNodeIterator*&, short (*)(unsigned long, unsigned short const*, unsigned long, unsigned short const*), short (*)(long long, long long), unsigned int, OpaqueNodeRequest* const&, unsigned int) const + 303
    11  com.apple.DesktopServices       0x00007fff96f34768 NodeNewSortedIterator(OpaqueNodeRef*, short (*)(unsigned long, unsigned short const*, unsigned long, unsigned short const*), short (*)(long long, long long), unsigned int, OpaqueNodeIterator**, OpaqueNodeRequest*, unsigned int) + 122
    12  com.apple.DesktopServices       0x00007fff96f346e6 NodeNewIterator + 28
    13  com.apple.FinderKit             0x00007fff91ffc36f TFENodeIterator::Init(TFENode const&, TNodeObserver const*, bool, bool volatile*) + 329
    14  com.apple.FinderKit             0x00007fff920198a2 TNodeInsertionHandler::FirstStep() + 170
    15  com.apple.FinderKit             0x00007fff920176eb TNodeEngineNotificationHandler::FirstStepOnSecondaryThread() + 25
    16  com.apple.FinderKit             0x00007fff92058022 __PerformAsyncOnQueue_block_invoke_0 + 34
    17  libdispatch.dylib               0x00007fff92e9ca82 _dispatch_call_block_and_release + 18
    18  libdispatch.dylib               0x00007fff92e9e2d2 _dispatch_queue_drain + 264
    19  libdispatch.dylib               0x00007fff92e9e12e _dispatch_queue_invoke + 54
    20  libdispatch.dylib               0x00007fff92e9d928 _dispatch_worker_thread2 + 198
    21  libsystem_c.dylib               0x00007fff95f573da _pthread_wqthread + 316
    22  libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 54:
    0   libsystem_kernel.dylib        0x00007fff90cff192 __workq_kernreturn + 10
    1   libsystem_c.dylib               0x00007fff95f57594 _pthread_wqthread + 758
    2   libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 55:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib        0x00007fff90cfee42 __semwait_signal + 10
    1   libsystem_c.dylib               0x00007fff95f0bdea nanosleep + 164
    2   libsystem_c.dylib               0x00007fff95f0bbb5 usleep + 53
    3   com.apple.AppKit              0x00007fff9413011b -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation          0x00007fff961e572a -[NSThread main] + 68
    5   com.apple.Foundation          0x00007fff961e56a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 56:
    0   libsystem_kernel.dylib        0x00007fff90cff192 __workq_kernreturn + 10
    1   libsystem_c.dylib               0x00007fff95f57594 _pthread_wqthread + 758
    2   libsystem_c.dylib               0x00007fff95f58b85 start_wqthread + 13
    Thread 57:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff5fbfcb68  rcx: 0x0000000132880678  rdx: 0x0000000000000000
      rdi: 0x000000012dd625c0  rsi: 0x0000000131fc2820  rbp: 0x00007fff5fbfcb00  rsp: 0x00007fff5fbfcb00
       r8: 0x0000000000000000   r9: 0x0000000000000005  r10: 0x0000000000004da0  r11: 0xfffffffecd32dbdf
      r12: 0x0000000000000000  r13: 0x0000000131fc2820  r14: 0x00000001339d9908  r15: 0x00000001339d9900
      rip: 0x00007fff91fdeeeb  rfl: 0x0000000000010246  cr2: 0x0000000000000018
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x103673fff +com.adobe.Photoshop (13.1.2 - 13.1.2.224) <E29BEA76-8EC8-3A4C-8279-056B8B0006D7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
           0x103d34000 -        0x103d60ff7 +libtbb.dylib (??? - ???) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbb.dylib
           0x103d77000 -        0x103d85ff3 +libtbbmalloc.dylib (??? - ???) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbbmalloc.dylib
           0x103d99000 -        0x103da0fff  org.twain.dsm (1.9.5 - 1.9.5) <D3C111E6-AAE8-3267-B760-1529D0917170> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103da8000 -        0x103dc2ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103dcb000 -        0x103dd1fff  com.apple.agl (3.2.0 - AGL-3.2.0) <AB0B5D3F-BA2A-3366-830A-EF9258C18276> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103dd8000 -        0x103fa1fff +com.adobe.owl (AdobeOwl version 5.0.4 - 5.0.4) <0FA698D2-CE7E-3C5A-B3D2-D9859A8612A0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103fe3000 -        0x104429ff7 +com.adobe.MPS (AdobeMPS 5.8.0.19463 - 5.8.0.19463) <8A4BA3B2-6F6A-3958-ABDE-C3E8F21373B0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x1044a5000 -        0x1047feff7 +com.adobe.AGM (AdobeAGM 4.26.20.20743 - 4.26.20.20743) <27080135-E835-75EF-FF42-15299479FDA1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104867000 -        0x104bc8fef +com.adobe.CoolType (AdobeCoolType 5.10.33.20743 - 5.10.33.20743) <758DF893-C0F4-5769-53C5-7C80FC9111FB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104c15000 -        0x104c3dff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <BFA061BE-7598-275D-D3F7-5842674E367E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104c44000 -        0x104c70fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x104c93000 -        0x104de0ff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x104e54000 -        0x104ec3fff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <3DF07718-0B1A-3EFC-AEC6-A5F77F441243> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x104ee3000 -        0x104f42ff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <213B039E-BFDA-3FD3-9E86-C5A7F96F33E4> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104fa4000 -        0x105034ff7 +com.adobe.AIF (Adob

    Happened again, here's another crash report. This time it was on a smaller file, so I'm not sure file size had anything to do with it.
    Process:         Adobe Photoshop CS6 [290]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.1.2 (13.1.2.224)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [163]
    Date/Time:       2014-01-15 15:23:45.349 -0800
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          295628 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  1538014 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      F64B6195-CB0C-467E-B495-A3293D5B43A6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000100000000-0000000103674000 [ 54.5M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Application Specific Information:
    objc_msgSend() selector name: isKindOfClass:
    objc[290]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                 0x00007fff90b06110 objc_msgSend_vtable4 + 16
    1   com.adobe.owl                   0x0000000103df5858 0x103dd8000 + 120920
    2   com.adobe.owl                   0x0000000103df587f 0x103dd8000 + 120959
    3   com.adobe.owl                   0x0000000103e23bda 0x103dd8000 + 310234
    4   com.adobe.owl                   0x0000000103e23898 OWLWidgetGetParent + 57
    5   com.adobe.Photoshop             0x0000000101703552 0x100000000 + 24130898
    6   com.adobe.Photoshop             0x0000000101060a4a 0x100000000 + 17173066
    7   com.adobe.Photoshop             0x000000010105f161 0x100000000 + 17166689
    8   com.adobe.Photoshop             0x000000010105f28f 0x100000000 + 17166991
    9   com.adobe.Photoshop             0x0000000100fdfc40 0x100000000 + 16645184
    10  com.adobe.Photoshop             0x0000000101741b50 0x100000000 + 24386384
    11  com.adobe.Photoshop             0x0000000101743bb9 0x100000000 + 24394681
    12  com.adobe.owl                   0x0000000103e207ef 0x103dd8000 + 296943
    13  com.adobe.owl                   0x0000000103e205b8 0x103dd8000 + 296376
    14  com.adobe.owl                   0x0000000103e94661 0x103dd8000 + 771681
    15  com.adobe.owl                   0x0000000103e33765 0x103dd8000 + 374629
    16  com.adobe.owl                   0x0000000103dffdfe 0x103dd8000 + 163326
    17  com.adobe.owl                   0x0000000103e02b53 0x103dd8000 + 174931
    18  com.apple.Foundation            0x00007fff961e2f40 __NSFireTimer + 102
    19  com.apple.CoreFoundation        0x00007fff966a6934 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    20  com.apple.CoreFoundation        0x00007fff966a6486 __CFRunLoopDoTimer + 534
    21  com.apple.CoreFoundation        0x00007fff96686e11 __CFRunLoopRun + 1617
    22  com.apple.CoreFoundation        0x00007fff96686486 CFRunLoopRunSpecific + 230
    23  com.apple.HIToolbox             0x00007fff968252bf RunCurrentEventLoopInMode + 277
    24  com.apple.HIToolbox             0x00007fff9682c4bf ReceiveNextEventCommon + 181
    25  com.apple.HIToolbox             0x00007fff9682c3fa BlockUntilNextEventMatchingListInMode + 62
    26  com.apple.AppKit                0x00007fff93efb779 _DPSNextEvent + 659
    27  com.apple.AppKit                0x00007fff93efb07d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    28  com.apple.AppKit                0x00007fff93ef79b9 -[NSApplication run] + 470
    29  com.adobe.Photoshop             0x0000000101706d22 0x100000000 + 24145186
    30  com.adobe.Photoshop             0x0000000101707fec 0x100000000 + 24149996
    31  com.adobe.Photoshop             0x000000010008818d 0x100000000 + 557453
    32  com.adobe.Photoshop             0x00000001002ca14c 0x100000000 + 2924876
    33  com.adobe.Photoshop             0x00000001002ca229 0x100000000 + 2925097
    34  com.adobe.Photoshop             0x00000001000029f4 0x100000000 + 10740
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib          0x00007fff90cff7e6 kevent + 10
    1   libdispatch.dylib               0x00007fff92e9e786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib               0x00007fff92e9d316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   MultiProcessor Support          0x0000000112cd718b 0x112c91000 + 287115
    3   MultiProcessor Support          0x0000000112cd704c 0x112c91000 + 286796
    4   MultiProcessor Support          0x0000000112cf7f14 0x112c91000 + 421652
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                   0x00000001053e82c9 0x1053af000 + 234185
    6   com.adobe.ACE                   0x00000001053e75da 0x1053af000 + 230874
    7   com.apple.CoreServices.CarbonCore  0x00007fff9912ace6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    9   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib          0x00007fff90cfee42 __semwait_signal + 10
    1   libsystem_c.dylib               0x00007fff95f0bdea nanosleep + 164
    2   com.adobe.PSAutomate            0x00000001179436eb 0x117800000 + 1324779
    3   com.adobe.PSAutomate            0x0000000117929539 0x117800000 + 1217849
    4   com.adobe.PSAutomate            0x0000000117943a56 0x117800000 + 1325654
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine            0x0000000130626c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine            0x00000001303d4ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine            0x0000000130626c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine            0x00000001303d4ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine            0x0000000130626c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine            0x00000001303d4ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine            0x0000000130626c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine            0x00000001303d4ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib          0x00007fff90cfd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib          0x00007fff90cfcd71 mach_msg + 73
    2   com.apple.CoreFoundation        0x00007fff9667e50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation        0x00007fff96686c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation        0x00007fff96686486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO           0x00007fff8ddd0fe9 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO           0x00007fff8ddc715a CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f592a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine            0x0000000130626bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine            0x000000013063eddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f592a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine            0x0000000130626bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine            0x00000001307b9233 APXGetHostAPI + 4164259
    4   com.adobe.ape.engine            0x0000000130626cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine            0x0000000130626d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine            0x0000000130626e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    8   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib          0x00007fff90cff7e6 kevent + 10
    1   com.adobe.dvatransport.framework  0x0000000126b285b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   com.adobe.dvatransport.framework  0x0000000126b3427b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   com.adobe.dvatransport.framework  0x0000000126b1cab5 SkyConnectionEnv::MainLoop() + 117
    4   com.adobe.dvatransport.framework  0x0000000126b1cb19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.adobe.dvatransport.framework  0x0000000126b344df boost::asio::detail::task_io_service::run(boost::system::error_code&) + 1167
    3   com.adobe.dvatransport.framework  0x0000000126b34acd boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 61
    4   com.adobe.dvatransport.framework  0x0000000126b26d99 boost_asio_detail_posix_thread_function + 25
    5   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    6   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore  0x00007fff99152a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore  0x00007fff990e4ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore  0x00007fff99129e81 MPWaitOnQueue + 181
    5   com.adobe.dvacore.framework     0x000000012f813661 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework     0x000000012f7fad33 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework     0x000000012f809773 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    9   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    10  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib          0x00007fff90cff7e6 kevent + 10
    1   com.adobe.dvatransport.framework  0x0000000126b285b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   com.adobe.dvatransport.framework  0x0000000126b3427b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   com.adobe.dvatransport.framework  0x0000000126b1cab5 SkyConnectionEnv::MainLoop() + 117
    4   com.adobe.dvatransport.framework  0x0000000126b1cb19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   com.adobe.boost_threads.framework  0x0000000118d95f45 thread_proxy + 133
    6   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    7   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib          0x00007fff90cfed7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib   0x00000001184825ec Invoke + 45721
    2   ServiceManager-Launcher.dylib   0x0000000118481813 Invoke + 42176
    3   ServiceManager-Launcher.dylib   0x0000000118480be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib   0x0000000118480c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib   0x000000011847c30f Invoke + 20412
    6   ServiceManager-Launcher.dylib   0x000000011847c616 Invoke + 21187
    7   ServiceManager-Launcher.dylib   0x000000011847ccd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib   0x000000011847cf41 Invoke + 23534
    9   ServiceManager-Launcher.dylib   0x000000011847f61d Invoke + 33482
    10  ServiceManager-Launcher.dylib   0x000000011847f775 Invoke + 33826
    11  ServiceManager-Launcher.dylib   0x000000011847ffb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib   0x00000001184800ad Invoke + 36186
    13  ServiceManager-Launcher.dylib   0x0000000118472d6b Login + 480
    14  ServiceManager-Launcher.dylib   0x00000001184767ad Login + 15394
    15  ServiceManager-Launcher.dylib   0x0000000118480412 Invoke + 37055
    16  ServiceManager-Launcher.dylib   0x0000000118482253 Invoke + 44800
    17  libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    18  libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 33:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib          0x00007fff90cfedf2 __select + 10
    1   com.apple.CoreFoundation        0x00007fff966cfc8b __CFSocketManager + 1355
    2   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    3   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 34:: CoreAnimation render server
    0   libsystem_kernel.dylib          0x00007fff90cfd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib          0x00007fff90cfcd71 mach_msg + 73
    2   com.apple.QuartzCore            0x00007fff9090fdf5 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore            0x00007fff9090fd35 thread_fun + 24
    4   libsystem_c.dylib               0x00007fff95f558bf _pthread_start + 335
    5   libsystem_c.dylib               0x00007fff95f58b75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib          0x00007fff90cfebca __psynch_cvwait + 10
    1   libsystem_c.dylib               0x00007fff95f59274 _pthread_cond_wait + 840
    2   libtbb.dylib                    0x0000000103d43010 tbb::internal::rml::pr

  • How to save raw images as TIFF files on Adobe Bridge?

    I am trying to upload my raw images from my camera onto Adobe Bridge and save them as a TIFF file. But it does not give me that option and simply automatically saves them as JPEGs.
    Where is the option to keep them as raw, large TIFF files?

    This is the Adobe Reader forum.  Your question is concerning about what software?

  • Large PDF file sizes when exporting from InDesign

    Hi,
    I was wondering if anyone knew why some PDF file sizes are so large when exporting from ID.
    I create black and white user manuals with ID CS3. We post these online, so I try to get the file size down as much as possible.
    There is only one .psd image in each manual. The content does not have any photographs, just Illustrator .eps diagrams and line drawings. I am trying to figure out why some PDF file sizes are so large.
    Also, why the file sizes are so different.
    For example, I have one ID document that is 3MB.
    Exporting it at the smallest file size, the PDF file comes out at 2MB.
    Then I have another ID document that is 10MB.
    Exporting to PDF is 2MB (the same size as the smaller ID document)... this one has many more .eps's in it and a lot more pages.
    Then I have another one that the ID size is 8MB and the PDF is 6MBwhy is this one so much larger than the 10MB ID document?
    Any ideas on why this is happening and/or how I can reduce the file size.
    I've tried adjusting the export compression and other settings but that didn't work.
    I also tried to reduce them after the fact in Acrobat to see what would happen, but it doesn't reduce it all that much.
    Thanks for any help,
    Cathy

    > Though, the sizes of the .eps's are only about 100K to 200K in size and they are linked, not embedded.
    But they're embedded in the PDF.
    > It's just strange though because our marketing department as an 80 page full color catalog that, when exported it is only 5MB. Their ID document uses many very large .tif files. So, I am leaning toward it being an .eps/.ai issue??
    Issue implies there's something wrong, but I think this is just the way
    it's supposed to work.
    Line drawings, while usually fairly compact, cannot be lossy compressed.
    The marketing department, though, may compress their very large TIFF
    files as much as they like (with a corresponding loss of quality). It's
    entirely possible to compress bitmaps to a smaller size than the
    drawings those bitmaps were made from. You could test this yourself.
    Just open a few of your EPS drawings in Photoshop, save as TIFF, place
    in ID, and try various downsampling schemes. If you downsample enough,
    you'll get the size of the PDF below a PDF that uses the same graphics
    as line drawing EPS files. But you may have to downsample them beyond
    recognition...
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • Printing TIFF files hangs the system, is there a workaround?

    When printing large tiff files (e.g., exported layout images from CAD) the system becomes unresponsive and it takes time to print. Even after the image is printed, the system works very slowly.
    It seems to be a bug, or is there any workaround to prevent the system to hang?
    Thank you, Jan

    There are two similar bugs:
    The LPC+crop bug started with ACR 6.1 and was fixed in 8.2.
    The LPC mystery bug started with ACR 7.3 and was fixed in 8.6.
    Both bugs cause repeated thumbnail extractions in Bridge on some images with Lens Profile Corrections enabled.
    As you are on ACR 6.7 it can only be the first bug. The only workaround I know is to ensure that the crop does not touch the edge of the corrected image. A few pixels gap will do it. Also, it helps to keep less images in a folder--but this can't be avoided when using Collections or Finds.
    I'd imagine that Adobe won't fix CS5 just for this. Presumably there's something in the smallprint which admonishes them from responsibility after the shelf life of the product ends. To be fair, it's not like they fixed it straight away in CS6, unlike the Bridge CS5 database bug (thanks, Adobe). They were only able to reproduce the fault in summer 2013.

  • Performance large TIFF

    Just identified the reason why some of my large TIFF files bog down Aperture, while others fly: LZW compression.
    Especially large 16-bit TIFF images take forever to load and zoom in on. And yes, I know that LZW makes no sense at all for 16-bit, but it happened by accident. As it turns out, 8-bit TIFF images with LZW compression also incur a significant performance hit.
    And it is not just Aperture, also Preview takes much longer to display compressed images. Somehow I expected the decompression of LZW to be less cpu intensive than JPEG, or is this a systemwide bug?

    Chuck - My response isn't exactly on point, but, I resize JPG image proofs to 1024x768 pixels (the iPad screen size) and they look great, lots of detail. I use the same process for my Samsung 53" LCD screen except size to 3840x2160 with spectacular results.
    I'm a professional photographer, and I'm going to use iPads to present proofs to my customers. Hope this helps - IM
    My Workflow in Photoshop CS4
    1) Resize to 1028x768 where possible
    2) Convert to profile sRGB IEC61966-2.1 (Screen)

  • Red Box - Unsupported File Type - Large Tiff - Large Scans - 10,000 pixels

    Hello All,
    I am a user of Aperture 2.1, and I have grown to love the program except for one major issue. Large files that are imported into the program are simply unsupported.
    I scan 6x7 medium format negatives (8649x10712 @ 530.2 megs) and 4x5 negatives (very large drum scans) into my system (new 8 core, 12 gig ram, 512 meg vidcard, 10.5.2) and the issues begin. A thumbnail is properly built. Once the thumbnail is selected, and a preview is built, the image appears briefly and is replaced by a red box soon with the text "Unsupported File Type". If I change views to full screen all I see is a red box with the same text. Ie. I can't work the image.
    The files are perfectly fine. I work them in photoshop cs3 no problem, and I can view them with quick look preview no problem.
    This is highly frustrating as I work primarily in larger formats and create large prints!
    It seems like the bug occurs in files that have a side larger than 10,000 pixels. This is a massive issue to large format/panoramic workflow!
    I have called Apple tech support and the techs claim ignorance. That could mean they do not know of the issue which does not bode well for a solution. I'm in the dark. Please shed some light!
    Three questions:
    Is anyone else experiencing these issues?
    Is there a workaround that doesn't involve cutting file size?
    Has there been any acknowledgment from Apple support regarding this issue?
    I am most frustrated as Aperture is billed as a professional product, but it is unable to keep up with the demands of a working fine art photographer.
    Awesome product but needs some adjustments!
    photofl0w

    William, thanks for your input, but I feel that your position avoids the primary issue. Aperture is a Digital Asset Manager, and as such, should be able to manage digital image assets.
    From Aperture's Webpage: "See how Aperture lets you import, manage, and enhance your photos in one simple, integrated workflow." It says photos, not Raw photos. In fact, I'll take it one step further, in the tutorial CD that came with 1.5, the narrator mentions the 16-bit workflow in Aperture with Tiffs, more than once.
    I purchased Aperture for management and integrated workflow. Apple states: "Now it’s even easier to cull through shoots, enhance images, manage massive libraries, and deliver stunning photos." No where does it say that the functionality of the program is limited to RAW files. Ie. Apple never mentions that Large .tif files are not supported.
    I have 6x7 and 4x5 Scans, Masters, Working Images, Print files and Web images that I would like to organize, stack, label, rate, view versions simultaneously on my second screen, sort, arrange, and keyword. The program's basic functionality is thwarted by an issue that Apple has not owned up to.
    If Apple had mentioned in its literature that large .tif's weren't supported I would not be posting this, as I would not have purchased the software. But nowhere, not in phone conversations with Apple Techs (3), not on their own Forums where other end users have hit a massive workflow brick wall, and not even after I mentioned to a One on One guru, has Apple said, oh, yeah, we are aware of it and working on it. There is no transparency here.
    Now, I have purchased Aperture, learned it, and imported thousands of files into it. I like the program as I have seen it function with smaller files perfectly, but this large file issue needs to be overcome.
    Regarding editing images, yes I use photoshop for the majority of my post-production. I then use a finely tuned Colorburst Rip on a nice Epson for my Fine Prints. Those are the functions of the respective programs. Aperture is a DAM, a program that among other things allows the end use to manage their files effectively and maintain a strong workflow.
    Regarding space - esata is a beautiful thing.
    photofl0w

Maybe you are looking for

  • Looking for a photo app...

    I'm going on a trip and I am looking for a photo app where I can take a picture and upload it to the web from my phone so my friends can view the pictures on a map. Does an app like this exist?

  • Converting Samsung vp-hmx20c files for final cut pro

    Hey Ive got a samsung vp-hmx20c hd video camera and have recorded files in 1080/25p and 1080/50i. Im trying to convert them for editing in FCP but everytime i convert to something different playback is flickery and lags in both FCP and quicktime. Im

  • Files missing in the ear and client jar

    Hi, I'm following the examples to build a web service using ANT servicegen task. My web service calls a lot of other java classes, and those java classes in turn call other classes. When I used the following taskes to generate the service and client

  • Acrobat XI crashes on exit after stamping a document

    Found an older post in the Reader forum regarding this, wanted to link it to the Acrobat forum: http://forums.adobe.com/thread/1112645 Basically if we stamp a PDF, save it and then exit Acrobat, the app crashes.  Details including screenshot of error

  • What is rows intiate in oracle

    hi all, can u tell me any one what is rows intiate in oracel