Thumbnails Not Showing in Browser

I have a portion of my library archived to DVD - masters are offline. I cannot view the associated thumbnail previews in the browser. They are grayed out but can be brought up in the viewer, and show the low resolution version of the image.
I recall being able to view them at one time, but now the previews are all grayed out. Why and what can I do about it? Thanks.

I realized the problem is nothing to do with the code...thanks anyway...

Similar Messages

  • Thumbnail not rendered in browser

    I lifted code posted in this forum for creating a jpg thumbnail courtesy of
    --Dmitri Don
    http://forum.java.sun.com/thread.jspa?threadID=223186
    and it works fine to make a nice sharp image.
    I am having a problem with certain thumbnails not showing in the browser. I suspect the size is the culprit but I AM NOT AN IMAGE EXPERT--and have little experience with these APIs. I would deeply appreciate someone's help on this. The thumbnail is being produced, I jsut cannot get the browser to show it for certain files.
    An example for a non working versus working is as follows:
    -working-:
    -original -96KB JPEG
    thumb-I can see size=4014bytes, dimension=100X75 px, type=JPEG and created/modified dates in BROWSER properties(right click)
    -non working-:
    original -670KB JPEG
    thumb-size=Not Available, dimension=20X30(!??) px, type=Not Available and created/modified dates=Not Available in BROWSER properties(right click)
    When I open the 'non-working' thumbnail in an image editor it has normal properties: size=22500bytes, dimension=100X75 px, type=True Color 24 bit(in MS photo editor)
    the code I am using to generate the thumbs:
    try {
    File originalFile = new File(pathToOriginal);
    ImageIcon ii = new ImageIcon(originalFile.getCanonicalPath());
    Image i = ii.getImage();
    Image resizedImage = null;
    int maxSize = 100;
    int iWidth = i.getWidth(null);
    int iHeight = i.getHeight(null);
    if (iWidth > iHeight) {
    resizedImage = i.getScaledInstance(maxSize, (maxSize * iHeight)
    / iWidth, Image.SCALE_SMOOTH);
    } else {
    resizedImage = i.getScaledInstance(
    (maxSize * iWidth) / iHeight, maxSize,
    Image.SCALE_SMOOTH);
    // This code ensures that all the
    // pixels in the image are loaded.
    Image temp = new ImageIcon(resizedImage).getImage();
    // Create the buffered image.
    BufferedImage bufferedImage = new BufferedImage(
    temp.getWidth(null), temp.getHeight(null),
    BufferedImage.TYPE_INT_RGB);
    // Copy image to buffered image.
    Graphics g = bufferedImage.createGraphics();
    // Clear background and paint the image.
    g.setColor(Color.white);
    g.fillRect(0, 0, temp.getWidth(null), temp.getHeight(null));
    g.drawImage(temp, 0, 0, null);
    g.dispose();
    // sharpen
    float[] sharpenArray = { 0, -1, 0, -1, 5, -1, 0, -1, 0 };
    Kernel kernel = new Kernel(3, 3, sharpenArray);
    ConvolveOp cOp = new ConvolveOp(kernel, ConvolveOp.EDGE_NO_OP, null);
    bufferedImage = cOp.filter(bufferedImage, null);
    /* write the jpeg to a file */
    File file = new File(pathToWrite);
    FileOutputStream out = new FileOutputStream(file);
    /* encodes image as a JPEG data stream */
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    com.sun.image.codec.jpeg.JPEGEncodeParam param = encoder
    .getDefaultJPEGEncodeParam(bufferedImage);
    param.setQuality(0.7f, true);
    encoder.setJPEGEncodeParam(param);
    encoder.encode(bufferedImage);
    catch exception...
    thanks
    sgv

    I realized the problem is nothing to do with the code...thanks anyway...

  • History is blank! does not show any browsing history even changing the settings v 3.6.20 Mac OS

    Regardless of the settings you choose, Firefox is not showing any browsing history. It's happening in version 3.6.20 for Mac as well as V 5 for windows. I see a lot of the same questions on the internet but no answers

    I'm on Linux. There is no QuickTime for the Linux platform, but I see the player loading (caching) that movie. The Gecko Media Player doesn't seem to be able to play that file embedded, but does play it if I open the .mov file directly in the player.
    Another good place to ask questions and advice about web development is at the MozillaZine Web Development/Standards Evangelism forum.
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the MozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25

  • Rapport does not show in browser

    I use Trusteer Rapport as extra security on my Windows 7 Firefox browser, I cannot find why it does not show in browser bar, I have checked my Trusteer Rapport software, and can find no problem, so I am thinking this is being stopped by Firefox security as I have just updated Firefox to V5 and Rapport was working in the bar before. Any info I can use?

    Report "xi" does not bundle with any version of .NET. Please find out the exact version of CR, version of .NET and CR updates you are working with.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Project thumbnails not showing properly

    While nearing completion of my project I published the iMovie file to the Media Browser so I could access in GarageBand and work on the soundtrack. When I returned to iMovie to edit it further I noticed none of the thumbnails were showing. The project seemed intact. I rolled over each clip and everything worked as it should.
    I began to edit the project and was prompted that I would have to re-publish the project again. This is as it should be. However, once I began editing the clips again all the thumbnails changed from blank to the image of the photo I just imported from iPhoto. All of them changed.
    Is there anyway to reset the cache or something like this in iMovie 09? Something that will allow me to see the proper thumbnails. Although I can continue to work on the project, not knowing where my edits are makes it difficult.

    Could you try disabling graphics hardware acceleration? Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches with some graphic cards/drivers.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    orange Firefox button ''or'' classic Tools menu > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    Does that make any difference?

  • Applet not showing in browser OR appletviewer window not appearing

    hi
    1. I have small java code - hello.java
    import java.awt.Graphics;
    public class hello extends java.applet.Applet
    public void paint(Graphics g)
    g.drawString("Hello java...................",600,300);
    which correctly compiled
    2. then I wrote an html file - hello.htm
    <HTML>
    <HEAD>
    <TITLE>HELLO</TITLE>
    </HEAD>
    <BODY>
    <appllet code="hello.class" width=400 height=400>hello not supported
    </appllet>
    </BODY>
    </HTML>
    3. but F:\javacode>appletviewer hello.htm not showing appletviwer window
    command prompt move to F:\javacode>
    4. opend the hello.htm through browser, "hello not supported " appearing instead of applet
    5. both files in same folder
    6. I am using IE8 & firefox (XP sp2)
    wh

    Quite apart from which a String drawn at [600, 300] wouldn't be visible in an Applet of width 400.
    db
    edit
    Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.
    Edited by: DarrylBurke

  • Nikon Df Nef File Thumbnails not showing in Adobe Bridge CS5

    HI,
    I am having trouble getting NEF thumbnail to show in Bridge CS5, but only from the Nikon Df. All other, older, NEF files are showing up without a problem
    I have installed the latest updates (Camera Raw etc)
    I would appreciate any advice on getting this to happen.
    Thanks
    BD

    Ok thanks for that, at least I wont be chasing my tail.
    I did install the DNG converter 8.3 but I still NEF files as a NEF icon. Any clues to what I may not be doing right there?

  • Adobe Acrobat 8.1 Professional - Explorer Thumbnails not showing

    Hi to all:
    Recently I upgraded my Acrobat professional (part of the CS3 Design Premium Package) to version 8.1., and now the thumbnails in the windows explorer on PDF files are not showing anymore (in some files). It's only showing a simple sheet with the acrobat logo inside. Is there any way to bring them back?
    I'm using Windows Vista Home Premium 32 bit, 1.5 Gb memory and a 256 Mb. Nvidia GeForce Go 7600 Graphic card.
    Thanks in advance...

    I have the same problem mentioned in the original post of this thread. It looks like the first reply misunderstood the issue. It is this:
    In Windows Explorer on XP or Vista with Acrobat 7 (maybe 8.0 too, I don't know) the icon for a PDF file would display a thumbnail image of the first page of the PDF.
    Starting with 8.1 (it might have been 8.0, but I skipped that version) the thumbnails are not shown -- only the Acrobat icon.
    Before someone suggests it -- yes I have unchecked "Always show icons, never thumbnails" in the folder options dialog for Explorer. So that is not the problem here.
    I have read hints about a fued between Adobe and Microsoft that brought this situation about. I am disappointed that Adobe is willing to punish their customers (again) as part of this battle.
    With this and other lost features in 8.1 as well as the lack of response I have had over a licensing question, I have decided to switch to NitroPDF instead. If I have to, I'll write my own thumbnail viewer using the Foxit API.

  • Contents thumbnails not showing

    I just generated two new single-folio apps. In the Contents menu, the thumbnail images are not showing. Where the contents thumbnails should be, only a capital letter is displayed. What would cause the thumbnail images to not show? How do I fix it?
    Dave

    Exactly how did you restore the iPhoto library?
    LN

  • Project pictures not showing in browser

    When I moved a project into a folder although the pictures are still listed in the inspector as being in the project they do not show up on the browser.  How do I get them to show.  I am using the vault system.

    In the split view I see nothing when I select the project.  When I select one of the albums below it the pictures show up in the lower line but not the upper part unless a lower one is selected.
    I have done much since the controversial move so I'll have to wait till it happens again for a before & after.   But  these may help.  This is the browser mode.

  • Amended file thumbnails not showing in Organiser

    If I amend an image and then save the file (using various formats such as tif, psd and jpg) in a version set  the amended file's thumbnail does not show in Organiser. It appears a 'broken file' icon.
    How can I get it to show the amended image?

    Ok thanks for that, at least I wont be chasing my tail.
    I did install the DNG converter 8.3 but I still NEF files as a NEF icon. Any clues to what I may not be doing right there?

  • Windows 8.1 thumbnails not showing in explorer

    I have Windows 8.1 and it does not show any thumbnails. I've cleared the thumbnail cache and checked the view settings and they are both set to show thumbnails.
    Any ideas?
    Thanks
    why767

    Hi,
    Have you make any change to your system before this problem occures? Especially install new program.
    You can try to perform a Clean Boot to check whether this problem caused by 3rd program or service start with system. Refer to the link below for more details.
    http://support.microsoft.com/kb/929135
    If problem persists, try to use ShellExView to check if there is any 3rd extension of Windows Explorer that may cause this problem.
    ShellExView:
    http://www.nirsoft.net/utils/shexview.html
    Roger Lu
    TechNet Community Support

  • Image Gallery Magic Thumbnails Not Showing

    I have an existing page which I've added a new gallery to.
    The gallery
    looks fine in Dreamweaver but as soon as it's viewed in IE
    the thumbnails do
    not show up. If I select the encoding of the page to "none"
    all works fine
    with the gallery but my DIV tags don't works properly, i.e
    they don't
    center. I have uploaded an example of my page:
    www.bluchip.gg/bc458a.htm
    Any ideas?

    Hi Warren,
    Your style sheet has errors in it. Replace your style sheet
    with a fresh
    default one.
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"
    "Syztemlord" <[email protected]> wrote in
    message
    news:fr67fr$7oh$[email protected]..
    >I have an existing page which I've added a new gallery
    to. The gallery
    > looks fine in Dreamweaver but as soon as it's viewed in
    IE the thumbnails
    > do
    > not show up. If I select the encoding of the page to
    "none" all works
    > fine
    > with the gallery but my DIV tags don't works properly,
    i.e they don't
    > center. I have uploaded an example of my page:
    >
    >
    http://www.bluchip.gg/bc458a.htm
    >
    > Any ideas?
    >

  • Newly imported thumbnails not showing previews

    Today when I was importing images off a memory card I noticed the thumbnails in library mode were not showing any previews, they were blank (gray) for only the recently imported items.  My other folders' thumbnails are showing previews with no issue.
    I am working in Lightroom 4.  I am using Windows 8 on a HP laptop.
    A couple of other notes about what I noticed...
    1.  In the import screen the thumbnails display the preview.
    2.  Once the import goes to the Library Mode - thumbnails are blank.  Can only see the image number and any symbols indicating tags or changes to the image.
    3.  Loupe view I cannot get an image to appear.
    4.  In the Develop Mode if I click on a thumbnail down in the filmstrip (which are all blank) an image will appear in the work area and the filmstrip thumbnail will display a preview of the one I selected.  The thumbnail preview will remain visible for a few moments after moving to a new image.  Then it just goes blank again.
    5.  I was importing jpegs and dngs.  Having the same problem with both of these today. 
    6.  All the other thumbnails in folders that were in the catalog prior to today are visible and working normally.
    I am wondering how to fix this problem of newly imported images not displaying an image in the thumbnail whether it is in Library Mode, Loupe View, or Develop mode.
    Thank you for any help you can provide.

    I'd delete the preview cache and rebuild - that may help (or it may not).
    To do so, exit Lightroom, then delete .lrdata folder alongside .lrcat file.
    PS - delete entire .lrdata folder, but do NOT delete .lrcat file or anything else.
    (if it has 'Smart Previews' in the filename, don't delete it - just delete the other one).
    Then, re-open Lightroom and rebuild previews using Library - Previews menu (optional, but probably worthwhile).
    If no better, then you have an system/app problem as opposed to a preview-data problem.
    Rob

  • Thumbnails not showing

    Hi,
    I just purchased and installed Lightroom 5.3 on my Win 8.1 Asus UX32VD and the preview thumbnails are not showing as you can see in the screenshot below, and as described in this page: http://helpx.adobe.com/lightroom/kb/photos-appear-black-gray-rectangles.html
    I have gone through the steps described and had no joy.
    Thanks, Jamie

    Exactly how did you restore the iPhoto library?
    LN

Maybe you are looking for

  • MSI GeForce 4 Ti 4200 128 DDR (Direct3D problem)

    I bought the MSI GeForce 4 Ti 4200 128 DDR just today and I seem to be experiencing Direct3D issues.  I never have problems with general use of the video card, but when I try to play games that require 3D acceleration I get crashes (Blue screen of De

  • File store in Symbian OS device?

    Hi, I've written a Java app on a Symbian OS device (Nokia 9210). What's the best/easiest way to write something to a file on the phone (which is stored persistently) and when the app is reloaded later, that file can be read in again? Is there special

  • 'Play Full Screen' looks different than 'play'  (makes timing errors)

    In iMovie, 'Play Full Screen' behaves differently than 'Play'  Makes timing errors, cuts off the beginning of commentaries, etc.

  • Query help, join 3 times

    Hi Friends, the example table is: EMP : columns are emp_id (primary Key), name STORES_REQUISITION_MASTER: columns are req_id, req_date, requested_by(referes to emp_id of EMP), approved_by(refers to emp_id of EMP), authorised_by (refers to emp_id of E

  • Help needed with JProgressBar

    Hi Friends, I am creating a java application using swings and i got stuck with JProgressBar. I have a JMentuItem called "PrintReport" in my JFrame. Now when i click the "PrintReport" menuitem i will perform the printing by parsing some xml files. i n