No more cr2 thumbnail images with ACR 5.3

I've downloaded ACR 5.3, uninstalling 5.3 candidate (Cs4, Windows XP) but a weird thing has happened: in Adobe Bridge all the cr2 and dng thumbnails do not show the images, but just the cr2 and dng logo. In others words I cannot see the raw thumbnails images as previews in Bridge before opening them in ACR.What am I missing?Is Bridge or ACR 5.3 the responsable?
Thank you in advance for any help.
Luca

Luca,
Did you download the Updater installer or did you attempt to update the plugin manually?
Thanks,
David Franzen
Adobe Systems, Inc.

Similar Messages

  • Adobe Camera RAW (All Versions) Import Canon .CR2 / RAW images with an orange / green color cast.

    All versions of Adobe Camera RAW including the latest 7.3 import .CR2 images with a greenish / orange color cast.
    Tested on 7D, and 5D III
    Makes Hardwood floors, and flesh tones look abysmal.
    Canon's Digital Photo Professional renders the colors fine, as does ACDSee 5.0 Pro (when viewing)  Exporting from ACDSee however is another story as things look even worse than Adobe.  DPP can export perfectly.
    Changes to Color Gammut / Space have little or no effect.

    Good day!
    You might want to post on the dedicated Camera Raw Forum.
    http://forums.adobe.com/community/cameraraw
    Also posting some screenshots might help illustrate the issue.
    Regards,
    Pfaffenbichler

  • XML Menu with thumbnail images

    Hello all,
    I am trying to create a dynamic menu for a video player. Much
    like the one found here (
    MTV OverDrive. )Obviously
    this is a Flash site and I can only assume the video list is being
    generated via XML. I am trying to accomplish the same thing, only I
    am not using FCS.
    I just want to create the buttons dynamically with thumbnail
    images and text via XML, and in turn load the video based on a
    button click. I have the video part working fine, using a video
    object, I just need to know how to create the buttons WITH THUMBS
    from an XML file. I can figure out how to load the video once the
    button is clicked. The problem is the menu itself and loading the
    different thumbnail with the button.
    I am sure it has something to do with "attachMovie,
    DuplicateMovie, or CreateEmptyMovieClip" but I am not sure how to
    do this with XML.
    I really want to stay away from using the pre-built
    components and want to code this myself so a list component is out
    of the question.
    I have search for many hours now and can not find anything
    that is like what I am looking for yet. So any help pointing me in
    the right direction would be much appreciated.
    From what I can gather it has something to do with creating
    what the button is going to look like (mainly the Background for
    mouse on and over states) and save it off as a MC then giving it a
    linkage ID. Within that MC I would think there would be another MC
    to hold the Thumbnail image with its own linkage ID and another MC
    that has a named dynamic text filed with it own linkage ID. Am I
    total off base here?
    Thanks

    Hi,
    On the same line I would suggest you to create an MC and put
    a button and a textField inside. Then using duplicate MC function,
    create instances of this MC according to the XML. For this, create
    XML nodes for each clip containing text, image to be displayed, URL
    for the video etc., and repeate the node for as many as you
    require. Then parse the XML in flash in an multi dimensional array.
    Then using length pf array duplicate your MC and populate the
    required menu. I guess this is enough for you.
    Anything else required do contact me!
    Cheers!!
    Shreeram

  • Thumbnail image does not appear

    Initial discussion on:
    http://forums.adobe.com/message/4862614
    Hi,
    Instead of writing this in the docs: "However, no thumbnails appear in articles that use the PDF image format", better yet place in the Thumbnail view a thumbnail image with crossed red diagonals and writing in the middle: "Not available for the PDF article format".
    It could also have "Click to generate thumbnail from PDF. This will can take a few seconds" functionality.
    Thanks,
    Gennady

    It's a long time since we generate only 'pdf folios', so we do not have any thumbnail any more in Folio Producer ...
    Is this features so difficult to implement?

  • Apple Preview application, view more than 15 images separately?

    Is it possible to view more than 15 images with out them being combined into one window with them combined? So all images show up separate even when you open more than 15 images??
    The only option is 'Open each file in its own window' which doesn't work for them all when you have over 15 images.

    bump

  • Image Raw CR2 Thumbnails

    When I press File Open in my PSE 11 and look for Camera Raw files, they all show PSE 11 icon which makes it hard to find where is the image I am looking for? How do you make these CR2 ehumbnails to show the actual image?
    Thanks

      Simply select a folder containing raw images in Organizer (click the two yellow pins to see the full folder structure) to edit in camera raw. Then right-click a CR2 thumbnail and choose Edit with Photoshop Elements Editor.

  • To print an Pie Chart image with more than 1 slice is not working

    Hi friends,
    I'm using a version 12.0.4 and when I try to generate an Pie Chart image with more than 1 slice using the function saveImage() it's not working. The image is only generate when its return is just 1 value (1 peace of pie).
    Anybody help me?
    Regards!

    It's not unique for your setup, but it also happens in 12.0.11, so it's a bug.  Looks like it is throwing a null pointer for some bizzare reason when generating the GIF output by the ImageStorageServlet (per the NW logs). 
    Your best bet would be to log a ticket so it can be patched.
    12.1.7 seems to work fine.
    Edited by: Michael Appleby on Nov 23, 2010 2:39 PM

  • Creating Thumbnail from an Image with transparent background

    Hello,
    I want to create a thumbnail image of size 200 x 200 pixels from an image of any size.
    As the thumbnail is square, I'm centering the image according to size.
    The code I'm using is working fine BUT after centering and resizing original image
    and writing it to output file the remaining area is of black color.
    I want the background should be transparent.
    Code I'm using is not using JAI.
    Please suggest me the solution.
    the code I'm using is as follows:
    public static void makeThumbnail(String inFile, String thumbFile ) throws Exception {
    Image image = Toolkit.getDefaultToolkit().getImage(inFile);
    MediaTracker mediaTracker = new MediaTracker(new Container());
    mediaTracker.addImage(image, 0);
    mediaTracker.waitForID(0);
    int fixedHeight = 200 ;
    int fixedWidth = 200 ;
    int imageWidth = image.getWidth(null);
    int imageHeight = image.getHeight(null);
    double imageRatio = 0.25 ;     
    int thumbHeight = (int)(imageHeight * imageRatio );
    int thumbWidth = (int)(imageWidth * imageRatio );
    int x = ( fixedWidth - thumbWidth )/2 ;
    int y = ( fixedHeight - thumbHeight )/2 ;
    System.out.println(thumbHeight + " - " + y );
    System.out.println(thumbWidth + " - " + x );
    // draw original image to thumbnail image object and
    // scale it to the new size on-the-fly
    BufferedImage thumbImage = new BufferedImage(fixedWidth, fixedHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D graphics2D = thumbImage.createGraphics();
    graphics2D.setColor( new Color( 255, 255, 255, 0) );
    int rule = AlphaComposite.SRC_IN ;
    AlphaComposite ac = AlphaComposite.getInstance(rule, 0.9f);
    graphics2D.setComposite(ac);
    graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,RenderingHints.VALUE_INTERPOLATION_BILINEAR);
    graphics2D.drawImage(image, x, y, thumbWidth, thumbHeight, null);
    // save thumbnail image to OUTFILE
    BufferedOutputStream out = new BufferedOutputStream(new    FileOutputStream(thumbFile));
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbImage);
    int quality = 60 ;
    quality = Math.max(0, Math.min(quality, 100));
    param.setQuality((float)quality / 100.0f, false);
    encoder.setJPEGEncodeParam(param);
    encoder.encode(thumbImage);
    }

    Change this line
    BufferedImage thumbImage = new BufferedImage(fixedWidth, fixedHeight,
              BufferedImage.TYPE_INT_RGB);
    ...to use a BufferedImage type that supports transparency like TYPE_INT_ARGB or TYBE_4BYTE_ABGR (I would recommend the latter since your saving the image).
    Also, btw, you're not going to like the quality of the thumbnail if the image is reduced by more then half its size.

  • Managing images with more than 72ppp

    Hello, my question is about image managing. I've to print some images with more resolution than 72ppp, and I don't know how to make it possible. Whatever the resolution of the image I handle is, I obtain the same result in my printer (only 72 ppp).
    Thanks.

    Take alook at the setPrinterResolution and setPrintQuality:
    int pRes = op.getWidth()/8;
    java.awt.PageAttributes pa = new java.awt.PageAttributes();
    pa.setPrintQuality(java.awt.PageAttributes.PrintQualityType.NORMAL);
    if(pRes<300) pa.setPrinterResolution(200);
    else pa.setPrinterResolution(300);

  • How can I use bridge to create web galleries with more than 10 images?

    I am new to building web galleris for my website. When i try to load more than 10 images in a gallery , Bridge cuts off all images beyond 10. I am confident that I can do this if i can find the right settings

    I am not at my PS computer right now, but I think the Preview only shows 10 images (for speed) but they will all be there in the final output.

  • Portfolio: Thumbnail gallery with the full size image appearing on a darkened opacity layer?

    I'm creating my photography website, and so far, my portfolio looks like this:
    but I want the images to be buttons. I know how to re-load them as buttons, but then I'm stuck... I want for the full size version of each image to appear on the screen, with the background greyed out, like this quickly photoshopped version:
    I've seen it done, but I just can't figure out how... I even downloaded a free template that had this, trying to replace the stock images with mine, but that didn't work either...
    Thanks!

    Use the 'Lightbox' widget to achieve this effect.
    Or if you used another slideshow widget, there should be a Lightbox button you can mark to change to this type of view.
    Double click the outside area when you change to Lightbox view (a dark box will appear around your image) to change the opacity of the background.

  • Help with creating thumbnail images

    Hi there
    I need some help with a webpage that displays images.
    I am capturing an internal xml file ..and want to display:
    An Image or images with a width of 130 px and height of 130
    px
    My problem is that when our users upload the pictures to the
    website ..they are not resized ..and they would not know how to use
    a program to do this.
    Is there a code or way to take the uploaded picture file and
    reduce it to a size of 130 x 130 in the existing page?
    It currently is displaying the full size image(s) which are
    take up 2 screens.
    thanks for your time ..Rob

    > Is there a code or way to take the uploaded picture file
    and reduce it to
    > a
    > size of 130 x 130 in the existing page?
    In the HTML you can just give it a width and height of those
    values.
    However, the full image is still loaded by the browser, so if
    the image is
    large, it's still going to be a bandwidth hog.
    Ideally, you'd resize on the server at time of upload. This
    can be done with
    various components depending on the particular back-end
    server/scripting
    language.
    -Darrel

  • Difference in TIFF and RAW import with ACR (how to fix)?

    I'm experimenting with a workflow, so whilst this may seem like an odd thing to want to make work, I have a geniune reason for doing what's described below:
    I have Canon CR2 RAW files from a 7D, Photoshop CS6 13.01 64bit, with ACR 7.1.0.354, running on Windows 7 64bit.
    1. I import a CR2 image via ACR, with no changes to any sliders; opening it as Adobe RGB (1998); 16bit
    2. I then save the image as a TIFF file, leaving "ICC Profile: Abode RGB (1998)" selected in the Color section of the file save dialog
    3. If I then close all files, and reopen the CR2 and TIFF image, they (as expected) appear to be identical
    4. After closing all files again, I then open the CR2 and make an exposure adjustment (e.g. -1.00)
    5. Using Bridge, I select the TIFF file, right click and select Open in Camera Raw. I make the same exposure adjustment as for the CR2
    6. Now, the adjusted CR2 and adjusted TIFF are different. A colour shift is noticable, and for a severe exposure change (i.e. +4.00) the shadow detail in the CR2 is a lot lighter
    Here are two cropped areas from the files (with a 4 stop push), showing some branch/leaf and grass detail respectively. The TIFF has a greener colour cast for the grass, but much darker shadows:
    TIFF
    RAW
    I appreciate that the CR2 is still a RAW file, and as such has the original Bayer pattern data, but is there any way I can make ACR adjustments to a TIFF (taken from a CR2) to behave in the same way as the original CR2?

    ssprengel, Jeff, JJMack - thanks for the constructive replies
    station_two - after your use of mildly aggressive language ("What seems to escape your grasp") in your first post, I had money that your subsequent response(s) would be on the lines of "I'm too busy to explain it to people like you". Thankyou for confirming my expectations (sometimes I wonder if some people engage in forum discussions for the sole purpose of trying to get themselves [and possibly others] riled)
    So... back to trying to find a construcive solution: If the algorthirms for the adjustments in ACR do operate directly on the Bayer data (before demosiacing to RGB per pixel) then operating on the TIFF (or any other demosaiced RGB data) will indeed be a non-starter. Without (probably unlikely) input from an Adobe developer however, we can't know for sure.
    > So RAW numbers after debayering to RGB are linear with numbers of photons within a particular color (R, G or B), while TIF numbers are assumed to be linear with human-vision sensitivity
    Understood (I'm familiar with gamma, camera sensor behaviour, exposing to the right etc). Ultimately though, it should be possible to produce an RGB file that is also linear (i.e. not adjusted for human vision) to then bring back into ACR. However, if that's simply not possible with ACR, then that's also a non-starter (and wouldn't help anyway if the adjustments operate on the Bayer data directly).
    I did look briefly into opening the RAW as a smart object, but sadly I didn't think that'd help. The goal I'm trying to achieve is an experimental idea to blend parts of images together from multiple exposures; but to achieve a single RAW file with that data as if it came from the camera (thus it could be brought into ACR to get the benefit of - from my point of view - the useful and intuitive adjustment sliders). Clearly that would require reverse engineering the particular RAW format for the camera being used (and each and every camera you'd want to support) - thus, it's not really practical.
    I'd hoped to be able to convert (without edits) the RAW images into TIFF (or some other lossless RGB container that I can read programmatically), do the blending to produce a single TIFF, and then bring that back into ACR.
    Whilst it's more convoluted, I suppose it might be possible to generate the unedited TIFF files purely for the purposes for getting data about the images, then using that to create a set of masks. Then, as Jeff suggests, perform adjustments to the RAW files in ACR, and use the masks to blend the imported (and now corrected) RAWs into one image. Not ideal, but perhaps worthy of more experimentation.

  • Bridge CS5 - setting to open selected images in ACR automatically?

    My CS3 Bridge opens all images (when I click on the thumbnail) in ACR, even jpgs.  How do I make this happen in CS5 Bridge ?
    I can open in ACR by going to "file > open", but is there a way to set it automatically ?  Sorry if there is an obvious answer, but I'm
    missing it if there is.  I just installed CS5 today. 
    Thanks... carolyn

    How do I make this happen in CS5 Bridge ?
    I can open in ACR by going to "file > open", but is there a way to set it
    automatically ?
    You can set this in the preferences. By default it is set to open only jpeg
    and tiff with settings (and that is really the only setting I want because I
    don't want to open ACR every time I open a jpeg or tiff file... )
    Under the menu Bridge you have two preferences, first Camera Raw and then
    Preferences (those are for Bridge)
    In the Camera Preferences you have at the bottom the ability to choose from
    3 options to open jpeg and tiff in ACR. Not at all, only those with ACR
    Settings and all the time.
    Also consider this workflow:
    Leave the default settings to open only files with settings and in Bridge
    Content panel select one or more files you want to alter in ACR. With right
    mouse click choose 'open in Camera Raw' from the sub menu.
    If you already have altered files and want to fine tune them just double
    click to open them in ACR (those have a little icon with sliders top right
    of the thumbnail)
    You can also use the filter panel (Camera Raw - custom settings) to show
    only the files with settings.
    Just another workflow

  • Bridge CS4 won't output to pdf multiple images with same filename

    Hiya...my googling efforts have thus far failed!
    I've got CS4, and in Bridge, I created a New Smart Collection to find all filenames in a folder containing "." or ".jpg" - which in turn searched through all the subfolders like what you used to be able to do in Photoshop CS3.  Very simple stuff, but all the images are jpg's, but in multiple folders (I don't want to move them out of the folders, as the files came from an external source, and there are heaps of folders, and I don't want to pdf each subfolder seperately as it will take forever).
    The problem is that some of the files have the same filenames (again I'd prefer not to rename, as it happens a lot on this project, and they are all over the place).  So whilst Bridge will show the thumbnail images correctly in the content tabbed screen in my New Smart Collection, but once I've done the Output to PDF thing, for example, instead of showing both different images it has pdf only the first image but repeated it twice.  And this happens multiple times throughout the pdf, the more times the same filename is used, the more times the first image gets repeated.
    I know that it is messy to have multiple similar filenames, but why can't bridge just place the image anyway?  It allocated a space for it on the pdf and does show it in bridge, it just doesn't seem to survive the transfer to pdf well.
    The only other thing that I have done is use the below link (which was posted on another adobe forum thread) to create a custom pdf output template (nothing too fancy, just number of rows / columns, size, font etc).  But I've tried using the standard bridge templates and it does the same thing.
    http://www.proficiografik.com/2009/08/03/save-custom-pdf-output-template-in-adobe-bridge-c s4.html
    Any help would be appreciated...even if to tell me that I am being unreasonable!
    UPDATE 16/11/09
    Just to let you know that I seem to have resolved the bug inadvertently with one of the Adobe updates. The below is the link for the AdobeOutputModule-2.1-mul-AdobeUpdate.zip which was released on 2/19/2009 - which allows for headers & footers to be placed in the Ouput pdf. I finally installed it today, and everything seems to be working fine now (i.e. I can pdf multiple images with the same filenames and the pdf will actually show each different image rather than repeating only 1 of the images).
    Must have been a fix installed in the contact sheet templates that get installed with the update - not sure why the original version was corrupted, but I've left that with the Adobe guys (I submitted a bug report - and they were able to replicate the problem but hadn't fixed it as yet).
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4228
    Message was edited by: djtun71 (16/11/09)

    When I click import from disc I am asked to choose a disc and then I get this message:
    The following photos will not be imported because they are already present in the catalog. To see these photos in the catalog select 'Show in Library' (the import will be canceled).
    This is followed by a long list of images. If I click 'Show in Library' I can see all the images with the same filename. And then they start to automatically write over those images with images from the disc. However they keep the same metadata and keywords from the previous images. If I click on Import and deselect the "don't reimport suspected duplicates" box, it imports only the images that don't share filenames and none of the images that do.
    Is there a way of setting the "Don't reimport suspected duplicates" box in preferences?

Maybe you are looking for