ToImage tiff file is huge

We have a Livecycle process that gathers data as xml and then merges the data with a form template using the GeneratePDF activity.  Later we take the generated PDF and convert it to a tiff with the Output toImage activity.  The PDF is 65k in size, but without compression, the generate tiff is around 200m. With compression we can get it down to around 1m to 2m.  At 1m the quality is not the same, noticeably less.  We store the tiff in our document repository where all document are stored as tiff's.  We have processes where we receive pdf documents from external sources and these pdf's convert to tiff's that are about the same size as the original pdf.
Are there settings/fixes we can use in the GeneratePDF and toImage processes that will help us get a tiff that is closer to the size of the original PDF?
Thanks
-Tim

Most files that are 36" tall by 96" long @ 300ppi will be rather big in Photoshop given that photoshop has to render each one of those pixels for each one of those layers. Note that photoshop interprets all objects as pixel information which can be very heavy with the exclusion of text, vector boxes, vector based objects unless rasterized of course. My assumption would be that the company's file was probably produced with mainly vector objects and extremely light png's and gif's from google earth therefore producing rather light files, not to exclude the possibility that the design was put together in a different program like indesign or illustrator which renders PDF's much lighter than photoshop would with the same assets. My suggestion would be to design any background or pixel based designs through Photoshop at a 1/4 size of print output with 300ppi or design at full size with 100ppi at max and then import the files either into indesign or illustrator and then finalize the text and content information from there.
Last thing to keep in mind, when you render a PDF in Photoshop, you render a "Photoshop PDF" which rasterizes any vector objects that Photoshop has produced, with the exception of imported vector objects. Therefore in your final output (banner) the text will be at 100ppi which is not ideal given that illustrator or indesign can produce the same quality file while maintaining the vector properties of the text and vector objects, plus the design process will be a lot less processor intensive.
Hope this was of help...
Best,
Van Poos

