Appending Tiff files works on Windows 7 and Windows 2012 but doesn't work on Windows 2003 and Windows 2008

Please help me! The code below creates perfect output file son windows 7 and 2012 but on windows 2008 and win 2003 the generated images are corrupted without generating any exception during the process.
Both win 2008 and win 2003 are up to date. What do I have to install? Some hotfix? Please help me I'm stuck.
public void appendTiffs(string tiff1inputFilePath, string tiff2inputFilePath, string outputFilePath)
            Stream imageStreamSource = null;
            try
                //Prepare encoders:
                System.Drawing.Imaging.ImageCodecInfo encoderInfo = getEncoderInfo("image/tiff");
                System.Drawing.Imaging.EncoderParameters encoderParams = new System.Drawing.Imaging.EncoderParameters(2);
                System.Drawing.Imaging.EncoderParameter compressionEncodeParam =
                    new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.Compression, (long)System.Drawing.Imaging.EncoderValue.CompressionLZW);
                System.Drawing.Imaging.EncoderParameter saveEncodeParam =
                    new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.SaveFlag, (long)System.Drawing.Imaging.EncoderValue.MultiFrame);
                encoderParams.Param[0] = compressionEncodeParam;
                encoderParams.Param[1] = saveEncodeParam;
                int numberOfPages = getNumberOfPages(tiff1inputFilePath);
                MemoryStream byteStream;
                imageStreamSource = new FileStream(tiff1inputFilePath, FileMode.Open, FileAccess.Read, FileShare.Read);
                System.Drawing.Bitmap sourceBitmap = (System.Drawing.Bitmap)getTifPage(imageStreamSource, 0, out byteStream);
                System.Drawing.Bitmap outputBitmap;                
                outputBitmap = (System.Drawing.Bitmap)System.Drawing.Image.FromStream(byteStream);
                outputBitmap.Save(outputFilePath, encoderInfo, encoderParams);                
                //For subsequent pages, prepare encoders:
                saveEncodeParam =
                        new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.SaveFlag, (long)System.Drawing.Imaging.EncoderValue.FrameDimensionPage);
                encoderParams.Param[1] = saveEncodeParam;
                for (int i = 1; i < numberOfPages; i++)
                    sourceBitmap.Dispose();
                    byteStream.Close();
                    byteStream.Dispose();
                    sourceBitmap = (System.Drawing.Bitmap)getTifPage(imageStreamSource, i, out byteStream);
                    sourceBitmap.Save(byteStream, System.Drawing.Imaging.ImageFormat.Tiff);                    
                    System.Drawing.Bitmap tmpOutputBitmap = (System.Drawing.Bitmap)System.Drawing.Image.FromStream(byteStream);
                    outputBitmap.SaveAdd(tmpOutputBitmap, encoderParams);                    
                sourceBitmap.Dispose();
                byteStream.Close();
                byteStream.Dispose();
                imageStreamSource.Close();
                imageStreamSource.Dispose();
                imageStreamSource = new FileStream(tiff2inputFilePath, FileMode.Open, FileAccess.Read, FileShare.Read);
                numberOfPages = getNumberOfPages(tiff2inputFilePath);
                for (int i = 0; i < numberOfPages; i++)
                    sourceBitmap.Dispose();
                    byteStream.Close();
                    byteStream.Dispose();
                    sourceBitmap = (System.Drawing.Bitmap)getTifPage(imageStreamSource, i, out byteStream);
                    sourceBitmap.Save(byteStream, System.Drawing.Imaging.ImageFormat.Tiff);
                    System.Drawing.Bitmap tmpOutputBitmap = (System.Drawing.Bitmap)System.Drawing.Image.FromStream(byteStream);
                    outputBitmap.SaveAdd(tmpOutputBitmap, encoderParams);
                //Finally flush the file:
                saveEncodeParam = new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.SaveFlag, (long)System.Drawing.Imaging.EncoderValue.Flush);
                encoderParams = new System.Drawing.Imaging.EncoderParameters(1);
                encoderParams.Param[0] = saveEncodeParam;
                outputBitmap.SaveAdd(encoderParams);
            finally
                imageStreamSource.Close();
                imageStreamSource.Dispose();

