Try to use Merge to HDR...

Try to use Merge to HDR and Photoshop CC stop working...I don't know why it keeps doing, please help.

Meredith:
Thanks for being willing to help but since the post you referred to things have happened.  The latest update to Photoshop solved the Content Aware Fill not working in 64 bit and the HDR Merge problem, etc. not working in 64 bit was solved by Chris Cox (Adobe employee) determining it was an OS corruption issue.  I used Font Doctor to isolate them and after their removal everything is now working fine.
Regards,
Herman R.

Similar Messages

  • I'm operating CS5 on iMac 10.10.2..Q.  The last two or three times I have tried to use "Merge to HDR Pro" it will not complete the task and closes down.  How do I fix it...I have restarted the system but no help...RDGS, Mike Frey

    I 'm operating CS5 on iMac 10.10.2.....Q.the last two or three times I have tried to use "Merge to HDR Pro" the aplication quits with no image...I have restarted the system which does not solve the problem. 

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

  • Missing keyword when try to use MERGE

    I have COUNT_STATISTICS table that needs to be updated daily.
    MODEL
    NEW_COUNT
    NEW_DATE
    OLD_COUNT
    OLD_DATE
    PRNCT_CHANGE
    XEDHRD
    5206358
    21-AUG-13
    0
    19-AUG-13
    (null)
    XLIMS
    72669230
    21-AUG-13
    72669230
    20-AUG-13
    0
    XEDHRD
    5206358
    22-AUG-13
    5206358
    21-AUG-13
    0
    XLIMS
    72859644
    22-AUG-13
    72669230
    21-AUG-13
    0.262
    so on and so forth...
    Sometimes I have a new MODEL name coming in and I have to account for that and create a row in the table in that case.
    Other times, all I have to do is INSERT new row in the table with new values.
    Simple right?
    Well, I was trying to use MERGE INTO but it is giving me problems...
    This is what I did assuming I manually went in the table and added a new MODEL name and zeros for other columns before I did insertion...
    #!/bin/bash
    MODEL=$1
    sqlplus -S username/password << EOF
    whenever sqlerror exit 1;
    set echo on
    set verify off
    INSERT INTO SEMANTIC.COUNT_STATISTICS(MODEL,NEW_COUNT,NEW_DATE,OLD_COUNT,OLD_DATE)
    SELECT MODEL,
            SELECT COUNT(*)
            FROM TABLE(SEM_MATCH(
                    ?s ?p ?o
             }',SEM_Models('$MODEL'),NULL,
            SEM_ALIASES(SEM_ALIAS('','http://VISION/DataSource/SEMANTIC#')),NULL))
        SYSDATE,
        NEW_COUNT,
        NEW_DATE
    FROM SEMANTIC.COUNT_STATISTICS
    WHERE MODEL = '$MODEL'
    AND NEW_DATE = (
                    select max(NEW_DATE)
                    from SEMANTIC.COUNT_STATISTICS
                    where MODEL = '$MODEL'
    update SEMANTIC.COUNT_STATISTICS
    set prnct_change =
       (NEW_COUNT-OLD_COUNT)/NULLIF(OLD_COUNT,0)*100
    where model = '$MODEL'
    AND NEW_DATE = (
                    select max(NEW_DATE)
                    from SEMANTIC.COUNT_STATISTICS
                    where MODEL = '$MODEL'
    COMMIT;
    exit;
    EOF
    Now I added MERGE in front of INSERT so it checks if the MODEL name doesn't exist-it creates it:
    MERGE INTO SEMANTIC.COUNT_STATISTICS s
    USING (SELECT '${MODEL}' AS MODEL, 0 AS NEW_COUNT, SYSDATE AS NEW_DATE,
      0 AS OLD_COUNT, SYSDATE AS OLD_DATE FROM dual) t
    on (s.MODEL = t.MODEL)
    when not matched then
    INSERT (s.MODEL, s.NEW_COUNT, s.NEW_DATE, s.OLD_COUNT, s.OLD_DATE)
    VALUES (t.MODEL, t.NEW_COUNT, t.NEW_DATE, t.OLD_COUNT, t.OLD_DATE);
    My code combined...
    #!/bin/bash
    MODEL=$1
      sqlplus -S username/password << EOF
      whenever sqlerror exit 1;
      set echo on
      set verify off
      MERGE INTO SEMANTIC.COUNT_STATISTICS s
      USING (SELECT '${MODEL}' AS MODEL, 0 AS NEW_COUNT, SYSDATE AS NEW_DATE, 0 AS OLD_COUNT, SYSDATE AS OLD_DATE FROM dual) t
      on (s.MODEL = t.MODEL)
      when not matched then
      INSERT (s.MODEL, s.NEW_COUNT, s.NEW_DATE, s.OLD_COUNT, s.OLD_DATE)
      VALUES (t.MODEL, t.NEW_COUNT, t.NEW_DATE, t.OLD_COUNT, t.OLD_DATE);
      exit;
    EOF
    model_exists () {
      sqlplus -s username/password <<!
        set heading off
        set feedback off
        set verify off
        set pages 0
        SELECT count(MODEL)
        FROM SEMANTIC.COUNT_STATISTICS
        where MODEL ='$MODEL' AND TO_DATE(NEW_DATE, 'DD-MON-YY') = TO_DATE(SYSDATE, 'DD-MON-YY');
        exit;
    modelcount=$(model_exists $1)
    if [ "${modelcount:-0}" -ne 0 ]; then
        sqlplus -S username/password << EOF
        whenever sqlerror exit 1;
        set echo on
        set verify off
        INSERT INTO SEMANTIC.COUNT_STATISTICS(MODEL,NEW_COUNT,NEW_DATE,OLD_COUNT,OLD_DATE)
        SELECT MODEL,
      SELECT COUNT(*)
      FROM TABLE(SEM_MATCH(
      '{?s ?p ?o }',SEM_Models('$MODEL'),NULL,
      SEM_ALIASES(SEM_ALIAS('','http://VISION/DataSource/SEMANTIC#')),NULL))
        SYSDATE,
        NEW_COUNT,
        NEW_DATE
        FROM SEMANTIC.COUNT_STATISTICS
        WHERE MODEL = '$MODEL'
        AND NEW_DATE = (
      select max(NEW_DATE)
      from SEMANTIC.COUNT_STATISTICS
      where MODEL = '$MODEL'
      COMMIT;
      exit;
    EOF
    else
       sqlplus -S  username/password << EOF
      whenever sqlerror exit 1;
      set echo on
      set verify off
      UPDATE COUNT_STATISTICS
      SET  MODEL = '$MODEL',
      NEW_COUNT = (SELECT COUNT(*) FROM TABLE(SEM_MATCH('{?s ?p ?o}',SEM_Models('$MODEL'),NULL,
      SEM_ALIASES(SEM_ALIAS('','http://VISION/DataSource/SEMANTIC#')),NULL))
      NEW_DATE  = SYSDATE,
      OLD_COUNT = NEW_COUNT,
      OLD_DATE  = NEW_DATE
      WHERE MODEL = '$MODEL'
      AND NEW_DATE = (
      select max(NEW_DATE)
      from SEMANTIC.COUNT_STATISTICS
      where MODEL = '$MODEL'
      COMMIT;
      exit;
    EOF
    fi
    sqlplus -S username/password << EOF
      whenever sqlerror exit 1;
      set echo on
      set verify off
      update COUNT_STATISTICS
      set prnct_change =
        (NEW_COUNT-OLD_COUNT)/NULLIF(OLD_COUNT,0)*100
      where model = '$MODEL'
      AND NEW_DATE = (
      select max(NEW_DATE)
      from SEMANTIC.COUNT_STATISTICS
      where MODEL = '$MODEL'
      COMMIT;
      exit;
    EOF
    But this is creating two rows if it is a new MODEL, ie:
    ./load_myScript.sh  MODELNAME
    MODEL
    NEW_COUNT
    NEW_DATE
    OLD_COUNT
    OLD_DATE
    PRNCT_CHANGE
    MODELNAME
    72669230
    22-AUG-13
    0
    22-AUG-13
    (null)
    MODELNAME
    0
    22-AUG-13
    0
    22-AUG-13
    (null)
    This is not what I want. I want to create a new row if it doesn't exist and then update that same one for that day. But tomorrow it should INSERT a new one for that same MODEL name.
    Does anyone see what I am doing wrong?

    Hi,
    MODEL is an Oracle keyword, so it causes confusion to have a column named MODEL.  Errors like "Missing Keyword" can occur when  Oracle thinks you're talking about the MODEL clause, rather than the column.
    The best solution is not to use Oracle keywords (as found in v$reserverd words) for you own column names, or other identifiers.  MODEL_NAME and MODEL_ID are good names for columns
    If you really must use that column name, qualify it with the table name, and/or put the column name in double-quotes (case-sensitive), e.g.
    count_statistics."MODEL"

  • How much of the RAW tonal range is conserved when using "Merge to HDR Pro"?

    Hello,
    I am wondering how much tonal range is saved when making a HDR image with Photoshop? I have three photographs with an EV diference of 3. I can combine them into one HDR file just fine, but I can't turn one of them into an HDR file. This has made me wonder the following. If Photoshop is unable to turn one RAW image into a 32-bit image, then how much range is lost in the conversion process? If I try to open a RAW file in Photoshop for saving into a EXR. file for instance then I notice that Photoshop simply turns my image into an ordinary 8-bit per channel image.
    I am using a camera with a very good CMOS sensor and the RAW data that my camera produces is of a very high tonal range. It would be a shame if Photoshop discards said range. This is a question that is very hard to Google since everyone that is using HDR is obsessed with tonemapping. I have to clarify that I don't care about tonemapping I just need the range. I would love to have an official Adobe employee answer some of my questions.
    So these are my questions:
    Why can't Photoshop turn a single RAW file into a 32-bit image by using HDR Pro?
    Does the fact that Photoshop can't turn a single RAW into a 32-bit image mean that all the range is lost when merging many RAW files?
    Does anyone know of a way to capture the full dynamic range of a single RAW image without using time consuming nonsense like virtual bracketing?
    If there is a way. How would you combine many 32-bit images into a single 32-bit image in order to maximize range.
    Why is no one else wondering about these things?

    I am looking forward to an anwer concerning the HDR preview-result-difference as well... Since some posts suggest to check out the color profile of the input files, i did so: they are both sRGB. And the immense change of saturation and brightness (in other examples even worse than below)  couldn't be explained by a different profile anyway, IMHO.
    working parameters:
    Adobe Brigde CS6 (Tools/Photoshop/HDR PRO)
    Adobe Photoshop CS6
    sRGB both input and output...

  • Can not use "merge to HDR" or "open as smart object" etc.

    For some reason everything below the "Edit in Photoshop CS3" is grayed out. It makes no difference if I am trying to convert a jpg or nef file. Any ideas?

    You need 10.0.1, and there are issues with that version properly updating. Do a search and you may find those issues.

  • Photoshop crashes every time I try to use "HDR Toning" option or text tool... WHYYYY???

    So i hit the little "T" text tool, and i get the generic Windows 7 "This program has encountered a program and needs to close" error. I click out of the error box, and all my work disappears as well as any changed preferences and recently opened files. The same happens when i try to use Image>Adjustments>HDR Toning. Yay. And what's funny is BOTH errors display a fault module of "CoolType.dll." ARGH.
    I have tried EVERYTHING that everyone has posted about on every computer-related forum that i could find. NOTHING has worked at all. I deleted every single font minus the system fonts, including anything mentioning them in the system registry. Tried new copy of the dll file, nothing. Reset Photoshop preferences, nothing. System restore failed. Uninstall/reinstall of entire Adobe Master Collection failed. I am about to throw my computer through a wall.
    Oh, and in the 32-bit version, HDR Toning works but the text tool gives me an error message that "something prevented the text engine from being initialized." And, well, i just don't want to use the 32-bit version.
    I have a lot of work to get done, so if someone could help me find the answer to this issue once and for all, that would be awesome. Thanks.

    Details matter.  Note that some of the dates/sizes differ from the fonts in my list.
    You have several in there from before Windows 7 was released, and some of the fonts have been updated since Windows 7 was first released via Windows Updates.  These are the fonts on my working system that correspond to those you listed.  The differences are highlighted in red.
    05/10/2011  06:30 PM           778,552 arial.ttf
    06/10/2009  04:43 PM             6,336 cga40woa.fon
    06/10/2009  04:43 PM             4,304 cga80woa.fon
    06/10/2009  04:43 PM            36,656 dosapp.fon
    06/10/2009  04:43 PM             8,368 ega40woa.fon
    06/10/2009  04:43 PM        13,524,972 gulim.ttc
    06/10/2009  04:44 PM            26,672 marlett.ttf
    06/10/2009  04:44 PM           652,664 micross.ttf
    06/10/2009  04:43 PM        32,217,124 mingliu.ttc
    06/10/2009  04:43 PM         9,176,636 msgothic.ttc
    06/10/2009  04:43 PM        10,057,108 msmincho.ttc
    01/16/2011  07:32 PM           516,560 segoeui.ttf
    01/16/2011  07:32 PM           497,372 segoeuib.ttf
    01/16/2011  07:32 PM           385,560 segoeuii.ttf
    06/10/2009  04:44 PM            57,936 serife.fon
    06/10/2009  04:43 PM        15,323,200 simsun.ttc
    06/10/2009  04:44 PM            66,464 sserifee.fon
    05/10/2011  06:30 PM           700,180 tahoma.ttf
    06/29/2011  12:33 AM           191,344 verdana.ttf
    02/09/2011  03:30 PM           155,384 verdanab.ttf
    06/10/2009  04:44 PM             5,168 vgaoem.fon
    06/10/2009  04:44 PM             7,280 vgasys.fon
    I don't know what methods you're using to restore fonts to what they were when your system was new, but you've not been complete about it.
    I have a test system here that has had nothing but Windows 7 freshly installed and SP1 added.  I got a full listing of all the fonts shipped with Windows that should be on your system.  It has SIGNIFICANTLY more fonts in it than your system now has.  You need to strive to make your list of fonts better match this list:
    06/10/2009  04:43 PM            10,976 8514fix.fon
    06/10/2009  04:43 PM            10,976 8514fixe.fon
    06/10/2009  04:43 PM            11,520 8514fixg.fon
    06/10/2009  04:43 PM            10,976 8514fixr.fon
    06/10/2009  04:43 PM            11,488 8514fixt.fon
    06/10/2009  04:43 PM            12,288 8514oem.fon
    06/10/2009  04:43 PM            13,248 8514oeme.fon
    06/10/2009  04:43 PM            12,800 8514oemg.fon
    06/10/2009  04:43 PM            13,200 8514oemr.fon
    06/10/2009  04:43 PM            12,720 8514oemt.fon
    06/10/2009  04:43 PM             9,280 8514sys.fon
    06/10/2009  04:43 PM             9,504 8514syse.fon
    06/10/2009  04:43 PM             9,856 8514sysg.fon
    06/10/2009  04:43 PM            10,064 8514sysr.fon
    06/10/2009  04:43 PM             9,792 8514syst.fon
    06/10/2009  04:43 PM            12,304 85775.fon
    06/10/2009  04:43 PM            12,256 85855.fon
    06/10/2009  04:43 PM            12,336 85f1255.fon
    06/10/2009  04:43 PM            12,384 85f1256.fon
    06/10/2009  04:43 PM            10,976 85f1257.fon
    06/10/2009  04:44 PM            12,288 85f874.fon
    06/10/2009  04:43 PM            10,224 85s1255.fon
    06/10/2009  04:43 PM            10,608 85s1256.fon
    06/10/2009  04:43 PM             9,472 85s1257.fon
    06/10/2009  04:44 PM            10,240 85s874.fon
    06/10/2009  04:43 PM            50,468 ahronbd.ttf
    06/10/2009  04:43 PM           158,956 andlso.ttf
    06/10/2009  04:44 PM           109,808 angsa.ttf
    06/10/2009  04:44 PM           106,220 angsab.ttf
    06/10/2009  04:44 PM           103,444 angsai.ttf
    06/10/2009  04:44 PM           109,784 angsau.ttf
    06/10/2009  04:44 PM           106,236 angsaub.ttf
    06/10/2009  04:44 PM           103,408 angsaui.ttf
    06/10/2009  04:44 PM           105,592 angsauz.ttf
    06/10/2009  04:44 PM           105,636 angsaz.ttf
    02/05/2011  03:25 PM           222,356 aparaj.ttf
    02/05/2011  03:25 PM           215,860 aparajb.ttf
    02/05/2011  03:25 PM           228,456 aparajbi.ttf
    02/05/2011  03:25 PM           239,596 aparaji.ttf
    06/10/2009  04:43 PM            35,808 app775.fon
    06/10/2009  04:43 PM            36,672 app850.fon
    06/10/2009  04:43 PM            36,656 app852.fon
    06/10/2009  04:43 PM            37,296 app855.fon
    06/10/2009  04:43 PM            36,672 app857.fon
    06/10/2009  04:43 PM            37,472 app866.fon
    06/10/2009  04:43 PM            80,896 app932.fon
    06/10/2009  04:43 PM            70,000 app936.fon
    06/10/2009  04:43 PM            80,896 app949.fon
    06/10/2009  04:43 PM            70,000 app950.fon
    06/10/2009  04:43 PM           623,628 arabtype.ttf
    11/04/2010  06:59 PM           772,192 arial.ttf
    11/04/2010  06:59 PM           748,720 arialbd.ttf
    11/04/2010  06:59 PM           561,616 arialbi.ttf
    11/04/2010  06:59 PM           555,588 ariali.ttf
    06/10/2009  04:43 PM           119,876 ariblk.ttf
    06/10/2009  04:43 PM        16,264,732 batang.ttc
    06/10/2009  04:44 PM            89,656 browa.ttf
    06/10/2009  04:44 PM            75,424 browab.ttf
    06/10/2009  04:44 PM           100,224 browai.ttf
    06/10/2009  04:44 PM            89,616 browau.ttf
    06/10/2009  04:44 PM            75,416 browaub.ttf
    06/10/2009  04:44 PM           100,216 browaui.ttf
    06/10/2009  04:44 PM            89,376 browauz.ttf
    06/10/2009  04:44 PM            89,380 browaz.ttf
    06/10/2009  04:43 PM            10,992 c8514fix.fon
    06/10/2009  04:43 PM            13,552 c8514oem.fon
    06/10/2009  04:43 PM            17,760 c8514sys.fon
    06/10/2009  04:43 PM           811,052 calibri.ttf
    06/10/2009  04:43 PM           848,720 calibrib.ttf
    06/10/2009  04:43 PM           853,348 calibrii.ttf
    06/10/2009  04:43 PM           899,560 calibriz.ttf
    02/05/2011  03:25 PM         1,622,732 cambria.ttc
    02/05/2011  03:25 PM           792,488 cambriab.ttf
    02/05/2011  03:25 PM           827,080 cambriai.ttf
    02/05/2011  03:25 PM           805,864 cambriaz.ttf
    06/10/2009  04:43 PM           218,504 Candara.ttf
    06/10/2009  04:43 PM           226,564 Candarab.ttf
    06/10/2009  04:43 PM           226,604 Candarai.ttf
    06/10/2009  04:43 PM           228,304 Candaraz.ttf
    06/10/2009  04:43 PM             7,216 cga40737.fon
    06/10/2009  04:43 PM             6,352 cga40850.fon
    06/10/2009  04:43 PM             6,672 cga40852.fon
    06/10/2009  04:43 PM             6,672 cga40857.fon
    06/10/2009  04:43 PM             7,232 cga40866.fon
    06/10/2009  04:43 PM             7,216 cga40869.fon
    06/10/2009  04:43 PM             6,336 cga40woa.fon
    06/10/2009  04:43 PM             5,168 cga80737.fon
    06/10/2009  04:43 PM             4,320 cga80850.fon
    06/10/2009  04:43 PM             5,200 cga80852.fon
    06/10/2009  04:43 PM             4,640 cga80857.fon
    06/10/2009  04:43 PM             5,168 cga80866.fon
    06/10/2009  04:43 PM             5,168 cga80869.fon
    06/10/2009  04:43 PM             4,304 cga80woa.fon
    06/10/2009  04:43 PM           132,832 comic.ttf
    06/10/2009  04:43 PM           117,456 comicbd.ttf
    06/10/2009  04:43 PM           358,256 consola.ttf
    06/10/2009  04:43 PM           368,520 consolab.ttf
    06/10/2009  04:43 PM           364,864 consolai.ttf
    06/10/2009  04:43 PM           375,056 consolaz.ttf
    06/10/2009  04:43 PM           448,768 constan.ttf
    06/10/2009  04:43 PM           450,848 constanb.ttf
    06/10/2009  04:43 PM           447,772 constani.ttf
    06/10/2009  04:43 PM           454,588 constanz.ttf
    06/10/2009  04:43 PM           260,648 corbel.ttf
    06/10/2009  04:43 PM           274,388 corbelb.ttf
    06/10/2009  04:43 PM           269,048 corbeli.ttf
    06/10/2009  04:43 PM           279,400 corbelz.ttf
    06/10/2009  04:44 PM           108,572 cordia.ttf
    06/10/2009  04:44 PM            95,892 cordiab.ttf
    06/10/2009  04:44 PM           100,104 cordiai.ttf
    06/10/2009  04:44 PM           108,544 cordiau.ttf
    06/10/2009  04:44 PM            95,888 cordiaub.ttf
    06/10/2009  04:44 PM           100,100 cordiaui.ttf
    06/10/2009  04:44 PM            94,812 cordiauz.ttf
    06/10/2009  04:44 PM            94,816 cordiaz.ttf
    06/10/2009  04:43 PM            26,432 coue1255.fon
    06/10/2009  04:43 PM            26,544 coue1256.fon
    06/10/2009  04:43 PM            23,440 coue1257.fon
    06/10/2009  04:43 PM            35,888 couf1255.fon
    06/10/2009  04:43 PM            36,032 couf1256.fon
    06/10/2009  04:43 PM            31,760 couf1257.fon
    06/10/2009  04:43 PM           709,600 cour.ttf
    06/10/2009  04:43 PM           710,192 courbd.ttf
    06/10/2009  04:43 PM           530,336 courbi.ttf
    06/10/2009  04:43 PM            23,408 coure.fon
    06/10/2009  04:43 PM            23,440 couree.fon
    06/10/2009  04:43 PM            25,024 coureg.fon
    06/10/2009  04:43 PM            23,440 courer.fon
    06/10/2009  04:43 PM            25,024 couret.fon
    06/10/2009  04:43 PM            31,712 courf.fon
    06/10/2009  04:43 PM            31,776 courfe.fon
    06/10/2009  04:43 PM            33,344 courfg.fon
    06/10/2009  04:43 PM            31,808 courfr.fon
    06/10/2009  04:43 PM            33,360 courft.fon
    06/10/2009  04:43 PM           618,240 couri.ttf
    06/10/2009  04:43 PM             5,600 cvgafix.fon
    06/10/2009  04:43 PM            12,896 cvgasys.fon
    02/05/2011  03:25 PM           190,700 daunpenh.ttf
    06/10/2009  04:43 PM            56,528 david.ttf
    06/10/2009  04:43 PM            55,576 davidbd.ttf
    06/10/2009  04:49 PM                65 desktop.ini
    02/05/2011  03:25 PM           149,624 dokchamp.ttf
    06/10/2009  04:43 PM            36,336 dos737.fon
    06/10/2009  04:43 PM            36,816 dos869.fon
    06/10/2009  04:43 PM            36,656 dosapp.fon
    06/10/2009  04:44 PM           304,428 ebrima.ttf
    06/10/2009  04:44 PM           298,952 ebrimabd.ttf
    06/10/2009  04:43 PM             9,248 ega40737.fon
    06/10/2009  04:43 PM             8,384 ega40850.fon
    06/10/2009  04:43 PM             8,368 ega40852.fon
    06/10/2009  04:43 PM             8,704 ega40857.fon
    06/10/2009  04:43 PM             9,232 ega40866.fon
    06/10/2009  04:43 PM             9,248 ega40869.fon
    06/10/2009  04:43 PM             8,368 ega40woa.fon
    06/10/2009  04:43 PM             6,192 ega80737.fon
    06/10/2009  04:43 PM             5,328 ega80850.fon
    06/10/2009  04:43 PM             5,344 ega80852.fon
    06/10/2009  04:43 PM             5,648 ega80857.fon
    06/10/2009  04:43 PM             5,280 ega80866.fon
    06/10/2009  04:43 PM             6,192 ega80869.fon
    06/10/2009  04:43 PM             5,312 ega80woa.fon
    06/10/2009  04:43 PM           110,436 estre.ttf
    06/10/2009  04:43 PM           172,656 euphemia.ttf
    06/10/2009  04:43 PM           139,332 framd.ttf
    06/10/2009  04:43 PM           152,104 framdit.ttf
    06/10/2009  04:43 PM            63,732 frank.ttf
    02/05/2011  03:25 PM         1,804,512 Gabriola.ttf
    06/10/2009  04:43 PM           256,384 gautami.ttf
    06/10/2009  04:43 PM           221,268 gautamib.ttf
    06/10/2009  04:43 PM           157,080 georgia.ttf
    06/10/2009  04:43 PM           145,940 georgiab.ttf
    06/10/2009  04:43 PM           162,380 georgiai.ttf
    06/10/2009  04:43 PM           164,332 georgiaz.ttf
    06/10/2009  04:43 PM            72,932 gisha.ttf
    06/10/2009  04:43 PM            74,056 gishabd.ttf
    07/14/2009  01:32 AM            26,040 GlobalMonospace.CompositeFont
    07/14/2009  01:32 AM            26,489 GlobalSansSerif.CompositeFont
    07/14/2009  01:32 AM            29,779 GlobalSerif.CompositeFont
    07/14/2009  01:32 AM            43,318 GlobalUserInterface.CompositeFont
    06/10/2009  04:43 PM        13,524,972 gulim.ttc
    06/10/2009  04:43 PM            11,056 h8514fix.fon
    06/10/2009  04:43 PM            12,400 h8514oem.fon
    06/10/2009  04:43 PM            10,032 h8514sys.fon
    06/10/2009  04:44 PM           610,104 himalaya.ttf
    06/10/2009  04:43 PM             5,680 hvgafix.fon
    06/10/2009  04:43 PM             6,512 hvgasys.fon
    02/05/2011  03:25 PM           135,848 impact.ttf
    06/10/2009  04:43 PM           548,036 iskpota.ttf
    06/10/2009  04:43 PM           368,924 iskpotab.ttf
    06/10/2009  04:43 PM            12,896 j8514fix.fon
    06/10/2009  04:43 PM            14,432 j8514oem.fon
    06/10/2009  04:43 PM            10,656 j8514sys.fon
    06/10/2009  04:43 PM            41,584 jsmalle.fon
    06/10/2009  04:43 PM            38,480 jsmallf.fon
    06/10/2009  04:43 PM             6,528 jvgafix.fon
    06/10/2009  04:43 PM             7,728 jvgasys.fon
    06/10/2009  04:43 PM         5,178,844 kaiu.ttf
    06/10/2009  04:43 PM           212,356 kalinga.ttf
    06/10/2009  04:43 PM           205,636 kalingab.ttf
    06/10/2009  04:43 PM           131,264 kartika.ttf
    06/10/2009  04:43 PM           126,460 kartikab.ttf
    06/10/2009  04:44 PM           330,464 KhmerUI.ttf
    06/10/2009  04:44 PM           263,864 KhmerUIb.ttf
    02/05/2011  03:25 PM           201,680 kokila.ttf
    02/05/2011  03:25 PM           202,196 kokilab.ttf
    02/05/2011  03:25 PM           235,940 kokilabi.ttf
    02/05/2011  03:25 PM           241,672 kokilai.ttf
    06/10/2009  04:43 PM            97,516 LaoUI.ttf
    06/10/2009  04:43 PM            88,700 LaoUIb.ttf
    06/10/2009  04:43 PM           120,848 latha.ttf
    06/10/2009  04:43 PM           119,848 lathab.ttf
    06/10/2009  04:44 PM            97,752 leelawad.ttf
    06/10/2009  04:44 PM            97,420 leelawdb.ttf
    06/10/2009  04:43 PM           115,016 lucon.ttf
    06/10/2009  04:43 PM            56,856 lvnm.ttf
    06/10/2009  04:43 PM            54,804 lvnmbd.ttf
    06/10/2009  04:43 PM           325,400 l_10646.ttf
    06/10/2009  04:43 PM           370,084 majalla.ttf
    06/10/2009  04:43 PM           373,816 majallab.ttf
    06/10/2009  04:43 PM         4,337,296 malgun.ttf
    06/10/2009  04:43 PM         4,515,044 malgunbd.ttf
    11/04/2010  07:00 PM           206,260 mangal.ttf
    11/04/2010  07:00 PM           191,892 mangalb.ttf
    06/10/2009  04:44 PM            26,672 marlett.ttf
    06/10/2009  04:43 PM         9,533,888 meiryo.ttc
    06/10/2009  04:43 PM         9,749,256 meiryob.ttc
    06/10/2009  04:44 PM           652,664 micross.ttf
    06/10/2009  04:43 PM        32,217,124 mingliu.ttc
    06/10/2009  04:43 PM        33,805,700 mingliub.ttc
    06/10/2009  04:44 PM             8,704 modern.fon
    06/10/2009  04:44 PM           356,576 monbaiti.ttf
    06/10/2009  04:44 PM           342,840 moolbor.ttf
    06/10/2009  04:43 PM            51,996 mriam.ttf
    06/10/2009  04:43 PM            56,996 mriamc.ttf
    06/10/2009  04:43 PM         9,176,636 msgothic.ttc
    06/10/2009  04:43 PM        21,663,376 msjh.ttf
    06/10/2009  04:43 PM        14,512,072 msjhbd.ttf
    06/10/2009  04:43 PM        10,057,108 msmincho.ttc
    06/10/2009  04:43 PM           235,516 msuighur.ttf
    06/10/2009  04:43 PM        21,767,952 msyh.ttf
    06/10/2009  04:43 PM        14,602,860 msyhbd.ttf
    06/10/2009  04:44 PM           342,124 msyi.ttf
    06/10/2009  04:43 PM            84,940 mvboli.ttf
    06/10/2009  04:43 PM            56,832 nrkis.ttf
    06/10/2009  04:44 PM            82,864 ntailu.ttf
    06/10/2009  04:44 PM            75,552 ntailub.ttf
    06/10/2009  04:44 PM           438,016 nyala.ttf
    06/10/2009  04:44 PM           472,664 pala.ttf
    06/10/2009  04:44 PM           420,052 palab.ttf
    06/10/2009  04:44 PM           336,476 palabi.ttf
    06/10/2009  04:44 PM           413,824 palai.ttf
    06/10/2009  04:44 PM           146,496 phagspa.ttf
    06/10/2009  04:44 PM           150,228 phagspab.ttf
    06/10/2009  04:44 PM           118,824 plantc.ttf
    06/10/2009  04:43 PM            94,300 raavi.ttf
    06/10/2009  04:43 PM            93,800 raavib.ttf
    06/10/2009  04:43 PM            61,060 rod.ttf
    06/10/2009  04:44 PM            13,312 roman.fon
    06/10/2009  04:43 PM            11,056 s8514fix.fon
    06/10/2009  04:43 PM            12,384 s8514oem.fon
    06/10/2009  04:43 PM            17,760 s8514sys.fon
    06/10/2009  04:44 PM            12,288 script.fon
    06/10/2009  04:44 PM           172,732 segoepr.ttf
    06/10/2009  04:44 PM           172,092 segoeprb.ttf
    02/05/2011  03:25 PM           620,204 segoesc.ttf
    02/05/2011  03:25 PM           603,336 segoescb.ttf
    06/10/2009  04:44 PM           517,384 segoeui.ttf
    06/10/2009  04:44 PM           498,124 segoeuib.ttf
    06/10/2009  04:44 PM           386,344 segoeuii.ttf
    06/10/2009  04:44 PM           330,908 segoeuil.ttf
    06/10/2009  04:44 PM           398,976 segoeuiz.ttf
    06/10/2009  04:44 PM           406,192 seguisb.ttf
    06/10/2009  04:44 PM           516,684 seguisym.ttf
    06/10/2009  04:43 PM            62,944 sere1255.fon
    06/10/2009  04:43 PM            65,392 sere1256.fon
    06/10/2009  04:44 PM            59,024 sere1257.fon
    06/10/2009  04:43 PM            89,456 serf1255.fon
    06/10/2009  04:43 PM            95,488 serf1256.fon
    06/10/2009  04:44 PM            84,080 serf1257.fon
    06/10/2009  04:44 PM            57,936 serife.fon
    06/10/2009  04:44 PM            59,952 serifee.fon
    06/10/2009  04:44 PM            60,752 serifeg.fon
    06/10/2009  04:44 PM            63,296 serifer.fon
    06/10/2009  04:44 PM            61,024 serifet.fon
    06/10/2009  04:44 PM            81,728 seriff.fon
    06/10/2009  04:44 PM            85,360 seriffe.fon
    06/10/2009  04:44 PM            86,256 seriffg.fon
    06/10/2009  04:44 PM            90,736 seriffr.fon
    06/10/2009  04:44 PM            84,848 serifft.fon
    02/05/2011  03:25 PM           340,100 Shonar.ttf
    02/05/2011  03:25 PM           301,028 Shonarb.ttf
    06/10/2009  04:43 PM           270,172 shruti.ttf
    06/10/2009  04:43 PM           235,340 shrutib.ttf
    06/10/2009  04:43 PM        10,576,012 simfang.ttf
    06/10/2009  04:43 PM         9,751,960 simhei.ttf
    06/10/2009  04:43 PM        11,785,184 simkai.ttf
    06/10/2009  04:43 PM           116,376 simpbdo.ttf
    06/10/2009  04:43 PM           104,884 simpfxo.ttf
    06/10/2009  04:43 PM           124,628 simpo.ttf
    06/10/2009  04:43 PM        15,323,200 simsun.ttc
    06/10/2009  04:43 PM        15,406,288 simsunb.ttf
    06/10/2009  04:43 PM            25,216 smae1255.fon
    06/10/2009  04:43 PM            32,512 smae1256.fon
    06/10/2009  04:44 PM            24,672 smae1257.fon
    06/10/2009  04:43 PM            20,448 smaf1255.fon
    06/10/2009  04:43 PM            37,952 smaf1256.fon
    06/10/2009  04:44 PM            19,904 smaf1257.fon
    06/10/2009  04:44 PM            26,112 smalle.fon
    06/10/2009  04:44 PM            24,784 smallee.fon
    06/10/2009  04:44 PM            28,912 smalleg.fon
    06/10/2009  04:44 PM            24,832 smaller.fon
    06/10/2009  04:44 PM            29,200 smallet.fon
    06/10/2009  04:44 PM            21,504 smallf.fon
    06/10/2009  04:44 PM            19,600 smallfe.fon
    06/10/2009  04:44 PM            23,120 smallfg.fon
    06/10/2009  04:44 PM            19,760 smallfr.fon
    06/10/2009  04:44 PM            23,008 smallft.fon
    06/10/2009  04:43 PM            69,232 ssee1255.fon
    06/10/2009  04:43 PM            73,216 ssee1256.fon
    06/10/2009  04:44 PM            65,456 ssee1257.fon
    06/10/2009  04:44 PM            72,192 ssee874.fon
    06/10/2009  04:43 PM            95,840 ssef1255.fon
    06/10/2009  04:43 PM            67,328 ssef1256.fon
    06/10/2009  04:44 PM            90,336 ssef1257.fon
    06/10/2009  04:44 PM           102,400 ssef874.fon
    06/10/2009  04:44 PM            64,656 sserife.fon
    06/10/2009  04:44 PM            66,464 sserifee.fon
    06/10/2009  04:44 PM            65,328 sserifeg.fon
    06/10/2009  04:44 PM            68,848 sserifer.fon
    06/10/2009  04:44 PM            64,400 sserifet.fon
    06/10/2009  04:44 PM            89,856 sseriff.fon
    06/10/2009  04:44 PM            92,032 sseriffe.fon
    06/10/2009  04:44 PM            90,288 sseriffg.fon
    06/10/2009  04:44 PM            98,256 sseriffr.fon
    06/10/2009  04:44 PM            89,456 sserifft.fon
    06/10/2009  04:43 PM             5,680 svgafix.fon
    06/10/2009  04:43 PM            12,896 svgasys.fon
    06/10/2009  04:44 PM           228,348 sylfaen.ttf
    06/10/2009  04:44 PM            70,128 symbol.ttf
    06/10/2009  04:44 PM           697,972 tahoma.ttf
    06/10/2009  04:44 PM           647,184 tahomabd.ttf
    06/10/2009  04:44 PM            72,008 taile.ttf
    06/10/2009  04:44 PM            63,364 taileb.ttf
    11/04/2010  07:00 PM           834,240 times.ttf
    11/04/2010  07:00 PM           840,736 timesbd.ttf
    11/04/2010  07:00 PM           619,972 timesbi.ttf
    11/04/2010  07:00 PM           661,244 timesi.ttf
    06/10/2009  04:43 PM           172,976 tradbdo.ttf
    06/10/2009  04:43 PM           177,088 trado.ttf
    06/10/2009  04:44 PM           136,172 trebuc.ttf
    06/10/2009  04:44 PM           126,376 trebucbd.ttf
    06/10/2009  04:44 PM           133,716 trebucbi.ttf
    06/10/2009  04:44 PM           141,836 trebucit.ttf
    06/10/2009  04:43 PM           188,908 tunga.ttf
    06/10/2009  04:43 PM           174,896 tungab.ttf
    06/10/2009  04:44 PM            66,328 upcdb.ttf
    06/10/2009  04:44 PM            70,236 upcdbi.ttf
    06/10/2009  04:44 PM            71,248 upcdi.ttf
    06/10/2009  04:44 PM            70,912 upcdl.ttf
    06/10/2009  04:44 PM            75,300 upceb.ttf
    06/10/2009  04:44 PM            78,212 upcebi.ttf
    06/10/2009  04:44 PM            77,716 upcei.ttf
    06/10/2009  04:44 PM            74,048 upcel.ttf
    06/10/2009  04:44 PM            64,056 upcfb.ttf
    06/10/2009  04:44 PM            67,216 upcfbi.ttf
    06/10/2009  04:44 PM            67,424 upcfi.ttf
    06/10/2009  04:44 PM            64,900 upcfl.ttf
    06/10/2009  04:44 PM            71,080 upcib.ttf
    06/10/2009  04:44 PM            73,612 upcibi.ttf
    06/10/2009  04:44 PM            73,632 upcii.ttf
    06/10/2009  04:44 PM            71,068 upcil.ttf
    06/10/2009  04:44 PM            74,428 upcjb.ttf
    06/10/2009  04:44 PM            77,692 upcjbi.ttf
    06/10/2009  04:44 PM            76,456 upcji.ttf
    06/10/2009  04:44 PM            73,568 upcjl.ttf
    06/10/2009  04:44 PM            64,648 upckb.ttf
    06/10/2009  04:44 PM            68,872 upckbi.ttf
    06/10/2009  04:44 PM            68,140 upcki.ttf
    06/10/2009  04:44 PM            64,316 upckl.ttf
    06/10/2009  04:44 PM            54,260 upclb.ttf
    06/10/2009  04:44 PM            57,100 upclbi.ttf
    06/10/2009  04:44 PM            56,752 upcli.ttf
    06/10/2009  04:44 PM            54,264 upcll.ttf
    02/05/2011  03:25 PM           216,004 utsaah.ttf
    02/05/2011  03:25 PM           210,644 utsaahb.ttf
    02/05/2011  03:25 PM           218,956 utsaahbi.ttf
    02/05/2011  03:25 PM           239,152 utsaahi.ttf
    02/05/2011  03:25 PM           386,996 Vani.ttf
    02/05/2011  03:25 PM           370,576 Vanib.ttf
    02/05/2011  03:25 PM           188,184 verdana.ttf
    02/05/2011  03:25 PM           155,384 verdanab.ttf
    02/05/2011  03:25 PM           176,992 verdanai.ttf
    02/05/2011  03:25 PM           175,444 verdanaz.ttf
    06/10/2009  04:44 PM             5,168 vga737.fon
    06/10/2009  04:44 PM             5,168 vga775.fon
    06/10/2009  04:44 PM             5,232 vga850.fon
    06/10/2009  04:44 PM             6,160 vga852.fon
    06/10/2009  04:44 PM             5,120 vga855.fon
    06/10/2009  04:44 PM             5,552 vga857.fon
    06/10/2009  04:44 PM             5,184 vga860.fon
    06/10/2009  04:44 PM             5,184 vga861.fon
    06/10/2009  04:44 PM             5,200 vga863.fon
    06/10/2009  04:44 PM             5,184 vga865.fon
    06/10/2009  04:44 PM             6,128 vga866.fon
    06/10/2009  04:44 PM             5,184 vga869.fon
    06/10/2009  04:43 PM             7,232 vga932.fon
    06/10/2009  04:43 PM             6,272 vga936.fon
    06/10/2009  04:43 PM             6,304 vga949.fon
    06/10/2009  04:43 PM             6,272 vga950.fon
    06/10/2009  04:43 PM             5,952 vgaf1255.fon
    06/10/2009  04:43 PM             6,528 vgaf1256.fon
    06/10/2009  04:44 PM             5,376 vgaf1257.fon
    06/10/2009  04:44 PM             7,168 vgaf874.fon
    06/10/2009  04:44 PM             5,360 vgafix.fon
    06/10/2009  04:44 PM             5,376 vgafixe.fon
    06/10/2009  04:44 PM             6,112 vgafixg.fon
    06/10/2009  04:44 PM             5,600 vgafixr.fon
    06/10/2009  04:44 PM             6,112 vgafixt.fon
    06/10/2009  04:44 PM             5,168 vgaoem.fon
    06/10/2009  04:43 PM             7,104 vgas1255.fon
    06/10/2009  04:43 PM             7,648 vgas1256.fon
    06/10/2009  04:44 PM             6,656 vgas1257.fon
    06/10/2009  04:44 PM             8,704 vgas874.fon
    06/10/2009  04:44 PM             7,280 vgasys.fon
    06/10/2009  04:44 PM             6,608 vgasyse.fon
    06/10/2009  04:44 PM             7,008 vgasysg.fon
    06/10/2009  04:44 PM             6,912 vgasysr.fon
    06/10/2009  04:44 PM             6,912 vgasyst.fon
    02/05/2011  03:25 PM           171,192 vijaya.ttf
    02/05/2011  03:25 PM           154,072 vijayab.ttf
    06/10/2009  04:43 PM           259,520 vrinda.ttf
    06/10/2009  04:43 PM           257,672 vrindab.ttf
    06/10/2009  04:44 PM           121,664 webdings.ttf
    06/10/2009  04:44 PM            83,740 wingding.ttf
    I'm applying Windows Updates to that system and will update the above list when the very latest updates have been applied.
    -Noel

  • CS6 - Merge to HDR Pro fails to complete

    I'm running Win 7, 32-bit and just picked up LR 4.1 and CS6.  I've updated everything to the latest versions.  I'm shooting with a Nikon D800.
    I'm trying to merge 7 pictures using Merge to HDR Pro.  I've tried this using raw files (NEF) and converted JPG files.  I select the 7 files, PS comes up with the first picture showing.  It starts to process the second picture and the filename changes to something like Untitled_HDR1.  After a few seconds, that picture goes away and nothing else happens.
    Have I got my settings screwed up?
    Here is my System Info:
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x32
    Operating System: Windows 7 32-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2664 MHz
    Built-in memory: 3582 MB
    Free memory: 1542 MB
    Memory available to Photoshop: 1665 MB
    Memory used by Photoshop: 85 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTS 250/PCIe/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 1920
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTS 250
    OpenCL Unavailable
    Driver Version: 8.17.12.9573
    Driver Date: 20120209000000.000000-000
    Video Card Driver: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTS 250
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 8192
    Serial number: [removed by admin]
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6\
    Temporary file path: C:\Users\RandG\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 465.8G, 166.0G free
      E:\, 931.5G, 542.6G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libeay32.dll   The OpenSSL Toolkit   0.9.8g  
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.1
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Sumi-e 13.0
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       Portrait Professional 1, 4, 1, 0
       Twain Acquire 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       Twain Select 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices:
       WIA-Apple iPhone
       EPSON TWAIN 5

    From March 2012 Forum thread
    http://forums.adobe.com/message/4339337#4339337%234339337
    Although you are on Win7 32-bit, this may apply to your issue.
    There are some 32-bit XP-specific issues we're addressing before shipping that are related to memory.
    I'm pretty sure that's the issue you're running into. I'm sorry for the trouble it's causing you.
    Here are some suggestions to work around the issue. In the meantime, we'll work on helping XP-32 & Photoshop play nicely.
    Try a different memory setting (65%-ish. Try to give Photoshop ~1G and leave the rest to the system). Restart.
    Quit unnecessary applications.
    Try quitting Bridge and running Merge to HDR from File > Automate > Merge to HDR
    Other things to test out in the Performance Preference panel
             •  Try a larger or the largest Tile Size - you've got it set to smallest. Not sure which is better for this case.         •  Try lowering History States to 5.  Other, less likely, suspects:
    Corrupt prefs: Reset preference file: http://forums.adobe.com/message/4209421#4209421
    Same-named drive: Be sure there is no other directory is named identically to a folder in the Photoshop app path.
    Conflict with "Open Documents as Tabs = OFF" Prefrence (Interface) setting.
    Please let us know what ends up working best for your system.
    Thanks,
    Meredith
    Also, if Remove Ghosts = ON, it sometimes selects an extreme exposure as its base image (noted by green frame around the thumbnail in the dialog). Try selecting a different base image - just click on a different thumbnail.
    Are you still having issues after updating (Photoshop: Help > Updates...) ?
    Do any of these solve the problem for you?

  • Merge to HDR processes and then disappears

    I am using a Canon EOS 60D with AEB settings to have exposure levels of -2, 0, +2 with the drive mode set to take all 3 shots rapidly at once.
    I am using a tripod and remote to take the shots and all 3 are taken in about half a second with still-life subjects and in CR2 camera raw format.
    For some reason, when I use Merge to HDR Pro, it appears that the images are processing and then the window disappears. No file created, no merge to hdr pro window, nothing...
    I screen captured an example of the problem in action here: http://plirt.com/hdrfail.mov
    After searching tirelessly, I found one other person that had the same problem. He indicated that running updates resolved his problem. My CS5 suite is completely up to date and the problem still persists.
    Has anybody else seen this problem before?
    Any help would be appreciated.

    Hi Eric,
    Would you please try a few more things for us?
    Go to Photoshop > Preferences > Interface..
    View checkbox for Open Documents as Tabs.
    If it is OFF (unchecked), please turn it ON and click [OK].
    Retry Merge to HDR Pro...
    If that does not make the issue go away, then...
    Could you make a copy of your Preferences file someplace safe, then restart Photoshop with clean prefs.
    Here’s how:
    Close Photoshop.
    Make a copy of  ~/Library/Preferences/Adobe Photoshop CS5 Settings/
    Launch PS with Command, Option and Shift held down as it launches, click "Yes" when it asks if you want to delete the preferences file.
    If this magically cures the issue, please send us (Chris Cox and myself) your back-up of the original Preference File.
    Thanks for your help and patience,
    Meredith

  • Auto-align Layers and Merge to HDR Pro crashes

    Hi,
    Has anybody else experienced crashes with Merge to HDR Pro or Auto-align Layers? I was trying to use Merge to HDR Pro from Lightroom and was experiencing crashes every time after it had opened all of the images and merged them into a single document (but before the HDR Pro dialog box had come up).
    I've tested this further with opening each image individually and then trying to merge them as well as via Bridge and always get the same result.
    I had then decided to try layering the images and blend them to create my HDR image and that's when I found that Auto-align Layers was crashing as well. This leads me to believe that it's actually the auto-align functionality that's causing the crash rather than Merge to HDR Pro as I'm pretty sure that the merge functionality performs an auto-align as part of its steps.
    Any suggestions on how to fix this? I'm wondering if I may have to completely remove Photoshop. I can do this if necessary but if there's some other way to fix this I'd rather try that first.

    Okay, solved my own problem. I bit the bullet and did do a reinstall. I'd remembered that one of the previous Photoshop upgrades had failed (either 12.0.1 or 12.0.2) and I'd never gotten around to fixing it. Looking into that suggested reinstalling as the solution so I figured I should try uninstalling and reinstalling then apply all the upgrades and then try it again.
    This time the upgrades did go through properly and I was just able to do a merge to HDR pro successfully so it looks like that's fixed the issue.

  • Merge to HDR Pro not saving.

    I've been using PS for the past few years now, and moved onto CS5 last year. I recently decided to try out HDR photography after realising that there was an automerge. CS5 runs fine on my laptop (Windows Vista, 32 Bit) but when I use Merge to HDR Pro, the OK and Cancel buttons are not visible. I managed to work around this by using the Tab key, but after solving one problem, another has occured; the images aren't showing up on the home screen after I press the OK button. I've never had any problems with CS5 before, so not sure why it's doing this.
    Can anyone help?
    Thanks

    We've heard from Adobe that the dialog is supposed to size itself down by squeezing out some extra space when the screen is very small.  If you search hard enough you might find the thread on this forum.  I believe it was from about a year ago.
    Is your Photoshop fully up to date?
    What is your specific screen resolution?
    Have you checked to see if newer display drivers are available for your system (probably from the web site of the laptop maker).
    -Noel

  • Merge to HDR Pro asking (incorrectly?) to manually set EV

    Hi,
    I've got a large number of HDRI brackets for a time-lapse sequence, and while using Merge to HDR Pro in CC, some are merging to HDR automatically, while other bracket sets result in Photoshop asking me to manually set EV.
    All of my images are TIFs, all have gone through an identical process of saving to TIF from Lightroom after being worked on with Lightroom and LRTimelapse, so one of these two programs could potentially be having an effect.
    Normally I would assume that being asked to manually set EV means that metadata doesn't exist, however metadata appears to exist identically for both the brackets that work automatically, and also for those that don't. I've used my PLE version of Nuke to do a compare metadata, and all that changes is the shutter speeds as you'd expect for HDR, I can't see anything odd going on. Here's a single downsized tif bracket so you can check it yourself if you like: http://www.hyperfocaldesign.com/images/tifbracket.tif
    What can I look at to try and determine the problem? What other causes might there be for images not automatically merging?
    Thanks for any assistance,
    Regards,
    Jay

    I have had that happen, but not for a long time, and I think it was Photomatix anyway.  I'm pretty sure I'd exported TIFFs from Photoshop, but I can't remember how the EXIF was lost.  As far as using three versions of the same exposure, from a high dynamic range point of view, that became increasingly irrelevant as ACR got better and better.  You could still get a ‘look’ using apps like Photomatix on a single exposure, but I suspect even that has been superseded by all the Topaz and Nik type plugins available nowadays.
    This is just about the last time I used an HDR app on a single exposure, and it was taken getting on seven years ago (blimey I feel old) !!  Incidentally, it was very noisy, and there are a many hours worth of hand painting in it.   I still like the picture though, and have it on a canvas print on the wall behind my monitors.

  • Merge to HDR Pro is not in menu option under automate in Photoshop CS6.

    I am doing a Photoshop CS6 course.  One tutorial involves using "merge to HDR Pro" shioch shoule be in File - Automate.  I don't have this in my menu listing.  Does anyone know why this is and if it is possible to add it?  Thank you.

    Have you moved the application, or removed the scripts folder?

  • Tif merge to HDR camera raw

    I just created a 32bit TIF from three raw files using Merge to HDR from Bridge - no other changes applied.
    The resulting save as TIF file cannot be opened (no menu item to allow it in bridge) in ACR.
    If I take just one of the original raw files and convert it to a 32bit TIF, I CAN open that file in ACR.
    Anyone else with this issue in Photoshop CC 2014?
    Thanks
    R

    BTW I meant to add that the same file which is unrecognized for ACR open in Bridge CC does open in Lightroom 5.7.1

  • Merge to HDR Pro Issue

    Hello all, I'm going to give you as much information about this as possible in the first instance so we don't have to play post tag. In using Merge to HDR Pro in CS5, the process will allow me to pick the images I wish to use and being the process for about 15-20 seconds before displaying the message "The command "<unknown>" is not currently available. Once I click "ok" on the dialog box, the image disappears and I'm left with nothing. I am running 64-bit CS5 and Windows 7. 580 GB free of hard drive space and 6.0 GB of RAM with a AMD 640 processor 3.00 GHz. I can't remember if I have previously used HDR Pro on this particular system or not but know I did on CS4 on my laptop, any other time I had taken a single image and used plug-ins to get HDR like images. I've checked forum after forum and figure if anyone is going to know it would be here.

    Some weeks ago.
    A number of people have reported the updater not "seeing" the 12.0.4 release for them.  I'm not sure anyone's gotten to the root cause of why.
    You can explicitly update from here:
    http://www.adobe.com/support/downloads/product.jsp?product=39&platform=Windows
    (for English look near the top of the second section, entitled just "Version CS5")
    -Noel

  • Adobe Photoshop Cs5 Merge to HDR Bug 15' MacbookPro

    Hi,
    When I use Merge to HDR Pro in photoshop CS5 on my 15 macbookpro I can't click 'ok' or 'cancel' as well as not being able to chose which photo I want to keep as a merge photo.
    I saw some of the fixes but they didn't seem to work for me.
    Any help would appreciated as I didn't expect this to be an issue for photoshop CS5.
    Thanks, Chris.

    Hi,
    When I use Merge to HDR Pro in photoshop CS5 on my 15 macbookpro I can't click 'ok' or 'cancel' as well as not being able to chose which photo I want to keep as a merge photo.
    I saw some of the fixes but they didn't seem to work for me.
    Any help would appreciated as I didn't expect this to be an issue for photoshop CS5.
    Thanks, Chris.

Maybe you are looking for

  • IPad 4 video camera is zoomed in, how to unzoom?

    The photo feature seams to be fine but when I switch to video mode it seems that it is zoomed in. I cant figure out how to unzoom this, is it a bug or is it really how it is supposed to look? It doesn't look good... Thanks for the help

  • Why does my FaceTime not work

    Wondering why everytime i try to make a FaceTime call or someone else tries to FaceTime me, it does not work

  • Output message type triggering for all

    Hi, I want the output messages to be triggered for particular Vendor and doc type with ALE config. Now the config is such tht whenever the PO is created for doc type, the output type gets triggered for ALE partner . So need guidance. Thanks

  • Send data with profibus (Newbie)

    Hi, Im new to  labview and have only been working with PLC before so please have patience with my lw knowledge. Im trying to send some data (analog inputs) from labview to my Siemens S7 PLC using a Comsoft profiboard. I have got the communication to

  • Data wherehousing and Database Administration

    Dear All Currently I'm working as a Trainee DBA.I am really interesting to woyrking with Data wherehousing . Are there any relationship between these two fields? how I can learn more about the data wherehousing?