Similar Messages

  • .tiff file mystery: file size huge, but document size small

    Sorry for not finding a better way to word this, but this is the situation:
    We're working on a project, and received .tiff files from the photographer. The files were around 33MB each, and 4600px x 6500px.
    We've just opened the files today, and the files are still 33MB each, but the dimensions are now 222px x 295px.
    I've never seen anything like this before. I've tried looking online, but I'm not even that sure what to look for. We're waiting to have the original files sent over again from the photographer, but until that time, I wanted to know if anyone has ever encountered this problem.
    It seems like the fullsize information is still in the file, given the fact that the .tiff files are still the same size, it's just that even when you get info on the file, the doc size is tiny.
    I'm working on an Intel based Mac, using MAC OSX, and running CS3. I've tried opening these files on a PC, tried opening them with previous versions of Photoshop, and tried opening them with other programs. It seems to be a problem not with the programs, but with the files themselves.
    The files came with corresponding .xmp files, but I'm not familiar enough with them to know if this has anything to do with the issue.
    Sorry if I haven't worded this well, but I'd appreciate any advice if this sounds familiar at all. I've never come across this issue before.

    You will need a special plug-in most likely. The files are probably fine--you are getting a preview or thumbnail.
    Look Adobe DNG plugin or Phase One to process the files.
    alan

  • Server goes out of memory when annotating TIFF File. Help with Tiled Images

    I am new to JAI and have a problem with the system going out of memory
    Objective:
    1)Load up a TIFF file (each approx 5- 8 MB when compressed with CCITT.6 compression)
    2)Annotate image (consider it as a simple drawString with the Graphics2D object of the RenderedImage)
    3)Send it to the servlet outputStream
    Problem:
    Server goes out of memory when 5 threads try to access it concurrently
    Runtime conditions:
    VM param set to -Xmx1024m
    Observation
    Writing the files takes a lot of time when compared to reading the files
    Some more information
    1)I need to do the annotating at a pre-defined specific positions on the images(ex: in the first quadrant, or may be in the second quadrant).
    2)I know that using the TiledImage class its possible to load up a portion of the image and process it.
    Things I need help with:
    I do not know how to send the whole file back to servlet output stream after annotating a tile of the image.
    If write the tiled image back to a file, or to the outputstream, it gives me only the portion of the tile I read in and watermarked, not the whole image file
    I have attached the code I use when I load up the whole image
    Could somebody please help with the TiledImage solution?
    Thx
    public void annotateFile(File file, String wText, OutputStream out, AnnotationParameter param) throws Throwable {
    ImageReader imgReader = null;
    ImageWriter imgWriter = null;
    TiledImage in_image = null, out_image = null;
    IIOMetadata metadata = null;
    ImageOutputStream ios = null;
    try {
    Iterator readIter = ImageIO.getImageReadersBySuffix("tif");
    imgReader = (ImageReader) readIter.next();
    imgReader.setInput(ImageIO.createImageInputStream(file));
    metadata = imgReader.getImageMetadata(0);
    in_image = new TiledImage(JAI.create("fileload", file.getPath()), true);
    System.out.println("Image Read!");
    Annotater annotater = new Annotater(in_image);
    out_image = annotater.annotate(wText, param);
    Iterator writeIter = ImageIO.getImageWritersBySuffix("tif");
    if (writeIter.hasNext()) {
    imgWriter = (ImageWriter) writeIter.next();
    ios = ImageIO.createImageOutputStream(out);
    imgWriter.setOutput(ios);
    ImageWriteParam iwparam = imgWriter.getDefaultWriteParam();
    if (iwparam instanceof TIFFImageWriteParam) {
    iwparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
    TIFFDirectory dir = (TIFFDirectory) out_image.getProperty("tiff_directory");
    double compressionParam = dir.getFieldAsDouble(BaselineTIFFTagSet.TAG_COMPRESSION);
    setTIFFCompression(iwparam, (int) compressionParam);
    else {
    iwparam.setCompressionMode(ImageWriteParam.MODE_COPY_FROM_METADATA);
    System.out.println("Trying to write Image ....");
    imgWriter.write(null, new IIOImage(out_image, null, metadata), iwparam);
    System.out.println("Image written....");
    finally {
    if (imgWriter != null)
    imgWriter.dispose();
    if (imgReader != null)
    imgReader.dispose();
    if (ios != null) {
    ios.flush();
    ios.close();
    }

    user8684061 wrote:
    U are right, SGA is too large for my server.
    I guess oracle set SGA automaticlly while i choose default installion , but ,why SGA would be so big? Is oracle not smart enough ?Default database configuration is going to reserve 40% of physical memory for SGA for an instance, which you as a user can always change. I don't see anything wrong with that to say Oracle is not smart.
    If i don't disincrease SGA, but increase max-shm-memory, would it work?This needs support from the CPU architecture (32 bit or 64 bit) and the kernel as well. Read more about the huge pages.

  • (CS4) Why is Premiere CS4 modifying TIFF files in a sequence?

    Hello,
    decided to post here, because I didn't find any old postings of this subject anywhere.
    I'm composing 2-d drawn animation on AE and editing in Premiere, then importing to
    Avid media composer for exporting to Sony Digital Beta tape via SDI. When working in
    CS3 and earlier, everything was nice, AE made about 1730 kB TIFF files and Premiere
    kept them the same size, you just needed to select export -> movie... Tiff sequence,
    deselect recompress, select best quality and optimize stills. File sizes were the same,
    and I could rest assured that the original AE image quality was still there.
    Now in CS4, something fundamental has changed. AE CS4 still makes perfect TIFF
    animation frames (at 1024x576 same as CS3, about 1730kB and at 1050x576 about
    1770kB).
    So far, so good.
    In Premiere 2.0 and 3.0, you could select a preselection 720*576 pal widescreen
    composition and when exporting the edited animation would get the same pixel-level
    IQ as from a custom Desktop: 1024*576 square pixel composition, when using the
    Export movie described above. This to me looks like Premiere uses the original
    TIFF material.
    But in Premiere 4.0, something weird happens. If I use a 720*576 pal widescreen
    preset (with AE CS4 1050*576 animation sequences) and export 1050*576 pal
    widescreen square pixel image sequences, Adobe Media Encoder chops off 330
    square pixels and stretches the image horizontally for blurred, sad results.
    EXPORT MOVIE never did this!
    Having found that out, I use only custom-> desktop: 1024 or 1050 projects now,
    but here again something weird happens: Adobe Media encoder adds about 600kB
    to every TIFF frame, and I'm almost unable to notice the difference, but I would say
    that the images certainly don't look any better than the ones that were imported to
    Premiere, more on the opposite. So, in every option but when exporting one TIFF at
    a time Media Encoder alters the superb AE TIFFs.
    Why on earth does Adobe want to add a huge amount of useless bits, in animation
    the disk space required increases very significantly. What was wrong with the
    EXPORT MOVIE option?
    I'm asking should I just edit in Premiere 3 if I want unchanged, superb AE quality
    TIFF sequences? Premiere gives it when I export only 1 frame, but as soon as I tick
    "Export as sequence" it starts Adobe Media encoder which affects all frames, even
    those with no Premiere effects on them. Premiere 3 preserved original IQ even in
    PAL editing mode (export movie uncompressed) but Encoder in CS4 either
    loses 30% of the pixels or adds about 600kB more air!?!?!
    1050*576 is not a must for me because I want web movies to be 16:9 sqpix and
    the Avid where I work in prefers 1024*576 over 1050*576 in Digital Betacam tape
    exporting for uncompromised broadcasting results.
    This issue is affecting many animatiors here in Finland, in CS3 and earlier there
    were no problems because Premiere respected AE quality work, but now this Media
    Encoder has messed things up, not selecting Custom-desktop-1024/1050 will ruin any
    animation movie image sequence and selecting it makes files A LOT bigger without any
    improvement in IQ.
    I hope someone from Adobe could explain what on earth is going on in Premiere
    development? Many animation professionals in Finland are awaiting your kind reply.
    Anyone with a clue what's going on in the altering can give a hand!
    Olli Laamanen, Finland

    I did additional testing by comparing exported frames from Premiere
    to the AE frames. Only when I delete all render files before export, do I get
    the same image pixel-wise. But then there's the extra ~600kB of data.
    Does anyone know what that is, a colleague suggested it might be the color
    profile or some metadata added by adobe media encoder. I'd really like
    to know what it is! Someone who knows something about this Adobe
    Media Encoder might have the answer.
    So if you are using AE and Premiere to make animation and want to
    keep your master footage unchanged, the equivalent for CS3 export ->
    movie -> TIFF uncompressed is to
    -work only in desktop mode
    -delete all render files before exporting media through the encoder
    otherwise CS4 will change your images.
    Like this it doesn't change the images but adds over 30% additional
    data (somekind of tags/metadata)?
    Anyone with a guess what it is, please help!

  • PDF to TIFF conversion Tiff File Size problem after conversion

    Hi,
    I am able to convert the PDF file into multi page TIFF file using the below method. But i am getting a size of 1.3 mb for each page of TIFF file (noofpagesX 1.3 mb). it's huge size right? So Could any one please help me out how to decrease the size of the TIFF file? It's an urgent for me. help me out.....
    public static byte[] PDF2TIFF(byte[] bai, String imageType) {
    byte[] out = null;
    try {
    PdfDecoder decoder = new PdfDecoder();
    decoder.openPdfArray(bai);
    decoder.setSize(100, 100);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    BufferedImage image[] = new BufferedImage[decoder.getPageCount()];
    TIFFEncodeParam param = new TIFFEncodeParam();
    param.setCompression(TIFFEncodeParam.COMPRESSION_PACKBITS);
    param.setLittleEndian(true);
    param.setWriteTiled(false);
    if (decoder.isFileViewable()) {
    for (int i = 0; i < decoder.getPageCount(); i++) {
    int pageNumber = i + 1;
    BufferedImage imageTemp = decoder.getPageAsImage(pageNumber);
    System.out.println("Page Number."+pageNumber);
    image[i] = imageTemp;
    ImageEncoder encoder = com.sun.media.jai.codec.ImageCodec.createImageEncoder("tiff", baos, param);
    Vector vector = new Vector();
    for (int i = 1; i < image.length; i++) {
    vector.add(image);
    param.setExtraImages(vector.iterator());
    encoder.encode(image[0]);
    baos.flush();
    baos.close();
    decoder.closePdfFile();
    out = baos.toByteArray();
    catch (Exception e)
    e.printStackTrace();
    return out;
    Thanks
    Sha                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    For the Batch Sequence that "asks" --
    Something to try.
    Open the Batch Sequence dialog.
    Select the appropriate Batch Sequence.
    Click the Edit button.
    In the Edit Batch Sequence - <name of sequence> dialog, use item number 3's drop-down menu.
    From the menu, select 'Same folder as originals'.
    "OK" out of the dialog.
    Give the Batch Sequence a test run.
    Output ought to be to the same folder as that of the selected & processed files.
    Be well...

  • Show stopper: can't import tiff files with camera raw adjustments

    For RAW NEF files (coming from a Nikon D80), Aperture doesn't pick up adjustments I've made in ACR (Adobe Camera Raw) when I import them, even though the .xmp "sidecar" files are sitting there in the folder next to the them. Do I have to do something to get Aperture to pay attention to the .xmp files?
    Similarly, Aperture doesn't read ACR adjustments I've made to TIFF files. I've read on the web that adjustments made to TIFF files cannot be stored in "sidecar" xmp files. That's clearly true since I don't see the .xmp files sitting next to my tiff files in my image directory -- but my ACR adjustments are stored when I reload the TIFF files in ACR.
    In any case, Aperture doesn't seem to recognize either RAW files with sidecar .xmp info, or TIFF files that have ACR adjustments baked in.
    This is a show stopper for me and I'd love to use Aperture for its 'Faces' functionality. Does anyone know a fix for this issue?
    Thanks!
    Raphe

    Thanks for the reply, Kirby
    the kind of conversion you are talking about is likely a pipe dream.
    I gave it a quick look myself just now. the .lrcat file that lightroom has isn't binary & looks just like a huge list of adjustment data for entries in the database. For example, the curves on one of my images looks like this:
    ToneCurve = { 0,
    0,
    37,
    38,
    93,
    148,
    167,
    223,
    255,
    255 },
    So it wouldn't be difficult to write a .lrcat > .xmp exporter (basically going back from one Lightroom database to many .xmp files) or a batch .xmp > .lrcat exporter (going from many .xmp files to one Lightroom database).
    Looking at the contents of Aperture's .aplibrary package, there's an xml record of all files entered in the database, and I found what looks like image edits in the 'versions' folder -- but unfortunately the edits are stored in a binary format.
    Oh well, I guess this is why Aperture is a bit faster than Lightroom -- but will make it very difficult to write a converter to get edits into Aperture. & unless Apple adds edit info to their .xmp sidecar exporter (Export Masters) & includes a batch mode.. we wont be able to get info out of Aperture. So, for the moment, this apparent lack of an open format keeps Aperture from being a professional tool imho, compare to Lightroom.
    ..but for me there's no reason to switch from ACR to Lightroom because there's no facial recognition, and the curve editing utility is better in ACR.
    Thanks for the comments, David.
    I'll be sticking with ACR/Bridge for now -- I'd rather not split my library -- & hope that Lightroom adds some facial recognition functionality
    Besides this, Aperture seems like a really nice product.
    Cheers,
    Raphe

  • Not enough memory to load the tiff file

    I did a search for this problem and there were two threads about it but I can't post to them. I think they are archived. Unfortunately, there was no answer to this problem in there.
    The error "not enough memory to load tiff file" has been occuring in our shop on various computers with different resources. I believe that it has happened on our Mac as well. All are running Illustrator CS2 except the Mac which is running Illustrator CS3 and Leopard.
    Has there been any progress on what the problem is? Has anyone found a solution that doesn't involve having to resave tif files as other formats to get them into the original Illustrator document? Or a solution that does not involve a huge work around?
    I don't know the specs of all the computers in our shop but the one that I'm working on has the following specs:
    Pentium 4, 2.8 GHz with 2.5 GB of RAM
    Windows XP Pro Version 2002; service pack 3
    Any help would be appreciated.
    J.

    Photo Scaling for Video
    http://forums.adobe.com/thread/450798?tstart=0
    -Too Large = Crash http://forums.adobe.com/thread/879967?tstart=0

  • Saving large tiff files as jpeg

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

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

  • HELP - no luck opening large layered Tiff files

    I have a large, layered Tiff file which I am trying to open in Photoshop CS5 but every time I attempt to open it I get an error "unexpected end of file" it is HUGE, over 400MB I also can't flatten it as I need to be able to access the layers - any ideas?

    It sounds like the file may be damaged. If you have another copy from closer to its origin, try that instead.
    It is also possible the drive on which it is stored needs a pass of Disk Utility "Repair Disk"

  • How to show tiff files in sharepoint

    Hello,
    Ee have a bunch of scanned documents saved as tiff. How can I show them? Web app server won't preview them and this is a real big issue.
    On the other hand, websio does the job, but  I wouldn't like to have websio and web app server coexist.
    Is there anoter solution? I'm conmortable for a web part put in viewitem.aspx that shows the tiff file underneath the metadaa.
    Christos

    Hi,
    Below links seems to be the similar issue,
    http://social.msdn.microsoft.com/Forums/en-US/339fa5d3-1f77-462f-8b04-fd5efdf77479/opening-tiff-files-inbrowser?forum=sharepointgeneralprevious
    Let us know if that helped you or not.
    Regards,
    Purvish Shah

  • Process TIFF file from FTP server using File/FTP adapter

    Hi,
    I have a requirement to process a scanned document TIFF file from a directory on an FTP server using the File/FTP adapter and process through XI into a Web Service via a receiver SOAP adapter.
    My question is can the file/FTP adapter be used to process the TIFF file into XI from an FTP server ? Also, what settings need to be made on the file adapter to allow this file to be processed into XI ?
    Thanks in advance
    Colin

    hi colin,
    TIFF is type of image file, it can be converted to binary using java mapping
    refer this pdf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10dd67dd-a42b-2a10-2785-91c40ee56c0b
    regards
    Ramesh P

  • Open Tiff file error

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

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

  • Photoshop CS5 crashes every time I try to open a TIFF file, why is this?

    Here's the error log that I go through every time I try to open a TIFF file. Can someone help me out?
    -Dave
    Process:         Adobe Photoshop CS5 [11254]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0 (12.0x20100407.r.1103) (12.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [168]
    Date/Time:       2012-04-16 23:16:27.872 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          6730327 sec
    Crashes Since Last Report:           99
    Per-App Interval Since Last Report:  6005473 sec
    Per-App Crashes Since Last Report:   24
    Anonymous UUID:                      490E71C8-0C2F-4473-9BF0-40DD757A6CD7
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000155665008
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Error Formulating Crash Report:
    *** -[NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: Identifier)
    0x8656a766
    0x83c04f03
    0x8656a5a7
    0x8656a534
    0x8963ccee
    0x00005572
    0x8584d917
    0x0000541c
    0x00007fb4
    0x00008aa0
    0x0000ad72
    0x0000ab4f
    0x808654c0
    0x0000a256
    0x80858fd6
    0x80858e89
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.Photoshop                     0x00000001001a2332 0x100000000 + 1712946
    1   com.adobe.Photoshop                     0x00000001004ef7f0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2174132
    2   com.adobe.Photoshop                     0x00000001004f1730 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2182132
    3   com.adobe.Photoshop                     0x00000001004f2a00 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2186948
    4   com.adobe.Photoshop                     0x00000001004f2635 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2185977
    5   com.adobe.Photoshop                     0x00000001004f2c2b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2187503
    6   com.adobe.Photoshop                     0x00000001004f3233 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2189047
    7   com.adobe.Photoshop                     0x0000000100e9f7eb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12332207
    8   com.adobe.Photoshop                     0x0000000100ea0c21 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12337381
    9   com.adobe.Photoshop                     0x0000000100ea1409 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12339405
    10  com.adobe.Photoshop                     0x0000000100ea1804 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12340424
    11  com.adobe.Photoshop                     0x0000000100ea6126 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12359146
    12  com.adobe.Photoshop                     0x00000001004dd38f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2099283
    13  com.adobe.Photoshop                     0x00000001004de9b2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2104950
    14  com.adobe.Photoshop                     0x00000001004ee6ce AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2169746
    15  com.adobe.Photoshop                     0x000000010054dc32 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2560246
    16  com.adobe.Photoshop                     0x000000010054e5cb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2562703
    17  com.adobe.Photoshop                     0x00000001004b25ec AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1923760
    18  com.adobe.Photoshop                     0x00000001006b639a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4036702
    19  com.adobe.Photoshop                     0x000000010007bd37 0x100000000 + 507191
    20  com.adobe.Photoshop                     0x000000010006a997 0x100000000 + 436631
    21  com.adobe.Photoshop                     0x0000000100066c7b 0x100000000 + 420987
    22  com.adobe.Photoshop                     0x00000001012ee2a2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848742
    23  com.apple.Foundation                    0x00007fff896a0bc5 __NSFireTimer + 114
    24  com.apple.CoreFoundation                0x00007fff86506bb8 __CFRunLoopRun + 6488
    25  com.apple.CoreFoundation                0x00007fff86504d8f CFRunLoopRunSpecific + 575
    26  com.apple.HIToolbox                     0x00007fff882527ee RunCurrentEventLoopInMode + 333
    27  com.apple.HIToolbox                     0x00007fff88252551 ReceiveNextEventCommon + 148
    28  com.apple.HIToolbox                     0x00007fff882524ac BlockUntilNextEventMatchingListInMode + 59
    29  com.apple.AppKit                        0x00007fff81c00eb2 _DPSNextEvent + 708
    30  com.apple.AppKit                        0x00007fff81c00801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    31  com.apple.AppKit                        0x00007fff81bc668f -[NSApplication run] + 395
    32  com.adobe.Photoshop                     0x00000001012ee19c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848480
    33  com.adobe.Photoshop                     0x00000001012ef3c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16853131
    34  com.adobe.Photoshop                     0x0000000100068e82 0x100000000 + 429698
    35  com.adobe.Photoshop                     0x0000000100238308 0x100000000 + 2327304
    36  com.adobe.Photoshop                     0x00000001002383a7 0x100000000 + 2327463
    37  com.adobe.Photoshop                     0x0000000100002ea4 0x100000000 + 11940
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff80838c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8083aadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8083a7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8083a2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff80839c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff80839aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.amt.services                  0x0000000108723c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services                  0x000000010871ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services                  0x0000000108723cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff8081fdce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff83530186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011e81ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff8081fdce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff83530186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011e81ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff8081fdce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff83530186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011e81ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff8081fdce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff83530186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011e81ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff8081fdce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff83530186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011e81ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8081fdce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff83530186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011e81ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff8081fdce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff83530186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011e81ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                                0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                                0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                                0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                                0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                                0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                                0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                                0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085a8f9 nanosleep + 148
    2   com.adobe.PSAutomate                    0x0000000129a300fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x0000000129a12033 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate                    0x0000000129a301f6 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000013c4aa04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl                     0x000000013c26ba39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000013c4aa04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl                     0x000000013c26ba39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000013c4aa04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl                     0x000000013c26ba39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000013c4aa04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl                     0x000000013c26ba39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000013c4aa04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl                     0x000000013c26ba39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000013c4aa04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl                     0x000000013c26ba39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000013c4aa04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl                     0x000000013c26ba39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000013c4aa04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl                     0x000000013c26ba39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib                       0x00007fff8081fd7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff808203ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff86505902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff86504d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices           0x00007fff826ef5f7 MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices           0x00007fff826f11c2 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib                       0x00007fff8081fdda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8085e772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl                     0x000000013c4aa019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl                     0x000000013c63f8e5 APXGetHostAPI + 4091589
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib                       0x00007fff8081fdda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8085e772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl                     0x000000013c4aa019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl                     0x000000013c4c695c APXGetHostAPI + 2547516
    4   com.adobe.adobeswfl                     0x000000013c4aa161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl                     0x000000013c4aa2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl                     0x000000013c4aa3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 29:
    0   libSystem.B.dylib                       0x00007fff80863956 recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000012bf76982 Invoke + 54020
    2   ServiceManager-Launcher.dylib           0x000000012bf75adf Invoke + 50273
    3   ServiceManager-Launcher.dylib           0x000000012bf74b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib           0x000000012bf74b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib           0x000000012bf74c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib           0x000000012bf6f30d Invoke + 23695
    7   ServiceManager-Launcher.dylib           0x000000012bf6f4a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib           0x000000012bf6ff2f Invoke + 26801
    9   ServiceManager-Launcher.dylib           0x000000012bf7001d Invoke + 27039
    10  ServiceManager-Launcher.dylib           0x000000012bf7331f Invoke + 40097
    11  ServiceManager-Launcher.dylib           0x000000012bf735c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib           0x000000012bf73b84 Invoke + 42246
    13  ServiceManager-Launcher.dylib           0x000000012bf73d71 Invoke + 42739
    14  ServiceManager-Launcher.dylib           0x000000012bf65daf Login + 1773
    15  ServiceManager-Launcher.dylib           0x000000012bf67295 Login + 7123
    16  ServiceManager-Launcher.dylib           0x000000012bf742a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib           0x000000012bf766c1 Invoke + 53315
    18  libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    19  libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b091393 EntryFM + 2509987
    3   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   com.adobe.CameraRaw                     0x000000013adb0949 0x13abbe000 + 2042185
    6   com.adobe.CameraRaw                     0x000000013adafbb0 0x13abbe000 + 2038704
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   com.adobe.CameraRaw                     0x000000013adb0949 0x13abbe000 + 2042185
    6   com.adobe.CameraRaw                     0x000000013adafbb0 0x13abbe000 + 2038704
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   com.adobe.CameraRaw                     0x000000013adb0949 0x13abbe000 + 2042185
    6   com.adobe.CameraRaw                     0x000000013adafbb0 0x13abbe000 + 2038704
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   com.adobe.CameraRaw                     0x000000013adb0949 0x13abbe000 + 2042185
    6   com.adobe.CameraRaw                     0x000000013adafbb0 0x13abbe000 + 2038704
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   com.adobe.CameraRaw                     0x000000013adb0949 0x13abbe000 + 2042185
    6   com.adobe.CameraRaw                     0x000000013adafbb0 0x13abbe000 + 2038704
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 36:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   com.adobe.CameraRaw                     0x000000013adb0949 0x13abbe000 + 2042185
    6   com.adobe.CameraRaw                     0x000000013adafbb0 0x13abbe000 + 2038704
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 37:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83559d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff834c8ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff834c2efb MPWaitOnQueue + 215
    5   com.adobe.CameraRaw                     0x000000013adb0949 0x13abbe000 + 2042185
    6   com.adobe.CameraRaw                     0x000000013adafbb0 0x13abbe000 + 2038704
    7   ...ple.CoreServices.CarbonCore          0x00007fff8349b0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 38:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.CameraRaw                     0x000000013ac19933 0x13abbe000 + 375091
    3   com.adobe.CameraRaw                     0x000000013aef4d84 EntryFM + 820884
    4   com.adobe.CameraRaw                     0x000000013acbc6a0 0x13abbe000 + 1042080
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 39:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b092809 EntryFM + 2515225
    Thread 40:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b0926cb EntryFM + 2514907
    Thread 41:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b0926cb EntryFM + 2514907
    Thread 42:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b0926cb EntryFM + 2514907
    Thread 43:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b0926cb EntryFM + 2514907
    Thread 44:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b0926cb EntryFM + 2514907
    Thread 45:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b0926cb EntryFM + 2514907
    Thread 46:
    0   libSystem.B.dylib                       0x00007fff8081fdb6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                     0x000000013b061c51 EntryFM + 2315617
    2   com.adobe.CameraRaw                     0x000000013b0926cb EntryFM + 2514907
    Thread 47:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   com.adobe.CameraRaw                     0x000000013ac19933 0x13abbe000 + 375091
    3   com.adobe.CameraRaw                     0x000000013afc375b EntryFM + 1667179
    4   com.adobe.CameraRaw                     0x000000013acbc6a0 0x13abbe000 + 1042080
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 48:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x0000000106a5e22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106a68b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106a60e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 49:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x0000000106a5e22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106a68b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106a60e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 50:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x0000000106a5e22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106a68b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106a60e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 51:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x0000000106a5e22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106a68b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106a60e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 52:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x0000000106a5e22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106a68b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106a60e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 53:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x0000000106a5e22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106a68b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106a60e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 54:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x0000000106a5e22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106a68b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106a60e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libSystem.B.dylib                       0x00007fff80858fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80858e89 thread_start + 13
    Thread 55:
    0   libSystem.B.dylib                       0x00007fff8085aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8085e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x0000000106a5e22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106a68b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib          

    Boilerplate-text:
    Are Photoshop and OS fully updated and have you performed the usual trouble-shooting routines (trashing prefs by keeping command-alt-shift/ctrl-alt-shift pressed while starting Photoshop, 3rd party plug-ins deactivation, system maintenance, cleaning caches, font validation, etc.)?

  • Preview and iPhoto do not open correctly raw or tiff files: they appear in false color!

    Lately my macbook pro 13 ' with OS X Mountain Lion does not open files .raw correctly: they appear false color in "Preview" and also in iPhoto! What can I do?
    This only happens with .raw or .tiff files, not with jpeg pics.

    Lately my macbook pro 13 ' with OS X Mountain Lion does not open files .raw correctly: they appear false color in "Preview" and also in iPhoto! What can I do?
    This only happens with .raw or .tiff files, not with jpeg pics.

  • How do I get PSE 12 to save a TIFF file with file extension ".tiff" instead of ".tif"?

    I am using PSE 12 as an external editor for Aperture.  When I ask to use an external photo editor, Aperture creates a .tiff file in my Aperture folder, launches PSE 12 and tells it to edit that .tiff file.  This all works great.  When I am done editing in PSE 12, I ask it to save the file and it saves it back to the original Aperture folder with a .tif extension.  I can instead say "save as" and then it suggests the file name with a .tif extension.  When I correct the extension to .tiff it warns me that I'm going to overwrite the file (exactly what I want!).  I say yes and then I find out that PSE did not overwrite the file, but wrote it as a .tif file anyway.  I have to go to the folder, delete the .tiff file and rename the .tif file to .tiff and then everything is fine - but what a hassle.  Has anyone solved this problem?

    That's not quite where the problem lies, which is good, because you can't change that. The real solution is that you don't ever want to see the save as window in PSE if you are using PSE as external editor for any program. When you see it you aren't creating a version for your asset management program. Go to the PSE preferences>saving files>on first save and choose to save over existing file. That should do what you want.

Maybe you are looking for

  • Can no longer play certain voice memos

    I have two voice memos that will no longer play. One is from dec '09 and the other is from nov '09. They both have the duration of the memos, but when I press the play button, it does nothing but stop. I tried to sync all of my memos on itunes, but i

  • Java ME SDK 3.0-"Cannot connect to device manager" on port 1299 error HELP!

    Hello, I am running Vista 32 bit. I just downloaded the Java ME sdk 3.0. It installed "successfully". I just tried to launch it several times and it gets stuck in the error below. In summary, something about "Connection refused to host: localhost; De

  • How to use this forum's search

    Hi Is there an easy way to search just this forum? When using the "Search Forums" box at the top right, I get results from all different forums. I know I could go into "More options" or whatever its called, spend a minute or two finding the right For

  • Pasting settings to multiple images in Flimstrip

    Hi - this is probably a basic question but I may have missed the "how to." When I finish adjusting (in the Develop Module) and I click "copy" and select the items I want to copy, then what I want to do is apply (paste) these settings into a number of

  • Why is video footage lost on ipad after creating an imovie?

    Having created an imovie, why does video footage disappear , how can it be retrieved, any tips to prevent in future and while on the topic , how can a Dvd disc be created to create a hard copy of all imovies?