I solved the problem. The following code works also on 2003 and 2008.
public void appendTiffs(string tiff1inputFilePath, string tiff2inputFilePath, string outputFilePath)
            FileStream fileStream = new FileStream(tiff1inputFilePath, FileMode.Open, FileAccess.Read);
            ImageCodecInfo tiffCodecInfo = getEncoder(ImageFormat.Tiff);
            Encoder saveEncoder;
            Encoder compressionEncoder;
            EncoderParameter saveEncodeParam;
            EncoderParameter compressionEncodeParam;
            EncoderParameters encoderParams = new EncoderParameters(2);
            saveEncoder = Encoder.SaveFlag;
            compressionEncoder = Encoder.Compression;
            saveEncodeParam = new EncoderParameter(saveEncoder, (long)EncoderValue.MultiFrame);
            compressionEncodeParam = new EncoderParameter(compressionEncoder, (long)EncoderValue.CompressionLZW);
            encoderParams.Param[0] = compressionEncodeParam;
            encoderParams.Param[1] = saveEncodeParam;
            FileStream outputStream = new FileStream(outputFilePath, FileMode.Create, FileAccess.ReadWrite);
            Image image = Image.FromStream(fileStream);
            image.Save(outputStream, tiffCodecInfo, encoderParams);
            fileStream.Close();
            fileStream = new FileStream(tiff1inputFilePath, FileMode.Open, FileAccess.Read);
            saveEncodeParam = new EncoderParameter(saveEncoder, (long)EncoderValue.FrameDimensionPage);
            compressionEncodeParam = new EncoderParameter(compressionEncoder, (long)EncoderValue.CompressionLZW);
            encoderParams.Param[0] = compressionEncodeParam;
            encoderParams.Param[1] = saveEncodeParam;
            TiffBitmapDecoder tiffBitmapDecoder = new TiffBitmapDecoder(fileStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
            TiffBitmapEncoder tiffBitmapEncoder;
            int numberOfPages = tiffBitmapDecoder.Frames.Count;
            for (int i = 1; i < numberOfPages; i++)
                BitmapFrame frame = tiffBitmapDecoder.Frames[i];
                System.Drawing.Bitmap bitmap;
                using (MemoryStream outStream = new MemoryStream())
                    tiffBitmapEncoder = new TiffBitmapEncoder();
                    tiffBitmapEncoder.Frames.Add(frame);
                    tiffBitmapEncoder.Save(outStream);
                    bitmap = new System.Drawing.Bitmap(outStream);
                    image.SaveAdd(bitmap, encoderParams);
            fileStream.Close();
            fileStream = new FileStream(tiff2inputFilePath, FileMode.Open, FileAccess.Read);
            tiffBitmapDecoder = new TiffBitmapDecoder(fileStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
            numberOfPages = tiffBitmapDecoder.Frames.Count;
            for (int i = 0; i < numberOfPages; i++)
                BitmapFrame frame = tiffBitmapDecoder.Frames[i];
                System.Drawing.Bitmap bitmap;
                using (MemoryStream outStream = new MemoryStream())
                    tiffBitmapEncoder = new TiffBitmapEncoder();
                    tiffBitmapEncoder.Frames.Add(frame);
                    tiffBitmapEncoder.Save(outStream);
                    bitmap = new System.Drawing.Bitmap(outStream);
                    image.SaveAdd(bitmap, encoderParams);
            fileStream.Close();
            saveEncodeParam = new EncoderParameter(saveEncoder, (long)EncoderValue.Flush);
            encoderParams.Param[0] = saveEncodeParam;
            image.SaveAdd(encoderParams);
            outputStream.Close();
        private ImageCodecInfo getEncoder(ImageFormat format)
            ImageCodecInfo[] codecs = ImageCodecInfo.GetImageDecoders();
            foreach (ImageCodecInfo codec in codecs)
                if (codec.FormatID == format.Guid)
                    return codec;
            return null;

Similar Messages

  • I have a Tiff file on my windows computer. How do I transfer it to my first generation iPad?

    I have a Tiff file on my windows computer. How do I transfer it to my first generation iPad?

    I found out how by syncing the file from the folder I had placed it in. Duh!
    TIA!
    Cheers

  • FIrewall for Windows File Share for windows 2008

    Hi All,
    Recently we upgraded one of our application file server from Windows 2000 to Windows 2008. We use this server for file sharing. We used to read files and write files to this server. Post upgrade one week every thing went fine all of a sudden we started seeing
    issues like the application servers stopped communicated to this server. 
    We worked with our firewall team and enabled port 445 post this the application servers started communicating to the file server. Our Application servers are on Windows 2003 server.
    Can someone please help me understand what is the port that needs to be enabled for accessing the file shares. My firewall team confirmed there were no firewalls rules between the Application server and File server. 

    Hi,
    Based on my research, firewall ports required for SMB file sharing are port 445 and 139.
    More information for you:
    SMB: File and printer sharing ports should be open
    https://technet.microsoft.com/en-us/library/ff633412(v=ws.10).aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Auditing file share on windows 2008 R2

    I think I may need a little handholding here. I have been working with our new Windows 2008 R2 file server. I am having a problem doing some simple file level auditing.
    I turned on Audit Object Access in the local policy. The GPO that applies to this server does not have it set and I only really need it enabled on this server. I have it auditing success and Failure.
    After I did that I got deluged with Event ID: 5145. I went to each folder and made sure that I had auditing turned off for each folder and file. I did that to see if it would quite down the logs a little. It did not. I am currently getting about 1500 events of 5145 every second. They all say “ A network share object was checked to see whether client can be granted desired access”
    Most of the details look like this:
    - System
      - Provider
       [ Name]  Microsoft-Windows-Security-Auditing
       [ Guid]  {54849625-5478-4994-A5BA-3E3B0328C30D}
       EventID 5145
    Version 0
    Level 0
       Task 12811
       Opcode 0
       Keywords 0x8020000000000000
      - TimeCreated
      [ SystemTime]  2009-10-21T17:27:06.988998000Z
       EventRecordID 4035441
       Correlation
      - Execution
      [ ProcessID]  528
      [ ThreadID]  544
       Channel Security
       Computer XXXXX-File.XXXXX.com
       Security
    - EventData
      SubjectUserSid S-1-5-21-619530815-2141852887-1629300891-2071
      SubjectUserName SteveW
      SubjectDomainName XXXXXXXXXX
      SubjectLogonId 0x223b087c
      ObjectType File
      IpAddress 10.2.50.88
      IpPort 1087
      ShareName \\*\users
      ShareLocalPath \??\E:\shares\users
      RelativeTargetName \
      AccessMask 0x1
      AccessList %%4416 
      AccessReason %%4416: %%1801 D:(A;OICI;FA;;;WD) 
    All I am trying to keep track of at this point is logon and logoff events AND files and folders being deleted.
    If I have put this into the wrong folder please let me know.

    Hi all,
    I enabled File System Audit and NFTS audit only "Delete subfolders and files"
    auditpol /get /category:"Object Access"
    System audit policy
    Category/Subcategory                      Setting
    Object Access
      File System                             Success and Failure
      Registry                                No Auditing
      Kernel Object                           No Auditing
      SAM                                     No Auditing
      Certification Services                  No Auditing
      Application Generated                   No Auditing
      Handle Manipulation                     No Auditing
      File Share                              No Auditing
      Filtering Platform Packet Drop          No Auditing
      Filtering Platform Connection           No Auditing
      Other Object Access Events              No Auditing
      Detailed File Share                     No Auditing
    I try to delete files but don't see any 4463 event.

  • Downloading files on a Windows 2008 R2 server using IE 9

    Hi.
    Trying to download some fiels from Microsoft download center, but receiving the following message: "Your current security settings do not allow this file to be downloaded"
    Have tried the following in IE 9:
    Turned off Protected mode.
    The page is added to Trusted site.
             Trusted site is configured as follows:
                             Dowloads is Enablet
                            Font download is Enablet
               Under Miscellaneous has the following settings:
                            Allow META REFRESH, enablet
                             Allow webpages to use restrict3ed protocols for active content, Prompt
                             Allow webpages tgo open windows without address or status bar, enablet
                             Launching applications and unsafe files, Pompt
                             Launceing programs and files in an IFRAME Promt
    Still not possible to download a security patch from Microsoft download senter.
    Looking forward to a solution.
    Thank you in advance.
    Kind regards
    DagN

    Hi,
    Please check the following blog to 
    see whether you can resolve the issue.
    http://jaredheinrichs.com/your-current-security-settings-do-not-allow-this-file-to-be-downloaded.html
    Important Note: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to
    you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
    There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.
    Best Regards,
    Vincent Hu

  • Unable to Establishing an anonymously accessible file share on Windows 2008 R2 (SP1)

    So far I tried all this to no avail, server keeps prompting me for username/password when I try to access such share from non-domain
    Windows computer:
    this is what i tried:
    1.  Enable the guest account
    2.  Add the everyone group to both the share and the security permissions.
    3.  Open the Local Security Policy
    4.  Network Access:  Let Everyone permissions apply to anonymous users = Enabled
    5.  Network Access:  Named Pipes that can be accessed anonymously = (add) sharename
    6.  Network
    Access:  Restrict anonymous access to Named Pipes and Shares = Disabled
    7.  Network Access:  Shares that can be accessed anonymously = (add) sharename
    am i missing something here?
    Thanks
    Guy

    Hi,
    This is because it will use the current logged on account to authenticate the access - as the same account exists in target computer, if password is different then you will fail to access the folder. 
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Tiff file causing finder and preview to crash

    Intially I thought there was something wrong with finder however it seems to be just in relation to a tiff file. Also crashes when opening with preview but photoshop 6 is fine. Below it the problem report from preview. Can anyone help? Thanks!
    I've deleted the file completely and made a new copy from the psd but hasnt solved the proble. Also ran disk repair, deleted preferences for finder and emptied trah in safe mode as at one point I couldn't open or emty it.
    Process:         Preview [470]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:      com.apple.Preview
    Version:         5.0.3 (504.1)
    Build Info:      Preview-5040100~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [105]
    Date/Time:       2013-09-19 18:49:17.391 +1000
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          14795678 sec
    Crashes Since Last Report:           196
    Per-App Interval Since Last Report:  738453 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      9405B2ED-BFDF-44AD-90B3-2850089F4D7F
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000012f693000
    Crashed Thread:  3  Dispatch queue: com.apple.root.default-priority
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x0000000100b40d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x0000000100b413ed mach_msg + 59
    2   com.apple.CoreGraphics                  0x0000000103069230 _CGSSynchronizeWindowBackingStore + 97
    3   com.apple.CoreGraphics                  0x000000010304eda9 _CGSLockWindow + 4515
    4   com.apple.CoreGraphics                  0x000000010305593f CGSDeviceLock + 535
    5   libRIP.A.dylib                          0x000000010a664e7b ripd_Lock + 46
    6   libRIP.A.dylib                          0x000000010a66b1f9 ripl_BltImage + 294
    7   libRIP.A.dylib                          0x000000010a66ae61 ripc_RenderImage + 323
    8   libRIP.A.dylib                          0x000000010a66dc64 ripc_DrawImages + 7966
    9   com.apple.CoreGraphics                  0x000000010306f63d CGContextDrawImages + 228
    10  com.apple.coreui                        0x00000001065dc316 CUIRenderer::DrawWindowFrameDark(CUIDescriptor const*) + 4990
    11  com.apple.coreui                        0x00000001065dec77 CUIRenderer::Draw(CGRect, CGContext*, __CFDictionary const*, __CFDictionary const**) + 4787
    12  com.apple.AppKit                        0x0000000101abb516 _NSDrawThemeBackground + 1111
    13  com.apple.AppKit                        0x0000000101abafe3 -[NSThemeFrame _drawUnifiedToolbar:] + 916
    14  com.apple.AppKit                        0x0000000101aba6b8 -[NSThemeFrame _drawTitleBar:] + 604
    15  com.apple.AppKit                        0x0000000101aba3f9 -[NSThemeFrame drawFrame:] + 947
    16  com.apple.AppKit                        0x0000000101ab9f80 -[NSFrameView drawRect:] + 773
    17  com.apple.AppKit                        0x0000000101ab96e9 -[NSThemeFrame drawRect:] + 109
    18  com.apple.AppKit                        0x0000000101ab8d75 -[NSView _drawRect:clip:] + 3566
    19  com.apple.AppKit                        0x0000000101ab654b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2112
    20  com.apple.AppKit                        0x0000000101ab5b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    21  com.apple.AppKit                        0x0000000101ab23de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    22  com.apple.AppKit                        0x0000000101a2bc0e -[NSView displayIfNeeded] + 969
    23  com.apple.AppKit                        0x0000000101a26aba _handleWindowNeedsDisplay + 678
    24  com.apple.CoreFoundation                0x0000000100ed0b07 __CFRunLoopDoObservers + 519
    25  com.apple.CoreFoundation                0x0000000100eac434 __CFRunLoopRun + 468
    26  com.apple.CoreFoundation                0x0000000100eabd8f CFRunLoopRunSpecific + 575
    27  com.apple.HIToolbox                     0x00000001029ee74e RunCurrentEventLoopInMode + 333
    28  com.apple.HIToolbox                     0x00000001029ee553 ReceiveNextEventCommon + 310
    29  com.apple.HIToolbox                     0x00000001029ee40c BlockUntilNextEventMatchingListInMode + 59
    30  com.apple.AppKit                        0x00000001019fbeb2 _DPSNextEvent + 708
    31  com.apple.AppKit                        0x00000001019fb801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    32  com.apple.AppKit                        0x00000001019c168f -[NSApplication run] + 395
    33  com.apple.AppKit                        0x00000001019ba3b0 NSApplicationMain + 364
    34  com.apple.Preview                       0x0000000100001464 start + 52
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x0000000100b59c0a kevent + 10
    1   libSystem.B.dylib                       0x0000000100b5badd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x0000000100b5b7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x0000000100b5b2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x0000000100b5ac08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x0000000100b5aaa5 start_wqthread + 13
    Thread 2:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x0000000100b40dc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x0000000100b4640d pthread_mutex_lock + 469
    2   com.apple.ImageIO.framework             0x00000001038256de ImageProviderCopyImageBlockSetCallback + 131
    3   com.apple.CoreGraphics                  0x00000001031b4d83 subImageProviderCopyImageBlockSet + 338
    4   com.apple.CoreGraphics                  0x00000001030a91a2 img_blocks_create + 356
    5   com.apple.CoreGraphics                  0x00000001030a9015 img_blocks_extent + 96
    6   com.apple.CoreGraphics                  0x0000000103073bf2 img_data_lock + 8480
    7   com.apple.CoreGraphics                  0x0000000103070dd7 CGSImageDataLock + 212
    8   libRIP.A.dylib                          0x000000010a66a25f ripc_AcquireImage + 2431
    9   libRIP.A.dylib                          0x000000010a668ae3 ripc_DrawImage + 1208
    10  com.apple.CoreGraphics                  0x000000010308bc0a CGContextDrawImage + 446
    11  com.apple.Preview                       0x000000010001fd80 -[PVIVImage _ISRDrawImageRect:intoContext:allowSubsampling:flipped:applyColorFilters:] + 2163
    12  com.apple.Preview                       0x000000010001f0e7 -[PVIVImageTile _loadLevel:onOperation:] + 633
    13  com.apple.Preview                       0x000000010001ec9f -[PVIVImageTileLoadOp main] + 46
    14  com.apple.Foundation                    0x0000000101129dd0 -[__NSOperationInternal start] + 681
    15  com.apple.Foundation                    0x0000000101207bd5 ____NSOQSchedule_block_invoke_2 + 129
    16  libSystem.B.dylib                       0x0000000100b7cd64 _dispatch_call_block_and_release + 15
    17  libSystem.B.dylib                       0x0000000100b5b2d1 _dispatch_worker_thread2 + 239
    18  libSystem.B.dylib                       0x0000000100b5ac08 _pthread_wqthread + 353
    19  libSystem.B.dylib                       0x0000000100b5aaa5 start_wqthread + 13
    Thread 3 Crashed:  Dispatch queue: com.apple.root.default-priority
    0   com.apple.ImageIO.framework             0x0000000103917ac3 ImageIO_RemoveExtaChannels16Bit + 55
    1   com.apple.ImageIO.framework             0x000000010382ce94 copyImageBlockSetTIFF + 3091
    2   com.apple.ImageIO.framework             0x0000000103825718 ImageProviderCopyImageBlockSetCallback + 189
    3   com.apple.CoreGraphics                  0x00000001031b4d83 subImageProviderCopyImageBlockSet + 338
    4   com.apple.CoreGraphics                  0x00000001030a91a2 img_blocks_create + 356
    5   com.apple.CoreGraphics                  0x00000001030a9015 img_blocks_extent + 96
    6   com.apple.CoreGraphics                  0x0000000103073bf2 img_data_lock + 8480
    7   com.apple.CoreGraphics                  0x0000000103070dd7 CGSImageDataLock + 212
    8   libRIP.A.dylib                          0x000000010a66a25f ripc_AcquireImage + 2431
    9   libRIP.A.dylib                          0x000000010a668ae3 ripc_DrawImage + 1208
    10  com.apple.CoreGraphics                  0x000000010308bc0a CGContextDrawImage + 446
    11  com.apple.Preview                       0x000000010001fd80 -[PVIVImage _ISRDrawImageRect:intoContext:allowSubsampling:flipped:applyColorFilters:] + 2163
    12  com.apple.Preview                       0x000000010001f0e7 -[PVIVImageTile _loadLevel:onOperation:] + 633
    13  com.apple.Preview                       0x000000010001ec9f -[PVIVImageTileLoadOp main] + 46
    14  com.apple.Foundation                    0x0000000101129dd0 -[__NSOperationInternal start] + 681
    15  com.apple.Foundation                    0x0000000101207bd5 ____NSOQSchedule_block_invoke_2 + 129
    16  libSystem.B.dylib                       0x0000000100b7cd64 _dispatch_call_block_and_release + 15
    17  libSystem.B.dylib                       0x0000000100b5b2d1 _dispatch_worker_thread2 + 239
    18  libSystem.B.dylib                       0x0000000100b5ac08 _pthread_wqthread + 353
    19  libSystem.B.dylib                       0x0000000100b5aaa5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib                       0x0000000100b5aa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x0000000100b5ae3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x0000000100b5aaa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x0000000100b5aa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x0000000100b5ae3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x0000000100b5aaa5 start_wqthread + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000001378  rbx: 0x000000010a9df000  rcx: 0x000000000000000a  rdx: 0x0000000000000003
      rdi: 0x000000011ced7240  rsi: 0x000000012f692ffc  rbp: 0x000000011ced7010  rsp: 0x000000011ced6fe8
       r8: 0x000000010a9e74d2   r9: 0x0000000000000761  r10: 0x0000000000000762  r11: 0x000000012f689c68
      r12: 0x0000000000000000  r13: 0x0000000000000001  r14: 0x00000000000084e4  r15: 0x00000000000084e4
      rip: 0x0000000103917ac3  rfl: 0x0000000000010202  cr2: 0x000000012f693000
    Binary Images:
           0x100000000 -        0x100169ff7  com.apple.Preview 5.0.3 (504.1) <7853E669-067D-6598-1F15-F274AB6190D5> /Applications/Preview.app/Contents/MacOS/Preview
           0x10022b000 -        0x10022bff7  com.apple.Carbon 150 (152) <BD59781B-CDD9-9E53-7918-5566FB25D304> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10022e000 -        0x10022eff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x100231000 -        0x100240fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x100249000 -        0x100249ff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10024c000 -        0x10024cff7  com.apple.quartzframework 1.5 (1.5) <FA660AAC-70CD-7EA2-5DF1-A8724D8F4B1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10024f000 -        0x1002affe7  com.apple.framework.IOKit 2.0 (???) <2D2A51AA-4021-0F64-BE58-B0ED5388D899> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x1002d3000 -        0x100515fe7  com.apple.AddressBook.framework 5.0.4 (883) <B6BD722F-BD01-E73A-66D2-88AFE26355DF> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x100650000 -        0x100650ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x100653000 -        0x100788fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x100802000 -        0x10083bff7  com.apple.MeshKit 1.1 (49.2) <B85DDDC7-4053-4DB8-E1B5-AA0CBD4CDD1C> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
           0x100867000 -        0x1008b2fef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x1008e6000 -        0x100a56fff  com.apple.QTKit 7.7 (1799) <121D860A-89F4-5F7C-59FD-AC44D6482BD5> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x100b40000 -        0x100d01fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
           0x100d93000 -        0x100e49ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
           0x100e5d000 -        0x100e5dff7  com.apple.CoreServices 44 (44) <616722B1-5E79-DCCF-BF5E-0DD5802CCBD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x100e60000 -        0x100fd7fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x1010f0000 -        0x101372fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x1014ea000 -        0x1014eaff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x1014ed000 -        0x10188afe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x1019b8000 -        0x1023b2ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x1029aa000 -        0x1029afff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x1029b7000 -        0x1029bafff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x1029c0000 -        0x102cbefff  com.apple.HIToolbox 1.6.5 (???) <98FCEA0D-FA33-E859-B39C-2C1F59F9E22D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x102dea000 -        0x102e01fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x102e1b000 -        0x102ed0fe7  com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x102f03000 -        0x102f1eff7  com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x102f2f000 -        0x102f31fff  com.apple.print.framework.Print 6.1 (237.1) <87A5BEEC-2D37-5CB7-8B13-7B605397573F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x102f36000 -        0x102f39ff7  com.apple.securityhi 4.0 (36638) <2C522D50-1BBF-F38B-F9DB-502FEF49F94D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x102f3e000 -        0x102f49ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x102f53000 -        0x102fd0fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
           0x103031000 -        0x10372dff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x10381f000 -        0x1039defff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
           0x103a4a000 -        0x103ac8ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
           0x103b06000 -        0x103ba0fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x103bc9000 -        0x103c8afef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x103cc7000 -        0x103d1aff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x103d46000 -        0x103d5bff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <59D9E83D-3131-91F4-E3E2-02047F55917F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x103d69000 -        0x103deeff7  com.apple.print.framework.PrintCore 6.3 (312.7) <F00C561F-D38B-8785-5218-1A0C3BA61177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x103e24000 -        0x103e65fef  com.apple.QD 3.36 (???) <04F03722-91CA-6858-55A4-54D7F29789A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x103e7d000 -        0x103e91ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x103ea2000 -        0x103eb3ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <5BAFAE5C-2307-C27B-464D-582A10A6990B> /usr/lib/libz.1.dylib
           0x103eb8000 -        0x103ecefef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
           0x103ed7000 -        0x104095fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB> /usr/lib/libicucore.A.dylib
           0x104104000 -        0x10438dff7  com.apple.security 6.1.2 (55002) <D224882B-D57B-83AF-3781-548BCEACB327> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x104485000 -        0x104489ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
           0x10448c000 -        0x10449aff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
           0x10449e000 -        0x1044eafff  libauto.dylib ??? (???) <328CCF97-091D-C529-E576-C78583445711> /usr/lib/libauto.dylib
           0x1044f7000 -        0x10482bfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x1048a5000 -        0x104979fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
           0x1049ed000 -        0x104a37ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x104a61000 -        0x104b1efff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x104b78000 -        0x104c08fff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x104c46000 -        0x104c81fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x104c9b000 -        0x104d3bfff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x104d81000 -        0x104da9fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <6B8C5FB6-FE6F-3345-0441-BED51E815379> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x104dc3000 -        0x104dc9ff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <FD5CF2E6-E5FF-1E2A-37E0-304722DA15E1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x104dd2000 -        0x104de1fff  com.apple.NetFS 3.2.2 (3.2.2) <0A19AF05-F331-2762-A03C-CA78E86C7810> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x104dea000 -        0x104ea3fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <E8FFCEA1-3BE3-F0C9-07EA-C37678C4D2F5> /usr/lib/libsqlite3.dylib
           0x104eb3000 -        0x104ef4ff7  com.apple.SystemConfiguration 1.10.9 (1.10.2) <642854D8-F4EF-4685-42A6-E48A1904D885> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x104f18000 -        0x104f43ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
           0x104f4e000 -        0x105064ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
           0x10508d000 -        0x1050e3fe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x1050f1000 -        0x1050f6fff  libGIF.dylib ??? (???) <3BAD0DE8-8151-68B0-2244-A4541C738972> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x1050fb000 -        0x10511cfe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x105125000 -        0x105127fff  libRadiance.dylib ??? (???) <BF694EE5-6FDA-553A-CC89-F7135618E9C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
           0x10512b000 -        0x105152ff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10515a000 -        0x105237ff7  com.apple.vImage 4.1 (4.1) <A0DE28F5-7B45-D268-0497-C79A826C8E53> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x105246000 -        0x105246ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x105249000 -        0x105291ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x105299000 -        0x105303fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7BD7F19B-ACD4-186C-B42D-4DEBA6795628> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10530d000 -        0x105b17fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x105b60000 -        0x105fa3fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x106130000 -        0x10624fff7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <11EB0132-EC8E-0E2E-9B84-B2DFE65DE678> /usr/lib/libcrypto.0.9.8.dylib
           0x1062b7000 -        0x1062b8ff7  com.apple.TrustEvaluationAgent 1.1 (1) <A91CE5B9-3C63-5F8C-5052-95CCAB866F72> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x1062bc000 -        0x10637efe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x106475000 -        0x1064affff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
           0x1064be000 -        0x10656efff  edu.mit.Kerberos 6.5.11 (6.5.11) <3437B39E-8B40-B7E5-2FC3-000A0F7262C3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x106594000 -        0x1065b5fff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
           0x1065bf000 -        0x106606ff7  com.apple.coreui 2 (114) <31118426-355F-206A-65AB-CCA2D2D3EBD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10662b000 -        0x106710fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10675f000 -        0x1067b4ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8591B47D-BCE3-3EF7-DECB-8795FE3556BA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x1067d2000 -        0x1067e8fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x1067f5000 -        0x10681aff7  com.apple.CoreVideo 1.6.2 (45.6) <31802A1C-81BC-33F8-D5C8-39A793D4D926> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x106833000 -        0x106864fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10686b000 -        0x10688efff  com.apple.opencl 12.3.6 (12.3.6) <C7C90299-2126-830A-7D00-73331AA044B3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x106897000 -        0x10689dff7  IOSurface ??? (???) <12FB0DFC-8A3E-B349-2A3C-28A4D3BA4DD8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x1068a6000 -        0x1068effef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x1068fe000 -        0x106912fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x106922000 -        0x106a3cfff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x106a5d000 -        0x106a60ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x106a65000 -        0x106a6afff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x106a6f000 -        0x106aeefe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x106b24000 -        0x106b25ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x106b2a000 -        0x106bb6fef  SecurityFoundation ??? (???) <C538CFE6-A2C9-0678-3221-C0E8667D22C3> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x106bfa000 -        0x106c01fff  com.apple.OpenDirectory 10.6 (10.6) <460F77D1-3CB8-B9B6-B9D1-D6644D2C6756> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x106c0a000 -        0x106c10ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x106c18000 -        0x106c31fff  com.apple.CFOpenDirectory 10.6 (10.6) <32DF31BC-F7EE-40A6-C629-5AE4B389C1A8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x106c46000 -        0x106c95ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <EDE08F8A-F933-0059-3E58-A31C45C82329> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x106cb6000 -        0x106cd6fff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x106ce0000 -        0x106cf2fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <30FE378B-99FE-8C7C-06D0-A3AA0A0A70D4> /usr/lib/libsasl2.2.dylib
           0x106cf9000 -        0x106e37fff  com.apple.CoreData 102.1 (251) <96C5E9A6-C28C-E9CC-A0DB-27801A22A49F> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x106ecf000 -        0x106ed0fff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
           0x106ed4000 -        0x10713dfff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x107297000 -        0x107326fff  com.apple.PDFKit 2.5.5 (2.5.5) <18C99AB3-DACC-3654-200E-0BD09EBFB374> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x10737c000 -        0x1073abfff  com.apple.quartzfilters 1.6.0 (1.6.0) <52D41730-D485-A7AE-4937-FE37FC732F65> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x1073da000 -        0x107614fef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x107764000 -        0x1077e6fff  com.apple.QuickLookUIFramework 2.3 (327.7) <73407EAE-6854-E444-37B1-019AAEDEB31B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x10783c000 -        0x107b5ffe7  com.apple.JavaScriptCore 6534.59 (6534.59.6) <029D160C-5D86-C281-5071-66CA09D1A95F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x107bee000 -        0x107c56fff  com.apple.MeshKitRuntime 1.1 (49.2) <A490FE03-313D-1317-A9B8-25EF75CB1A81> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
           0x107c8c000 -        0x107d96ff7  com.apple.MeshKitIO 1.1 (49.2) <D7227401-9DC9-C2CB-C83B-C2B10C61D4E4> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
           0x107e09000 -        0x107e4afef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x107e67000 -        0x107f8fff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
           0x108002000 -        0x108508ff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
           0x1085d0000 -        0x108615fff  com.apple.CoreMediaIOServices 142.0 (1497) <0A7A9B83-0C8A-DA9D-2815-DA710ACF5172> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
           0x108638000 -        0x1086a9ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x1086b4000 -        0x108716fe7  com.apple.datadetectorscore 2.0 (80.7) <18610985-EE24-CCF7-AB4B-7D4F7C8A4FF5> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10874a000 -        0x1087b6fe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x1087f5000 -        0x10883cfff  com.apple.QuickLookFramework 2.3 (327.7) <A8169A96-FAE6-26B2-A9A9-C78BA5787146> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x108867000 -        0x108871fff  com.apple.DisplayServicesFW 2.3.5 (290) <18913B62-8C65-B81E-AA3C-27049D9D4FF7> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x10887c000 -        0x10888dfff  com.apple.DSObjCWrappers.Framework 10.6 (134) <CF1D9C05-8D77-0FFE-38E8-63D8A23E92E1> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
           0x10889a000 -        0x10889bfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <EC039008-5367-090D-51FD-EA4D2623671A> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
           0x1088a0000 -        0x1088ddfff  com.apple.LDAPFramework 2.0 (120.1) <E5FA9339-4812-E8FE-C366-EE3DC975DBC6> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x1088ea000 -        0x108967fef  com.apple.backup.framework 1.2.2 (1.2.2) <BB72F0C7-20E2-76DC-6764-5B93A7AC0EB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x108986000 -        0x1089cfff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x108a01000 -        0x108a0cfff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x108a1a000 -        0x108a58fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <B3465B16-5B9D-C881-C61A-AFC9D8EDDC1B> /usr/lib/libssl.0.9.8.dylib
           0x108deb000 -        0x108defff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
           0x108f83000 -        0x108f90fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
           0x108fbb000 -        0x108feeff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
           0x10a600000 -        0x10a63efe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistry.dylib
           0x10a65d000 -        0x10a6a0ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
           0x10a798000 -        0x10a7befff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11c800000 -        0x11cd09ff7  com.apple.RawCamera.bundle 3.14.0 (646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x11eeed000 -        0x11f080fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11f0b1000 -        0x11f4a3fef  com.apple.ATIRadeonX3000GLDriver 1.6.42 (6.4.2) <5D41FD64-134D-F822-0919-44261CD47D78> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
           0x11f4ea000 -        0x12055bff7  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.42 (6.4.2) <C44CB5D9-318E-3390-EEF4-F49CD0F30765> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
           0x12bcd6000 -        0x12bcdcfff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <DD3F7F3E-8612-A7BD-F508-9EF29132C419> /usr/lib/dyld
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 8 GB, SMC 1.69f4
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS725050A9A362, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 4
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    Another suggestion is to downgrade Flash Player to 10.3 and see if it still crash or not. I noted how to uninstall current version and install older version in the other thread: http://forums.adobe.com/thread/922257?tstart=30
    Let us know if older version work fine or stil crash. There is different code path between 10.3 and 11 so there might be chance that older one won't crash. I hope you can enjoy ESPN soon.

  • Bridge CS4 not recognizing tiff files

    I downloaded an update for camera raw and installed in manually and after this I couldn't open Photoshop.  I then uninstalled and reinstalled CS4 and now bridge will show thumbnails of tiff files but won't open large.  All I see is a generic icon.  How do I get bridge to recognize tiff files.  It recognizes jpgs, and raw files.  I'm using Windows Vista.
    Any help appreciated
    Suzan

    All Raw files are reconnized as all jpgs.  I have my Bridge set up as a film strip with smal thumbnails and if I click on one thumbnail it opens large in preview area.  I can click on a Raw thumbnail and it will display a larger view in bridge then I can open in Camera Raw for preliminary editing.  I cannot do this with tiff files.  I can see them as thumbnails but when I click on them bridge doesn't display a larger image (only a small icon) nor am I given the option of opening in Camera Raw.  I can double click and photoshp regular will open or I can go up to file open with and go to photoshop regular but Bridge willnot allow me to view a larger than thumbnail size pic nor will it give me the option of opening in Camera Raw.  My camera raw preferences are set to "open both jpgs and tiff files with settings".
    Thanks Suzan
    I purged the cashe from one file and it affected all files(all almost 500 gigs).  I'd been working on this for hours.  Thank you and God Bless.
    Message was edited by: ImKayd1

  • Why does Mozilla open when I open a Tiff file in Photoshop?

    Ever since I started using Photoshop CS5 in 64-bit, I noticed that every time I double click to open a .TIFF file in Bridge, Firefox opens and puts the image file name in the address bar. Photoshop continues to open also, but why is Firefox opening? I have already changed in the Tools>Options>Applications so that image/tiff files open in PS CS5. So why does Firefox open?

    What's the file association set to for the TIFF extension in the Windows Control Panel > Folder Options > File Types ?

  • Issues exporting versions from tiff files

    I upgraded to Aperture 3 [3.0.2] running on 10.6. Aperture works fine, except when trying to export a version of a tiff file [these are 8 bit 200mb scans]. Exporting a master from a tiff file works, exporting versions from RAW files work, but Aperture "hangs" when trying to export a version of a tiff file. I do have access to the tiff versions when using the media browser in other applications (Pages, iWeb etc.).
    So far I tried all repair options [pressing cmd/ctrl while starting up] and i tried importing and than exporting a tiff file under Ap3, assuming something went wrong while updating from Ap2 to Ap3. Same results.
    ???

    can you provide your export settings. I tried it and it works...but my tifs are not 200mb.

  • Multi-Image TIFF Files

    Hello.
    I don't have a lot of time,
    I need to have a multi-page TIFF file out of some images!
    Thanks you!

    Okay.
    If I remember correctly, TIFF files can consist of multiple "pages". I don't think I've ever even created one myself back when I used Windows, but I do remember having opened and viewed a single TIFF file in the Windows picture viewer thingey whatever it is, which consisted of multiple images that could be cycled through just like in a PDF; but the file extension was certainly .TIFF .
    Thanks.

  • HT2506 tiff file won't open

    Hi - I have a bunch of tiff files on a cd-rom and when I try to open them with Preview  I get an error message: "The file  could not be opened. It may be damaged or use a file format that Preview doesn’t recognize."
    Can anyone suggest a way to open these files?
    Thanks!

    Highlight the file within the workspace, click the down-facing arrow that appears to the right of the file name and choose 'Download'.
    Once the file has been downloaded to your computer, open it within the appropriate application.
    I suspect that the file you may be referring to is a PDF, but that it's an XFA file.  This type of PDF, often created from LiveCycle Designer, cannot be previewed within Workspaces.
    Please let us know if you have any questions.
    -David

  • 32 bit tiff files

    Lightroom 5.4 has been blacking out the whole image of some of my 32 bit tiff files in the develop module and sometimes in the library module. Has anyone else encountered this problem?

    Alex LK wrote:
    ... Why is the camera only able to produce a fraction of the total 16-bit depth?  Also, does this mean that if an image were 14/16 it would become 28/32 when converted?
    The 16 bit channel is a carrier -- a standard 16-bit element.  The information content of those data bits depends on the source data; that is, the camera sensor.  A 16-bit container does not mean that any and all data placed therein has 16 bits of usable data.  Will an increase or decrease of 1 value in a range of 4096 values (12-bit) actually represent useful image data -- a real light level difference -- or just noise?   Larger, newer, and often more costly camera systems can discriminate between a greater number of steps from zero to maximum value; those that can discern a non-noise light level difference in a range up to 4096 (0 to 4095) use 12-bits; those that discriminate more than 4096 levels will require more than 12 bits.  I'm not a camera expert; but my guess would be that either there is limited if any need for 16 bits of camera sensor data capture (more than 32K steps in range) or that a camera providing such useable precision would be more expensive than the value of the added precision.

  • Problem displaying tiff files using ADF

    Hi,
    I have some TIFF files in a table - IMAGE_TABLE
    ID NOT NULL NUMBER
    DESCRIPTION VARCHAR2(40)
    IMAGE ORDSYS.ORDIMAGE
    I am unable to display TIFF images in an ADF form. I can use processCopy to convert the TIFF images to jpeg, which them display correctly. All other JPEG or GIF display correctly, it's only the TIFF that don't. I've tried variours tiff files (different sources, converted gif and jpeg to tiff) but none display correctly (i.e. in IE you get the red 'x' - in firefox you get the broken picture symbol or nothing)?
    This appears to be an ADF issue as I 'can' dsiplay the TIFF files correctly in IE and firefox using the quicktime plugin but not from an ADF form using JDdevloper? (The code/application is Steve Muench's JSFOrdImageExample - http://otn.oracle.com/products/jdev/tips/muench/jsfordimage/JSFOrdImageExample.zip)
    Any ideas or suggestion would be appreciated.
    Thanks.
    JDeveloper 10.1.3 build 10.1.3.0.4
    DB is 10gr2

    Hi,
    yes, I can view tiff's in browsers (IE and firefox) using the quicktime plugin. I've selected quicktime as the player in the af:objectmedia property settings and Autostart = true, but using the ADF form from JDeveloper will not display tiff images (jpg's, giff's etc. are fine) even though the browser will display tiff's on it's own?
    Thanks.

  • Problem displaying tiff files

    Hi,
    I have some TIFF files in a table - IMAGE_TABLE
    ID NOT NULL NUMBER
    DESCRIPTION VARCHAR2(40)
    IMAGE ORDSYS.ORDIMAGE
    I am unable to display the TIFF images in an ADF form. I can use processCopy to convert the TIFF images to jpeg, which them display correctly. All other JPEG or GIF display correctly, it's only the TIFF that don't. I've tried variours tiff files (different sources, converted gif and jpeg to tiff) but none display correctly (i.e. in IE you get the red 'x' - in firefox you get the broken picture symbol or nothing)?
    Any ideas or suggestion would be appreciated.
    Is this an ADF issue?
    Thanks.
    JDeveloper 10.1.3 build 10.1.3.0.4
    DB is 10gr2

    Hi,
    yes, I can view tiff's in browsers (IE and firefox) using the quicktime plugin. I've selected quicktime as the player in the af:objectmedia property settings and Autostart = true, but using the ADF form from JDeveloper will not display tiff images (jpg's, giff's etc. are fine) even though the browser will display tiff's on it's own?
    Thanks.

Maybe you are looking for