Prevent "*" modification image with filter plugin

Hi,
it is possible prenvent " * " modification image, near name, when plugin read only input data ?
I don't change nothing in the image, I just read pixel data from FilterRecord::inData.
Franco

How is it getting the data from the auto to the filter and back? Via the result descriptor it seems but how? You could use the Photoshop registry (See PIActions.h) or pass a pointer created in the auto plug-in and let the filter plug-in fill it in. They are in the same process so it will work. Just don't create the memory in the filter plug-in.
I would recommend the Photoshop registry unless you are passing around image data. Which I would not advise either. If you are doing that then try to do all the pixel data work in the filter and only pass what you need back to the auto plug in.

Similar Messages

  • OSX using dylib with filter plugin

    Hello
    Ive build a filter plugin for CS3 using xcode.
    Two dylibs are used, and everything is working, if I put the these dylibs at the same location like on my development computer. But the dylibs are not found, if they are placed in the plugin-bundle, in the PS-folder, in application-support, .....
    How can i make this plugin work with the dylibs located in the plugin-bundle? This would be the best way for destributing my plugin.
    Are there other posibilities?
    many thanks in advance.
    Greetings Klaus

    Thanks for the answer, but it is not working this way.
    I still get the error-message and the console shows:
    2007-08-26 12:11:40.294 Adobe Photoshop CS3[9922] CFLog (21): Error loading /Users/kl/Desktop/Adobe Photoshop CS3 SDK/samplecode/Output/Mac/Debug/Debug_i386/ColorAIXchange 2.0.0b0.plugin/Contents/MacOS/Dissolve: error code 4, error number 0 (Library not loaded: /sw/lib/libjpeg.62.dylib
    It looks like the path to the library is firm, but I cannot find the place where to change this.
    In Codewarrior I would link the lib into the plugin or use weak linking and load the lib 'by hand'. Im not very used to xcode.....
    Greetings Klaus

  • Filter plugin. Problem after change image depth.

    Hi All !
    I already wrote filter plugin it work fine but only for image depth 8bit, after i change image depth on 16 or 32 bits I getting error msg box from photoshop.
    I try change on 'destination.colBits = 8' or 'destination.colBits = pChannel->depth' or ' (pChannel->bounds.bottom - pChannel->bounds.top) * pChannel->depth;'  but all the same.
    PixelMemoryDesc destination;
    destination.data = data; //*pixel
    destination.depth = pChannel->depth;
    destination.rowBits = (pChannel->bounds.right - pChannel->bounds.left) * pChannel->depth;
    destination.colBits = 8;
    destination.bitOffset = 0 ;
    Please help someone !
    Very Thanks in Advance !
    All code below:
    //  Gauss.cpp
    //  gauss
    //  Created by Dmitry Volkov on 30.12.14.
    //  Copyright (c) 2014 Automatic System Metering. All rights reserved.
    #include "Gauss.h"
    #include "GaussUI.h"
    #include "FilterBigDocument.h"
    #include <fstream>
    using namespace std;
    SPBasicSuite* sSPBasic = NULL;
    FilterRecord* gFilterRecord = NULL;
    PSChannelPortsSuite1* sPSChannelPortsSuite = NULL;
    PSBufferSuite2* sPSBufferSuite64 = NULL;
    int16* gResult = NULL;
    void DoParameters ();
    void DoPrepare ();
    void DoStart ();
    void DoFinish ();
    void DoEffect();
    void GaussianBlurEffect(ReadChannelDesc* pChannel, char* data);
    void ReadLayerData(ReadChannelDesc* pChannel, char* pLayerData);
    void WriteLayerData(ReadChannelDesc* pChannel, char* pLayerData);
    DLLExport MACPASCAL void PluginMain(const int16 selector,
                                        FilterRecordPtr filterRecord,
                                        intptr_t * data,
                                        int16 * result)
        sSPBasic = filterRecord->sSPBasic;
        gFilterRecord = filterRecord;
        gResult = result;
        try {
                if (sSPBasic->AcquireSuite(kPSChannelPortsSuite,
                                                   kPSChannelPortsSuiteVersion3,
                                                   (const void **)&sPSChannelPortsSuite))
                    *gResult = errPlugInHostInsufficient;
                if (sSPBasic->AcquireSuite( kPSBufferSuite,
                                                   kPSBufferSuiteVersion2,
                                                   (const void **)&sPSBufferSuite64))
                    *gResult = errPlugInHostInsufficient;
                if (sPSChannelPortsSuite == NULL || sPSBufferSuite64 == NULL)
                    *result = errPlugInHostInsufficient;
                    return;
                switch (selector)
                    case filterSelectorParameters:
                        DoParameters();
                        break;
                    case filterSelectorPrepare:
                        DoPrepare();
                        break;
                    case filterSelectorStart:
                        DoStart();
                        break;
                    case filterSelectorFinish:
                        DoFinish();
                        break;
        catch (...)
            if (NULL != result)
                *result = -1;
    void DoParameters ()
    void DoPrepare ()
    void DoStart ()
        if (*gResult == noErr)
            if (doUi())
                DoEffect();
    void DoFinish ()
    #define defColBits 8
    void DoEffect()
        // Start with the first target composite channel
        ReadChannelDesc *pChannel = gFilterRecord->documentInfo->targetCompositeChannels;
        // Calculation width and height our filter window
        int32 width = pChannel->bounds.right - pChannel->bounds.left;
        int32 height = pChannel->bounds.bottom - pChannel->bounds.top;
        fstream logFile ("/Volumes/Macintosh Media/GaussLogFile.txt", ios::out);
        logFile << endl << "top " << pChannel->bounds.top;
        logFile << endl << "bottom " << pChannel->bounds.bottom;
        logFile << endl << "left " << pChannel->bounds.left;
        logFile << endl << "right " << pChannel->bounds.right;
        logFile << endl << "depth " << pChannel->depth;
        logFile << endl << "vRes " << gFilterRecord->documentInfo->vResolution;
        logFile << endl << "hRes " << gFilterRecord->documentInfo->hResolution;
        // Get a buffer to hold each channel as we process. Note we can using standart malloc(size_t) or operator new(size_t)
        // functions, but  Adobe recommend sPSBufferSuite64->New() for memory allocation
        char *pLayerData = sPSBufferSuite64->New(NULL, width*height*pChannel->depth/8);
        if (pLayerData == NULL)
            return;
        // we may have a multichannel document
        if (pChannel == NULL)
            pChannel = gFilterRecord->documentInfo->alphaChannels;
        // Loop through each of the channels
        while (pChannel != NULL && *gResult == noErr)
            ReadLayerData(pChannel, pLayerData);
            GaussianBlurEffect(pChannel, pLayerData);
            WriteLayerData(pChannel, pLayerData);
            // off to the next channel
            pChannel = pChannel->next;
        pChannel = gFilterRecord->documentInfo->targetTransparency;
        // Delete pLayerData
        sPSBufferSuite64->Dispose((char**)&pLayerData);
    void GaussianBlurEffect(ReadChannelDesc* pChannel, char *data)
        // Make sure Photoshop supports the Gaussian Blur operation
        Boolean supported;
        if (sPSChannelPortsSuite->SupportsOperation(PSChannelPortGaussianBlurFilter,
                                                    &supported))
            return;
        if (!supported)
            return;
        // Set up a local rect for the size of our port
        VRect writeRect = pChannel->bounds;
        PIChannelPort inPort, outPort;
        // Photoshop will make us a new port and manage the memory for us
        if (sPSChannelPortsSuite->New(&inPort,
                                      &writeRect,
                                      pChannel->depth,
                                      true))
            return;
        if (sPSChannelPortsSuite->New(&outPort,
                                      &writeRect,
                                      pChannel->depth,
                                      true))
            return;
        // Set up a PixelMemoryDesc to tell how our channel data is layed out
        PixelMemoryDesc destination;
        destination.data = data; //*pixel
        destination.depth = pChannel->depth;
        destination.rowBits = (pChannel->bounds.right - pChannel->bounds.left) * pChannel->depth;
        destination.colBits = defColBits;
        destination.bitOffset = 0 ;
        // Write the current effect we have into this port
        if (sPSChannelPortsSuite->WritePixelsToBaseLevel(inPort,
                                                         &writeRect,
                                                         &destination))
            return;
        // Set up the paramaters for the Gaussian Blur
        PSGaussianBlurParameters gbp;
        int inRadius = 1;
        Fixed what = inRadius << 16;
        gbp.radius = what;
        gbp.padding = -1;
        sPSChannelPortsSuite->ApplyOperation(PSChannelPortGaussianBlurFilter,
                                                                 inPort,
                                                                 outPort,
                                                                 NULL,
                                                                 (void*)&gbp,
                                                                 &writeRect);
        if (sPSChannelPortsSuite->ReadPixelsFromLevel(outPort,
                                                      0,
                                                      &writeRect,
                                                      &destination))
            return;
        // Delete the temp port in use
        sPSChannelPortsSuite->Dispose(&inPort);
        sPSChannelPortsSuite->Dispose(&outPort);
    void ReadLayerData(ReadChannelDesc *pChannel, char *pLayerData)
        // Make sure there is something for me to read from
        Boolean canRead;
        if (pChannel == NULL)
            canRead = false;
        else if (pChannel->port == NULL)
            canRead = false;
        else if (sPSChannelPortsSuite->CanRead(pChannel->port, &canRead))
            // this function should not error, tell the host accordingly
            *gResult = errPlugInHostInsufficient;
            return;
        // if everything is still ok we will continue
        if (!canRead || pLayerData == NULL)
            return;
        // some local variables to play with
        VRect readRect = pChannel->bounds;
        PixelMemoryDesc destination;
        // set up the PixelMemoryDesc
        destination.data = pLayerData;
        destination.depth = pChannel->depth;
        destination.rowBits = pChannel->depth * (readRect.right - readRect.left);
        destination.colBits = defColBits;
        destination.bitOffset = 0 ;
        // Read this data into our buffer, you could check the read_rect to see if
        // you got everything you desired
        if (sPSChannelPortsSuite->ReadPixelsFromLevel(
                                                      pChannel->port,
                                                      0,
                                                      &readRect,
                                                      &destination))
            *gResult = errPlugInHostInsufficient;
            return;
    void WriteLayerData(ReadChannelDesc *pChannel, char *pLayerData)
        Boolean canWrite = true;
        if (pChannel == NULL || pLayerData == NULL)
            canWrite = false;
        else if (pChannel->writePort == NULL)
            canWrite = false;
        else if (sPSChannelPortsSuite->CanWrite(pChannel->writePort, &canWrite))
            *gResult = errPlugInHostInsufficient;
            return;
        if (!canWrite)
            return;
        VRect writeRect = pChannel->bounds;
        PixelMemoryDesc destination;
        destination.data = pLayerData;
        destination.depth = pChannel->depth;
        destination.rowBits = pChannel->depth * (writeRect.right - writeRect.left); //HSIZE * pChannel->depth * gXFactor*2;
        destination.colBits = defColBits;
        destination.bitOffset = 0 ;
        if (sPSChannelPortsSuite->WritePixelsToBaseLevel(
                                                         pChannel->writePort,
                                                         &writeRect,
                                                         &destination))
            *gResult = errPlugInHostInsufficient;
            return;

    Have you reviewed your code vs the Dissolve example? It is enabled for other bit depths as well.

  • Filter plugin and resize the output image

    I had write a filter plugin for photoshop.
    But i have a prolem.
    I dont know how i can resize the output image,
    i need clip just last 3 pixel of a only side of an image.
    I had read API but I'have not found what I looking.
    Thank you in advance

    I think it is impossible edit the size of the output image with a filter plugin.....but i'm not sure, so i prefer ask to you developer.
    I think is it possible with an other way.
    An other similar question: is possible put visible the padding pixel in the output image?

  • Filter plug-in: How to mix my RGB image with source document image properly?

    Hi All,
    My problem seems to be very common, but I can't find any answers in documentation.
    I made Filter plug-in. It composes RGB image and mixes it with user source image in the document.
    Now I load FilterRecord->
    inData to byte array and recode each pixel with HostCSConvertColor function.
    My code looks like that:
      byte 
    *input = (byte*)filter_record->inData;
      int  
    width = filter_record->inRect.right - filter_record->inRect.left; 
      int height = filter_record->inRect.bottom - filter_record->inRect.top;
      byte  
    *transfer_buffer; 
      int size = width * height * 4; 
      transfer_buffer = new byte[size]; 
      byte *output = transfer_buffer;
      int  
    planes = CSPlanesFromMode(fpb->imageMode, 3); 
      int16 color[4]; 
      for(j = 0; j < height; j++)  {
        for(i = 0; i < width; i++)    {
          for(k = 0; k < planes; k++)      {
            color[k] = input[i * align + k];      }
          HostCSConvertColor(filter_record->colorServices, space, plugIncolorServicesRGBSpace, color);      *
    output = (byte)color[0]; output++;      *
    output = (byte)color[1]; output++;      *
    output = (byte)color[2]; output++;      *
    output = 255; output++;    }
    // for width
        input += line;
      } // for height
    After that I mix my RGB image with output buffer and make back transition via
    HostCSConvertColor to the document Color Space.It works very slow and looks ugly.
    But I can't find any other way to mix my RGB image with photoshop image which can be not RGB Color Mode.
    Your help will be very appreciated.
    Sofia

    Is it important to you to be able to process input color spaces other than RGB?
    You can limit your filter to accept only RGB data if you set things up properly in the PiPL resource (e.g., yourfiltername.r file).
    Here's an example for a filter that accepts only RGB or grayscale images:
    SupportedModes
    noBitmap,
    doesSupportGrayScale,
    noIndexedColor,
    doesSupportRGBColor,
    noCMYKColor,
    noHSLColor,
    noHSBColor,
    noMultichannel,
    noDuotone,
    noLABColor
    EnableInfo { "in (PSHOP_ImageMode, RGBMode, GrayScaleMode, RGB48Mode, Gray16Mode, RGB96Mode, Gray32Mode)" },
    With the above, the filter will be disabled (grayed-out in the menu) for modes other than those listed.
    -Noel

  • When I export an image with a Green label, it exports with a "Green" keyword! How do I prevent this?

    I've added a Green color label to an image. When I export the image as a JPEG and then upload it to Flickr, I find a "Green" keyword that I don't want. How can I turn off this behavior -- i.e., exporting color labels as keywords -- while preserving the ability to export all the keywords I added manually?
    I know the keyword is coming from Lightroom because I temporarily changed the Color label's legend to "GGreen" and the keyword "GGreen" appeared in the Flickr upload dialog.
    I inspected the IPTC data of the exported JPEG image with a 3rd-party program (Irfanview) but could not find "Green" (or "GGreen") in the file, but all my manually-added keywords are there.
    I've tried all of Lightroom's Export dialog Metadata settings.
    Thanks,
    -- Sam

    New information and some screen grabs!
    The new information is that the unwanted label "Green" (or whatever color label is selected) appears as a Flickr Tag only when no manually entered keywords are attached to the image in Lightroom. Adding even one keyword in Lightroom and repeating the export-from-Lightroom-then-upload-to-Flickr process results in no "Green" tag in Flickr.
    The images are a) the Flickr upload screen showing the "Green" tag; b) my Lightroom Metadata presets -- everything unchecked; c) my Lightroom Export dialog panel.

  • What is causing PS CC 2014 to crash when a non-zero *result is returned from a filter plugin?

    Hi All,
    I'm trying to debug a crash in Photoshop after returning from a filter plugin.
    In the case that the filter plugin has “done nothing” or the user has elected not to save the work, the filter plugin sets the value of *result to be -128 or 2. If the plugin has completed successfully and some work has been saved then *result is of course set to 0.
    When *result is set to other than 0, though, Photoshop immediately crashes after the plugin has returned from PluginMain.
    The backtrace of the crashed thread is at the bottom of this message.
    If I alter our filter code so that *result is set to 0, without any other change having been made, there is no crash, which leaves me a bit stumped. Clearly this isn't appropriate, since it results in the new filter layer being created, which the user doesn't want if the filter was cancelled!
    Any suggestions about where to start investigating?
    The sample backtrace below occurs immediately after I return from PluginMain (having been passed a selector of 5) having set *result=2, *data=0.
    Process:               Adobe Photoshop CC 2014 [33126]
    Path:                  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/MacOS/Adobe Photoshop CC 2014
    Identifier:            com.adobe.Photoshop
    Version:               15.2.2 (15.2.2.310)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Adobe Photoshop CC 2014 [33126]
    User ID:               501
    Date/Time:             2015-04-07 17:10:24.957 +0100
    OS Version:            Mac OS X 10.10.2 (14C1514)
    Report Version:        11
    Anonymous UUID:        97353721-6C4A-3788-A7DC-067B7B828CE4
    Sleep/Wake UUID:       60AF0C59-FB9D-43F8-9441-DE0519F0F56E
    Time Awake Since Boot: 500000 seconds
    Time Since Wake:       9800 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    terminating with uncaught exception of type photoshop_error: photoshop_exception
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib             0x00007fff8bd14286 __pthread_kill + 10
    1   libsystem_c.dylib                  0x00007fff992a5b53 abort + 129
    2   libc++abi.dylib                    0x00007fff96221a21 abort_message + 257
    3   libc++abi.dylib                    0x00007fff962499b9 default_terminate_handler() + 243
    4   libobjc.A.dylib                    0x00007fff8bf197eb _objc_terminate() + 124
    5   libc++abi.dylib                    0x00007fff962470a1 std::__terminate(void (*)()) + 8
    6   libc++abi.dylib                    0x00007fff96247113 std::terminate() + 51
    7   com.adobe.Photoshop                0x000000010e23209e 0x10e226000 + 49310
    8   com.adobe.Photoshop                0x000000010e826930 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1994480
    9   com.adobe.Photoshop                0x000000010e822c68 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1978920
    10  com.adobe.Photoshop                0x000000010e81cb3e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1954046
    11  com.adobe.Photoshop                0x000000010e823da3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1983331
    12  com.adobe.Photoshop                0x000000010ec91ac5 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6627461
    13  com.adobe.Photoshop                0x000000010ec925ca AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6630282
    14  com.adobe.Photoshop                0x000000010e81ca60 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1953824
    15  com.adobe.Photoshop                0x000000010ec8cfc1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6608257
    16  com.adobe.Photoshop                0x000000010ec8d7e1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6610337
    17  com.adobe.Photoshop                0x000000010e81c4d5 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1952405
    18  com.adobe.Photoshop                0x000000010e823f02 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1983682
    19  com.adobe.Photoshop                0x000000010e8bd1bc AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2611068
    20  com.adobe.Photoshop                0x000000010e82505d AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1988125
    21  com.adobe.Photoshop                0x000000010e827c21 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1999329
    22  com.adobe.Photoshop                0x000000010e9a5421 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 3561953
    23  com.adobe.Photoshop                0x000000010e331fd0 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 988320
    24  com.adobe.Photoshop                0x000000010e33a4ec boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 1022396
    25  com.adobe.Photoshop                0x000000010e2af68a boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 453466
    26  com.adobe.Photoshop                0x000000010e2b576d boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 478269
    27  com.adobe.Photoshop                0x000000010e2b4981 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 474705
    28  com.adobe.Photoshop                0x000000010e2b07bf boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 457871
    29  com.adobe.Photoshop                0x000000010e2b05a6 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 457334
    30  com.adobe.Photoshop                0x000000010fabbbb4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21479796
    31  com.apple.AppKit                   0x00007fff8f16b608 -[NSApplication run] + 711
    32  com.adobe.Photoshop                0x000000010fabc382 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21481794
    33  com.adobe.Photoshop                0x000000010fabd6f8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21486776
    34  com.adobe.Photoshop                0x000000010e2b0e8f boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 459615
    35  com.adobe.Photoshop                0x000000010e564dce boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3293854
    36  com.adobe.Photoshop                0x000000010e564f29 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3294201
    37  com.adobe.Photoshop                0x000000010e228334 0x10e226000 + 9012
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib             0x00007fff8bd15232 kevent64 + 10
    1   libdispatch.dylib                  0x00007fff9491fa6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib             0x00007fff8bd1494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib            0x00007fff8bef640d start_wqthread + 13
    Thread 3:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 4:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 5:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 6:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 7:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 8:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 9:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib             0x00007fff8bd1448a __semwait_signal + 10
    1   com.adobe.PSAutomate               0x00000001472315f8 0x1470e3000 + 1369592
    2   com.adobe.PSAutomate               0x000000014721705e 0x1470e3000 + 1261662
    3   com.adobe.PSAutomate               0x0000000147231195 0x1470e3000 + 1368469
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib             0x00007fff8bd1494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib            0x00007fff8bef640d start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib             0x00007fff8bd0f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff8bd0e64f mach_msg + 55
    2   com.apple.CoreFoundation           0x00007fff958cbb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation           0x00007fff958caffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation           0x00007fff958ca858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit                   0x00007fff8f2db33b _NSEventThread + 137
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib             0x00007fff8bd1433a __recvfrom + 10
    1   VulcanMessage5.dylib               0x0000000116750b32 vcfoundation::io::BSDNamedPipe::Read(void*, unsigned long) + 24
    2   VulcanMessage5.dylib               0x000000011674ec40 vcfoundation::io::BufferedReader::InternalRead(char*, long) + 112
    3   VulcanMessage5.dylib               0x000000011674ecae vcfoundation::io::BufferedReader::Read(void*, unsigned long) + 60
    4   VulcanMessage5.dylib               0x00000001167477d0 vcfoundation::io::IVCChannel::ReadFully(void*, unsigned long) + 70
    5   VulcanMessage5.dylib               0x0000000116748262 vcfoundation::io::Serializer::InternalDeserialize() + 30
    6   VulcanMessage5.dylib               0x000000011674816f vcfoundation::io::Serializer::Deserialize() + 9
    7   VulcanMessage5.dylib               0x000000011674d782 vcfoundation::ncomm::Connection::ReadIn() + 28
    8   VulcanMessage5.dylib               0x000000011674d8c6 vcfoundation::ncomm::NCService::ReadResponse(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&, vcfoundation::ncomm::NCService::ConRef&) + 40
    9   VulcanMessage5.dylib               0x000000011674d681 vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&) + 109
    10  VulcanMessage5.dylib               0x000000011674d5fa vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*) + 32
    11  VulcanMessage5.dylib               0x000000011673e32b adobe::vulcan::servicemgr::CSIRequest::Execute() + 53
    12  VulcanMessage5.dylib               0x000000011673f507 adobe::vulcan::servicemgr::RegisterForEventsRequest::Run() + 353
    13  VulcanMessage5.dylib               0x000000011674e2d0 vcfoundation::thread::AbstractThread::Run() + 50
    14  VulcanMessage5.dylib               0x0000000116752523 vcfoundation::thread::Thread::ThreadProc(void*) + 9
    15  libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    16  libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    17  libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 21:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010f98b0fb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20231867
    2   com.adobe.Photoshop                0x000000010ffcd8bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26795643
    3   com.adobe.Photoshop                0x000000010ffcbd7b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26788667
    4   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    5   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    6   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    7   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 22:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010f98b0fb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20231867
    2   com.adobe.Photoshop                0x000000010ffcd8bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26795643
    3   com.adobe.Photoshop                0x000000010ffcbd7b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26788667
    4   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    5   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    6   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    7   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 23:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010f98b0fb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20231867
    2   com.adobe.Photoshop                0x000000010ffcd8bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26795643
    3   com.adobe.Photoshop                0x000000010ffcbd7b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26788667
    4   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    5   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    6   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    7   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 24:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010f98b0fb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20231867
    2   com.adobe.Photoshop                0x000000010ffcd8bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26795643
    3   com.adobe.Photoshop                0x000000010ffcbd7b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26788667
    4   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    5   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    6   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    7   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 25:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib             0x00007fff8bd0f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff8bd0e64f mach_msg + 55
    2   com.apple.CoreFoundation           0x00007fff958cbb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation           0x00007fff958caffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation           0x00007fff958ca858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork                0x00007fff8cdc3c80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation               0x00007fff9a28190a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    8   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    9   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine               0x000000014977c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine               0x000000014977c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine               0x000000014977c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine               0x000000014977c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3a0 APXGetHostAPI + 2516240
    2   com.adobe.ape.engine               0x00000001499e65ab APXGetHostAPI + 2615067
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3a0 APXGetHostAPI + 2516240
    2   com.adobe.ape.engine               0x0000000149b61073 APXGetHostAPI + 4166115
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 32:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib             0x00007fff8bd143fa __select + 10
    1   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    2   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    3   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 33:: General Background Service
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010e5346e1 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3095473
    2   com.adobe.Photoshop                0x000000010fdf5358 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24860952
    3   com.adobe.Photoshop                0x000000010fdf4b3b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24858875
    4   com.adobe.Photoshop                0x000000010fdf5cba AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24863354
    5   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 34:: Update Activation Menu Items
    0   libsystem_kernel.dylib             0x00007fff8bd1448a __semwait_signal + 10
    1   com.adobe.Photoshop                0x000000010e4cacd3 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2662819
    2   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    3   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    4   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    5   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib             0x00007fff8bd0f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff8bd0e64f mach_msg + 55
    2   com.apple.CoreFoundation           0x00007fff958cbb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation           0x00007fff958caffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation           0x00007fff958ca858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation               0x00007fff9a2f3364 -[NSConnection run] + 152
    6   com.apple.Foundation               0x00007fff9a28190a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    8   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    9   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib             0x00007fff8bd0f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff8bd0e64f mach_msg + 55
    2   com.apple.CoreFoundation           0x00007fff958cbb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation           0x00007fff958caffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation           0x00007fff958ca858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation               0x00007fff9a3bf978 -[NSConcreteTask waitUntilExit] + 205
    6   com.adobe.PlugPlugOwl              0x0000000113a1f1c4 -[HtmlEngineMonitor monitorThreadProc] + 99
    7   com.apple.Foundation               0x00007fff9a28190a __NSThread__main__ + 1345
    8   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    9   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    10  libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 37:
    Thread 38:: cr_scratch
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.CameraRaw                0x000000015a990aab 0x15a391000 + 6290091
    2   com.adobe.CameraRaw                0x000000015a9197ab 0x15a391000 + 5801899
    3   com.adobe.CameraRaw                0x000000015a7179f1 0x15a391000 + 3697137
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff519d4a58  rdx: 0x0000000000000000
      rdi: 0x000000000000130f  rsi: 0x0000000000000006  rbp: 0x00007fff519d4a80  rsp: 0x00007fff519d4a58
       r8: 0x0000000000000002   r9: 0x00007fff992cfd70  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff519d4be0  r13: 0x00007fff519d5401  r14: 0x00007fff7ad8a300  r15: 0x00007fff519d4ac0
      rip: 0x00007fff8bd14286  rfl: 0x0000000000000206  cr2: 0x00007fff7cfd1fd8
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10e226000 -        0x112b02fbf +com.adobe.Photoshop (15.2.2 - 15.2.2.310)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/MacOS/Adobe Photoshop CC 2014
           0x1137f5000 -        0x113825fef +libtbb.dylib (0)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/libtbb.dylib
           0x113848000 -        0x11386dfff +libtbbmalloc.dylib (0)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/libtbbmalloc.dylib
           0x113899000 -        0x113998fff +com.adobe.amtlib (8.0.0.122 - 8.0.0.122)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1139ab000 -        0x1139adff7  com.apple.textencoding.unicode (2.7 - 2.7)  /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x1139b2000 -        0x113c72fcf +com.adobe.PlugPlugOwl (5.2.0.54 - 5.2.0.54)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x113f2c000 -        0x113fd7ff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.32401)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x114021000 -        0x1140dffff +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.32401)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x114133000 -        0x114139fff  org.twain.dsm (1.9.5 - 1.9.5)  /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x114142000 -        0x114155ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x114160000 -        0x114164fff  com.apple.agl (3.3.0 - AGL-3.3.0)  /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x11416f000 -        0x114369ff7 +com.adobe.owl (AdobeOwl version 5.2.4 - 5.2.4)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x1143b2000 -        0x1147a6ff7 +com.adobe.MPS (AdobeMPS 5.8.1.33340 - 5.8.1.33340)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x114826000 -        0x114854fff +VulcanControl.dylib (5.0.0.82 - 5.0.0.82 © 2013 Adobe Systems, Inc. All rights reserved.)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/VulcanControl.dylib
           0x11488b000 -        0x114bcefff +com.adobe.AGM (AdobeAGM 4.30.41.33308 - 4.30.41.33308)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x114c40000 -        0x114f65ff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.33308 - 5.15.00.33308)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x114fae000 -        0x114fd5ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x114fdf000 -        0x115003ff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.32260 - 3.8.0.32260)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x11502a000 -        0x115159fff +com.winsoft.wrservices (WRServices 8.0.0 - 8.0.0)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1151b7000 -        0x1151b8ff7  libCyrillicConverter.dylib (64)  /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x1151bd000 -        0x11530bff7 +com.adobe.ACE (AdobeACE 2.20.02.33308 - 2.20.02.33308)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x115323000 -        0x115342fff +com.adobe.BIB (AdobeBIB 1.2.03.33308 - 1.2.03.33308)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x11534d000 -        0x115406ff7 +com.adobe.JP2K (1.2.2 - 1.2.2.33078)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x11544e000 -        0x115452ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x11545e000 -        0x115512fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.6 -c 14 - 79.156797)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x1155be000 -        0x115b16fef +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/Cg.framework/Cg
           0x116185000 -        0x116211fff +com.adobe.headlights.LogSessionFramework (7.2.1.3399)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x116259000 -        0x116599fff +com.adobe.AIF (AdobeAIF 2014.0.00 - 2014.0.00)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x1166e6000 -        0x11670fff7 +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
           0x11672a000 -        0x11672cfff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x116734000 -        0x116776ff7 +VulcanMessage5.dylib (5.0.0.82 - 5.0.0.82 © 2013 Adobe Systems, Inc. All rights reserved.)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/VulcanMessage5.dylib
           0x1167bb000 -        0x1168b9ff7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.32260 - 3.8.0.32260)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x11696b000 -        0x116ac5fff +com.adobe.linguistic.LinguisticManager (8.0.0 - 20256)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x116b1a000 -        0x116b36ff7 +com.adobe.AIF (AdobeAIF 2014.0.00 - 2014.0.00)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
           0x116b4d000 -        0x116b99fff +com.adobe.AIF (AdobeAIF 2014.0.00 - 2014.0.00)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x116baa000 -        0x116c19ff7 +com.adobe.adobe_caps (adobe_caps 8.0.0.13 - 8.0.0.13)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x116c27000 -        0x116cf2fff +com.adobe.PM (AdbePM 2.2.00.32695 - 2.2.00.32695)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdbePM.framework/Versions/A/AdbePM
           0x11a1d1000 -        0x11a1eefff  libJapaneseConverter.dylib (64)  /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x11a1f3000 -        0x11a215ff7  libKoreanConverter.dylib (64)  /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x11a219000 -        0x11a228fff  libSimplifiedChineseConverter.dylib (64)  /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x11a22c000 -        0x11a23efff  libTraditionalChineseConverter.dylib (64)  /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x11df1b000 -        0x11df1bfef +cl_kernels (???)  cl_kernels
           0x11df29000 -        0x11df29fe7 +cl_kernels (???)  cl_kernels
           0x11df85000 -        0x11dfc4ff7 +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 8.0.0.14 - 8.0.0.14)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/updaternotifications.framework/Versions/A/UpdaterNotifications
           0x11e07a000 -        0x11e160fef  unorm8_bgra.dylib (2.4.5)  /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
           0x11e2a8000 -        0x11e2b7fff +com.vertustech.FluidMask3Plugin (3.3.13 - 3.3.13)  /Applications/Fluid Mask 3.app/Contents/MacOS/Fluid Mask 3.plugin/Contents/MacOS/Fluid Mask 3
           0x11e5d0000 -        0x11e5d4fff  com.apple.audio.AppleHDAHALPlugIn (269.25 - 269.25)  /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
           0x11ea78000 -        0x11ea7bfff +FastCore (???)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11ea82000 -        0x11eab1fff +MMXCore (???)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11eb29000 -        0x11ebb1fff +MultiProcessor Support (???)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x124c9d000 -        0x124d49fff  ColorSyncDeprecated.dylib (442)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x12501f000 -        0x12503ffff  com.apple.cmio.DAL.AppleCamera (400.5.29 - AppleCameraDeviceAbstractionLayer-5.29.0)  /Library/CoreMediaIO/*/AppleCamera.plugin/Contents/MacOS/AppleCamera
           0x1470cc000 -        0x1470ddfff +MeasurementCore (???)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x1470e3000 -        0x147325ff7 +com.adobe.PSAutomate (15.2.2 - 15.2.2)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x1473aa000 -        0x14749fff7 +com.adobe.AdbeScriptUIFlex (ScriptUIFlex 6.3.2 - 6.3.2.32394)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIFlex
           0x147533000 -        0x147559ff7 +com.adobe.ape (3.4.0.29366 - 3.4.0.29366)  /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
           0x149733000 -        0x14a6b8fef +com.adobe.ape.engine (3.4.0.29366 - 3.4.0.29366)  /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbeapeengine
           0x14d1fb000 -        0x14d234ff7 +com.adobe.pip (7.2.1.3399)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
           0x14d262000 -        0x14d266ff3  libFontRegistryUI.dylib (134)  /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
           0x1511ff000 -        0x1512e6fe7 +IMSLib.dylib (7.0.0.154 - 7.0.0.154)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/IMSLib.dylib
           0x151382000 -        0x1513fcff7  com.apple.xquery (1.3.1 - 30)  /System/Library/PrivateFrameworks/XQuery.framework/XQuery
           0x15800a000 -        0x15800affe +cl_kernels (???)  cl_kernels
           0x15800e000 -        0x15800efef +cl_kernels (???)  cl_kernels
           0x15a391000 -        0x15c9c8fef +com.adobe.CameraRaw (8.8.0 [397] - 8.8.0f397)  /Library/Application Support/Adobe/*/Camera Raw.plugin/Contents/MacOS/Camera Raw
           0x15cd4f000 -        0x15ce09fff + (???) 
           0x16a8b1000 -        0x16a93dfff  Tcl (8.4.19 - 8.4.19)  /System/Library/Frameworks/Tcl.framework/Versions/8.4/Tcl
        0x123400000000 -     0x1234004f7fff  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.2.46 - 10.0.2)  /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
        0x7fff638c5000 -     0x7fff638fb837  dyld (353.2.1)  /usr/lib/dyld
        0x7fff8bbf9000 -     0x7fff8bc6bff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8)  /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8bc6c000 -     0x7fff8bc86ff7  liblzma.5.dylib (7)  /usr/lib/liblzma.5.dylib
        0x7fff8bc87000 -     0x7fff8bcafffb  libRIP.A.dylib (775.16)  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8bcb0000 -     0x7fff8bccbff7  com.apple.aps.framework (4.0 - 4.0)  /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
        0x7fff8bcd1000 -     0x7fff8bcfdfff  libsandbox.1.dylib (358.1.1)  /usr/lib/libsandbox.1.dylib
        0x7fff8bcfe000 -     0x7fff8bd1bfff  libsystem_kernel.dylib (2782.10.72)  /usr/lib/system/libsystem_kernel.dylib
        0x7fff8bd1c000 -     0x7fff8bd25fff  libGFXShared.dylib (11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff8bd96000 -     0x7fff8bda3ff7  libxar.1.dylib (254)  /usr/lib/libxar.1.dylib
        0x7fff8bda4000 -     0x7fff8be1cff7  com.apple.SystemConfiguration (1.14 - 1.14)  /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8be7d000 -     0x7fff8be86ff3  com.apple.CommonAuth (4.0 - 2.0)  /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8be87000 -     0x7fff8beb0ffb  libxslt.1.dylib (13)  /usr/lib/libxslt.1.dylib
        0x7fff8beb1000 -     0x7fff8bec1ff7  libbsm.0.dylib (34)  /usr/lib/libbsm.0.dylib
        0x7fff8beda000 -     0x7fff8bedcfff  com.apple.loginsupport (1.0 - 1)  /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
        0x7fff8bedd000 -     0x7fff8bef4ff7  libLinearAlgebra.dylib (1128)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
        0x7fff8bef5000 -     0x7fff8befefff  libsystem_pthread.dylib (105.10.1)  /usr/lib/system/libsystem_pthread.dylib
        0x7fff8bf07000 -     0x7fff8c10146f  libobjc.A.dylib (647)  /usr/lib/libobjc.A.dylib
        0x7fff8c104000 -     0x7fff8c120ff7  libsystem_malloc.dylib (53.1.1)  /usr/lib/system/libsystem_malloc.dylib
        0x7fff8c15d000 -     0x7fff8c162fff  com.apple.DiskArbitration (2.6 - 2.6)  /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8c16d000 -     0x7fff8c174ff7  libcompiler_rt.dylib (35)  /usr/lib/system/libcompiler_rt.dylib
        0x7fff8c175000 -     0x7fff8c209fff  com.apple.ink.framework (10.9 - 213)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
        0x7fff8c20a000 -     0x7fff8c20aff7  libunc.dylib (29)  /usr/lib/system/libunc.dylib
        0x7fff8c2a3000 -     0x7fff8c2aeff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8c35f000 -     0x7fff8c3a8ff3  com.apple.HIServices (1.22 - 520.12)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
        0x7fff8c3a9000 -     0x7fff8c3acff7  libdyld.dylib (353.2.1)  /usr/lib/system/libdyld.dylib
        0x7fff8c3ad000 -     0x7fff8c3b5ff7  com.apple.AppleSRP (5.0 - 1)  /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8c3b6000 -     0x7fff8c3b7fff  libsystem_secinit.dylib (18)  /usr/lib/system/libsystem_secinit.dylib
        0x7fff8c3b8000 -     0x7fff8c6d3fcf  com.apple.vImage (8.0 - 8.0)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
        0x7fff8c6d4000 -     0x7fff8c6e6fff  libsasl2.2.dylib (193)  /usr/lib/libsasl2.2.dylib
        0x7fff8c6e7000 -     0x7fff8c721ffb  com.apple.DebugSymbols (115 - 115)  /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff8c722000 -     0x7fff8c72dff7  libcsfde.dylib (471.10.6)  /usr/lib/libcsfde.dylib
        0x7fff8c72e000 -     0x7fff8c730fff  libsystem_configuration.dylib (699.1.5)  /usr/lib/system/libsystem_configuration.dylib
        0x7fff8c731000 -     0x7fff8c75cfff  com.apple.DictionaryServices (1.2 - 229)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
        0x7fff8c75d000 -     0x7fff8c88fff7  com.apple.MediaControlSender (2.0 - 215.15)  /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
        0x7fff8c890000 -     0x7fff8cb38ff7  com.apple.RawCamera.bundle (6.03 - 777)  /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8cb39000 -     0x7fff8cbc2fff  com.apple.CoreSymbolication (3.1 - 57020)  /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
        0x7fff8cbc3000 -     0x7fff8cbc5ff3  com.apple.SafariServices.framework (10600 - 10600.4.10.7)  /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
        0x7fff8cbc6000 -     0x7fff8cc2dff7  com.apple.framework.CoreWiFi (3.0 - 300.4)  /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8cc2e000 -     0x7fff8cd22fff  libFontParser.dylib (134.1)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8cd23000 -     0x7fff8cf26ff3  com.apple.CFNetwork (720.2.4 - 720.2.4)  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8cf27000 -     0x7fff8cf43fff  com.apple.GenerationalStorage (2.0 - 209.11)  /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
        0x7fff8cf44000 -     0x7fff8cf46fff  libCVMSPluginSupport.dylib (11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
        0x7fff8cf47000 -     0x7fff8cf71fff  GLRendererFloat (11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
        0x7fff8cf8a000 -     0x7fff8cf8aff7  libkeymgr.dylib (28)  /usr/lib/system/libkeymgr.dylib
        0x7fff8cf8b000 -     0x7fff8d477ff7  com.apple.MediaToolbox (1.0 - 1562.107)  /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8d49d000 -     0x7fff8d49efff  liblangid.dylib (117)  /usr/lib/liblangid.dylib
        0x7fff8d49f000 -     0x7fff8d4a7fff  libMatch.1.dylib (24)  /usr/lib/libMatch.1.dylib
        0x7fff8d4a8000 -     0x7fff8d563ff7  com.apple.DiscRecording (9.0 - 9000.4.2)  /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8d564000 -     0x7fff8d568fff  libpam.2.dylib (20)  /usr/lib/libpam.2.dylib
        0x7fff8d569000 -     0x7fff8d577ff7  com.apple.opengl (11.1.1 - 11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d578000 -     0x7fff8d582ff7  com.apple.NetAuth (5.0 - 5.0)  /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8d583000 -     0x7fff8d584fff  libSystem.B.dylib (1213)  /usr/lib/libSystem.B.dylib
        0x7fff8d959000 -     0x7fff8d99afff  libGLU.dylib (11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8d99b000 -     0x7fff8d9d6fff  com.apple.Symbolication (1.4 - 56045)  /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff8d9d7000 -     0x7fff8db07fff  com.apple.UIFoundation (1.0 - 1)  /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
        0x7fff8db08000 -     0x7fff8db40fff  com.apple.RemoteViewServices (2.0 - 99)  /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
        0x7fff8db8a000 -     0x7fff8dbb8fff  com.apple.CoreServicesInternal (221.2.2 - 221.2.2)  /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
        0x7fff8dbd3000 -     0x7fff8ddb8ff3  libicucore.A.dylib (531.31)  /usr/lib/libicucore.A.dylib
        0x7fff8ddb9000 -     0x7fff8ddc1ffb  libcopyfile.dylib (118.1.2)  /usr/lib/system/libcopyfile.dylib
        0x7fff8ddc2000 -     0x7fff8ddd4ff7  com.apple.ImageCapture (9.0 - 9.0)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
        0x7fff8de07000 -     0x7fff8de08fff  libDiagnosticMessagesClient.dylib (100)  /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8de09000 -     0x7fff8de1cff7  com.apple.CoreBluetooth (1.0 - 1)  /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff8de26000 -     0x7fff8de2afff  libspindump.dylib (182)  /usr/lib/libspindump.dylib
        0x7fff8de2b000 -     0x7fff8de30ff7  libunwind.dylib (35.3)  /usr/lib/system/libunwind.dylib
        0x7fff8de3d000 -     0x7fff8de43ff7  libsystem_networkextension.dylib (167.1.10)  /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8de7f000 -     0x7fff8dfeaff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12)  /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8dfeb000 -     0x7fff8e00bfff  com.apple.IconServices (47.1 - 47.1)  /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
        0x7fff8e00c000 -     0x7fff8e05dff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0)  /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8e05e000 -     0x7fff8e05efff  com.apple.quartzframework (1.5 - 1.5)  /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8e05f000 -     0x7fff8e082fff  com.apple.Sharing (328.3.2 - 328.3.2)  /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8e0f5000 -     0x7fff8e1d5fff  com.apple.QuickLookUIFramework (5.0 - 675.13)  /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V

    Is this a plugin you are developing or one you have purchased?
    If purchased, I would try to contact the company that made it.
    If you are developing, then I would get the original Dissolve (or other) example and make sure it is working correctly with the OK and in the Cancel scenario. If so, then copy that example and start modifying and working your way towards what you now have. You should be able to tell when things go wrong and that would help me figure out your crasher.

  • Images with Transparency

    I am wondering if anyone can tell me the best way to supply a designer with an image for Final Cut that will hold its transparent background when imported? The designer claims that the psd, tiff and jpg with alpha channels that I sent over will only import with a white background. How can we prevent the white background from happening?

    Welcome to the family.
    JPG doesn't support alpha so, umm, don't use that one.
    Test it before it leaves your shop. This simple operation saves lots of hassles with uptight Photoshop folks who have absolutely no clue what video is all about. Wait till she asks you for more dpi.
    There's no secret to exporting a still image with an alpha channel but there must be actual transparency and there must be no underlying layer in your sequence. What filter are you using to generate the key or matte? Is it rendered?
    From the information you have provided in your post, there's no way for us to know if your sequence is set up properly or that the element you are trying to export even has an alpha channel.
    bogiesan

  • How to handle transparent parts of layers in filter plugin?

    What is the right way to handle layers in a filter plugin so as to preserve the colors at the semi-transparent edges of the opaque parts of a layer?
    It seems the inData my plugin gets from Photoshop already has the image composited (based on the alpha channel) with a white background. So even if I just copy all the RGB and alpha data from inData back to outData, I end up with light-colored edges around the non-transparent parts of the layer. Simply setting inHiPlane=outHiPlane=3 (since all I really want to modify is the RGB data) doesn't seem to work either.

    Chris,
    I'm not sure what you mean by treating it as if there was no transparency. Simply copying the RGBA planes from inData to outData results in those light-colored edges. Likewise if I set inHiPlane=outHiPlane=3 and just copy the RGB planes.
    Can you tell me how to specify how the data should be matted? It seems to default to a white matte. Ideally, I would have thought I'd want to get from inData the color value at each pixel in the layer _before_ any matting is applied, along with the alpha values. Then for example, a red pixel at the edge that's 50% transparent would be RGBA = (255, 0, 0, 127). It seems like that's what my plugin needs to hand back to Photoshop (when I don't modify that pixel), in order for it to be able to correctly matte it against any background. Instead, what I get from inData is (255, 127, 127, 127), which then shows up when I hand it back as a pink pixel of 50% transparency on the edge. Can you tell me what I'm missing here?

  • HSB/HSL filter plugin problem

    After downloading the HSB/HSL filter plugin as an 8BF file in the Plug-Ins folder, the error message "cannot complete your request because it is not the right kind of document" pops up. What am I doing wrongly?

    That is the type of error you would see if you double-click the 8BF file. The file type is associated with Photoshop, so if you double-click the file, Photoshop will attempt to open it as if it were an image. Plug-in files just need to be in the plug-ins folder at the time Photoshop is launched for the plug-in to be used in Photoshop.

  • Find images with parent keyword tag only?

    I don't know how to describe this problem succinctly, so I don't know how to search for it in the knowledgebase or forums. Can anybody help?
    I want a keyword hierarchy with "US" as parent keyword of 50 states name keywords. I have many images with state keywords, but I also have some images that are tagged only with "US" but no state tag, as they are not specific to a state.
    How do I *easily* find only the images tagged "US" but with no state tags? Clicking on "US" in the keyword panel shows me all images tagged with "US" and all with state tags, but I just want the ones tagged "US".
    I can use "Find" to find "US" images NOT CONTAINING "AL AK AR AS AZ..." by enumerating all 50 states, but that's a terribly awkward way filter out images tagged with state names. I can't see a button or filter that shows only the images with a parent tag but without child tags
    Any ideas?
    Thanks ahead of time,
    Dave

    John, this seemed like a great idea.  I tried it, and it seemed to work.  There was an immediate problem because when there are lots of keywords it means a lot of scrolling and it can be hard to locate rail among rain rate rails etc. because the font is so small.  A second problem was that you are forced to mouse scroll - cant page down or up or use home or end. That can be a lot of scrolling. a third problem is that it seems you have to reselect flat view each time.
    a more serious problem is that it seems to have stopped working.  I'm not quite sure what i did but i have a keyword verb with 5 items and about 1125 child keywords (such as to sing to run etc.) for 1125 photos   i click on the verb arrow in the keywords so i bring up 1125 pictures of verbs.  now i go to metadata switch to flat view.  i can now see "verb" as a keyword in the metadata panel, but when i click on it, nothing happens - I still have 1125 selected photos.  Furthermore i cannot click on any other keyword in the metadata panel - that is nothing happens when i click.  if I return it to hierarchical view it is fine.  then Lightroom 4 64-bit stopped working.  when i restarted the program it was still in flat view and i was now able to click on the metadata panel and see appropriate collections.  then it stopped working again after i clicked on the keyword panel (but did not actually select anything).  in total i have about 3000 keywords and about 100000 photos on local and network drives.  it looks to me like flat view has some serious problems, but perhaps its something i am doing.... 
    i also have to say that even if it worked perfectly, i still might prefer other solutions because scrolling up and down for 3000 keywords can be tedious - its difficult to prevent overshooting and undershooting the mark.  if the keyword and metadata panels could be undocked that would probably be a big help.

  • Filter plugin - Pixels become grey when alpha set below 50 (ish)?

    Hi,
    My filter plugin modifies the alpha channel values of various pixels and I noticed that when an 8 bpc pixel's alpha is set below 50 (or so) that the pixel ends up turning grey, as if the R,G,B values were all set to the same value. Is this Photoshop's behaviour when painting/compositing pixels that are very transparent or am I confused? :-)
    Thanks,
    Neil

    Thanks for your replies.
    My prefs are set to show the transparency checkerboard, and my code is directly modifying the RGBA values of 8 bpc pixels. The '50' I referred to above was the actual alpha channel uint8 value, not a percentage.
    The following is the code I'm using to test with. I put it in the DoFilter() function, at line 401, in the Dissolve sample project and disabled the for loop that iterates over the planes. I'm using the CS2 SDK and am testing with PS CS3.
    I'm testing with a PSD with 2 layers in RGB 8 bpc mode. The background layer is entirely black and I've tried filling the foreground layer with various solid colors to test with. I'm applying the filter to this foreground layer.
    1. With a color of 255,0,0 after applying the filter the new color (in the Info palette, or with the eye dropper) is 40,0,0.
    2. With a color of 0,200,0 the filter changes it to 0,0,0.
    3. With a color of 200,255,0 the filter changes it to 0,40,0.
    4. With a color of 180,215,87 the filter changes it to 215,215,215. This is what made me think it was turning to gray.
    -------- Begin --------
    // Get RGBA interleaved pixel channels
    gFilterRecord->outLoPlane = gFilterRecord->inLoPlane = 0;
    gFilterRecord->outHiPlane = gFilterRecord->inHiPlane = 3;
    // update the gFilterRecord with our latest request
    *gResult = gFilterRecord->advanceState();
    if (*gResult != noErr) return;
    uint8 *pixel = (uint8 *)gFilterRecord->outData;
    const int32 dataRowBytes = gFilterRecord->outRowBytes;
    VRect tileRect = GetOutRect();
    const int32 tileHeight = tileRect.bottom - tileRect.top;
    const int32 tileWidth = tileRect.right - tileRect.left;
    const int32 tileByteWidth = tileWidth * 4;
    for (int32 pixelY = 0; pixelY < tileHeight; ++pixelY)
    for (int32 pixelX = 0; pixelX < tileWidth; ++pixelX)
    pixel += 3; // Skip RGB
    *pixel++ = 40;
    pixel += (dataRowBytes - tileByteWidth);
    -------- End --------
    Thanks,
    Neil

  • Photoshop CS3 crashing when working on image with layer mask

    I've never had problems with Photoshop CS3 (or any other version) until now.
    Here's the problem:
    I created an image that has a layer mask applied to it. The image is saved in one layer (named Layer One) but not flattened in order to retain a transparent background. So far so good.
    But when I try to exapnd the canvas or make other changes to the image, it crashes. Repeatedly.
    Do I have to apply the mask (and thus give up the transparency) to prevent crashes?
    I did find a workaround. Applied the mask, made a cast drop shadow (which is what I was after all along), then copy-and-pasted the drop shadow into the original layer-masked image with transparent background.
    But is this the only way? Am I experiencing a bug or is something else wrong?
    Thanks!

    You create a new user account
    and it will show you where the corruption is. in the old user account or in the system or application.
    It a method of troubleshooting.

  • Still image with motion has flicker pulsating problem

    I use FCP 5.0.4
    I have read the many threads about this subject and am still not able to succeed in getting rid of the flicker/pulsating in a still image with motion.
    I would say about 25% of the stills with motion have the jitters; all the rest look great.
    The first thing I tried was
    Effects:Video Filters:Video:Field Shift:none
    as well as
    Effects:Video Filters:Video:Flicker Filter min, med, and max.
    Maybe 5% were corrected with this, but the other 20% still had the jitters even after using a combination of the above or by themselves.
    I just burned a test DVD using a variety of the persistently jittery stills from my current project and although the jitters change a bit, they were still there so all of these failed:
    1. Effects:Video Filters:Video:De-interlace Upper (odd)
    2. Effects:Video Filters:Video:De-interlace Flicker Filter minimal
    3. Effects:Video Filters:Video:De-interlace Flicker Filter max
    4. Effects:Video Filters:Color Correction:Broadcast Safe conservative 115
    5. Effects:Video Filters:Video:Flicker Filter max
    6. All the tricks together which means
    Effects:Video Filters:Video:De-interlace set at Upper (odd)
    Effects:Video Filters:Video:Flicker Filter max
    Effects:Video Filters:Video:Shift Fields: none
    Effects:Video Filters:Color Correction:Broadcast Safe conservative 115
    I know this issue has been kicked around a lot and i know some folks are not happy that it has to be kicked around at all. But I am doing something wrong because my DVDs look very un-PRO. Would anyone like to talk me through this nightmare preferably with as many details as possible since I am obviously missing something critical.
    Thanks in advance.

    There is no 'secret formula'. It just takes thinking through the issues.
    1. Set the image size for each image that makes sense within the context of your project. Going significantly larger than the displayed area of that image (including movement) is just asking FCP to do additional work to resize the image. FCP is less sophisticated at resizing images than Photoshop. Use Photoshop and your planning of the movie to get the images to the appropriate size.
    2. Wasted effort and totally irrelevant- you could set it to 7200 dpi if it makes you feel better.
    3. Good idea - be sure to knock down areas of pure or very bright white. These are the elements that will give you the most trouble.
    4. Don't do this unless you want to throw away HALF the picture information. Deinterlace deletes half the picture and then photoshop recreates it through interpolation of the remaining half of the picture. Why do this?
    5. Make your determination based on what works. If you have properly exposed and sized the material, the need to blur is greatly reduced. ONLY do it on the images that need it. Why degrade every image if you do not need to do so?
    6. See number 5
    7. Lay out your time line early, view the work on an external broadcast monitor and only mess about with the images that require it.
    In the psycho business they have term for much of the referenced post - it's called superstitious behavior. Basically it comes down to "It worked before so we recommend it to everyone without regard to their situation" ... here's another example:
    Many years ago in my architecture practice, we had one of the early 512k macs (upgraded from the 128k!) I needed to show one of the interns how to create a project budget spread sheet in Excel. Inadvertently I clicked on Word, said "oops", closed it and opened Excel and we went to work.
    A week later I was walking by the computer and overheard the same intern explaining how to work with Excel to another architect. "First you open Word, close it, THEN you open Excel", she explained. When asked by her 'trainee', why do you have to open Word first, wouldn't it just be easier to simply open Excel? Her answer was just perfect, "Well, it works every time, what's wrong with that?" so it goes ...
    good luck with your project.

  • Using images with Transparency in Photobooks

    I'm to a point where I would like to use images that utilize transparency in Aperture photo books. Is this possible? So far, PSD files that I've cropped with PS's lasso tools to have transparent areas surrounding their subject tend to change this area to white when dropped into a book.
    Does anyone know of a way or format to use to retain this transparency? I love the speed of Aperture's photobook tools, along with export and printing options, and would like to be able to layer images that bleed together, or have a cut-out subject on top of others, but I haven't noticed a way as of yet.
    Is this ability even available in Aperture yet?
    If not, is there a third party plugin that gives it to the user when making photo books?
    Please let me know soon, else i'm going to have to adjust my workflow back to photoshop only for page set layouts and the created PSD files on blank book pages- not fun.

    i have been trying different ways to make it work fine, and find several things to consider:
    Note: for the next ways i tried with images with transparency.
    1 searching images in the iPad with safari and saving it into Photo app
    then copying it with the popup and pasting it with the popup inside Pages or Keynote:
    work fine.
    2 using the saved images that worked fine in the first way but
    then inside Pages in my opened document, using the menu to import the image from the
    Photo app, to insert the same downloaded image used in the first case:
    does not work, the image appears with a white background.
    3 trying the first way (manually copying and pasting) but with the images i imported from
    my MacBook Pro using the normal way via iTunes(10.1.1 (4))
    does not work, some images appears with a black background, other images
    appears with a white background.
    4 trying with the images of the third way, but changing the method using the photo app
    menu from Pages
    does not work as in the third way
    i dont have problem using transparency images in the first complex way.
    my problem is when i try to use images with transparency in the other three normal ways.

Maybe you are looking for

  • Printing Barocdes on XML Publisher output

    Hii, My requirement is to print the barcodes for few fields in the output. We have developed the report in XML Publisher 5.6.3. As per Oracle i need to create a Class file and then Call that Class file from Template. I am done with the Class file wit

  • Strange Itunes Problem? (Songs Will No Longer Play)

    Alot of my songs have just randomly stopped working lately. When I try to play certain songs nothing happens. They won't start playing (and there is no question mark next to the song asking me to locate the file). If I right click on the song and sel

  • Problem in logon to my application

    Hello all, I have an application written using JHeadstart and JDeveloper 9.0.5. When I run the application logon page via Jdeveloper (embedded OC4J) I can login without any problem. But when I run the deploy version of the application I have a logon

  • Installing 10.3 on a B/W G3 problem

    I have a blue & white G3 400Mhz that I'm trying to install OS X 10.3 on. I have the full retail install of 10.3. The G3 is running 9.2.2. When I insert the install disc, open the Installer, and click on the "Restart" button, I get the following messa

  • Customize portal "Help" link based on user roles

    Is there a chance to customize the Help link URL in Masthead iView based on user roles? The use case we have is that the "Help" should be different for users of the purchasing company from those of the supplying company. Thanks.