Images not showing up in project

I have been having problems with image not appearing in projects but they do appear in folders, sometimes. Sometimes they are just no longer visible anywhere in Aperture though they are still in Apertures folder structure. That is, if I view packets content they are still there.
I am sure this is a user error being that just a few months ago switched over from a PC and THEN just jumped into this non-folder-type storing structure with iPhoto and Aperture. To be honest though, iPhoto seems to make more sense to me than Aperture.
So anyway, the question. How to I get these apparently hidden image to reappear in Aperture?

Wow, well let me try again.
I imported images into a project. I have created albums under that project. All worked as it should. I could see images under both the project and the album views.
Now I view that project, I see no images. I click on an album under the project and I see images. As stated earlier, I do not believe the images have been deleted from the project since they still live in the project folder as viewed in a finder window and in the album under the project.
Basically, what shows in finder does not match what shows in Aperture.
@rwboyer. Let me just say that if you have a problem with how someone posts a question, and by the way why would I post a question if I knew what the heck was going on?, I would suggest two ways of dealing with it: 1) ask kindly to have the question rewritten or 2) don't bother to reply. Especially in such a rude manor.

Similar Messages

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • Another Images not Showing up thread

    I know there are multiple threads out there about images not showing up on the login page of application express, and I have browsed most of them without success.
    My images folder is in:
    C:\oracle\product\10.1.0\db_1\Apache\Apache\images\
    My dads.conf file has specified:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    Address of missing image in I.E. is:
    http://<host>:7777/i/htmldb/apex_logo.gif
    When I ran @apexins I specified /i/ for the virtual images directory.
    I am running Oracle Database 10gR2, with Oracle HTTP Server that came with the Oracle Database 10g Companion CD Release 2.
    I am using APEX 3.2.
    When I try to go to
    http://<host>:7777/i/
    I get:
    You don't have permission to access /i/ on this server.
    I also cannot login to APEX. When I type my username/password and click the Login button, it does nothing (nothing loads, nothing changes... nothing happens). I don't know if this is related?
    Thank you,
    ~Tom

    I found the problem -
    In my dads.conf file I had:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    When I really needed:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images/"
    Note the end slash after images changed from backslash to forward.
    Silly me.

  • 6.1 NPD - Project Name and Status not showing in the Project Header

    I have this issue in 6.1 NPD - The NPD Project Name and Status is not showing in the Project header when opening a project. Any ideas? Thank you.

    Is this happening for NPD Projects that are newly created, prior to clicking Save? Or for already existing NPD projects?

  • Images not showing in the jlabel/jbutton

    Hello all,
    I've a package in which my cards directory is located along with all my src files and compiled classes. All my images ****.gif files are inside this directory.
    Then I've following the icon object.
    protected static JLabel lblDeck;The following code is used to get the image.
      String imgPath;
         imgPath = isImageExists("imgBG1.gif");
              if (imgPath == "")
              {     // If the image of Card Deck(imgDeck) is not Found
                   lblDeck = new JLabel();
                   lblDeck.setBackground(new Color(0, 64, 128));
                   lblDeck.setOpaque(true);
                   flagImgDeckFound = false;
              } else {
                   // If the image of Card Deck is Found
                   imgDeck     = new ImageIcon(imgPath);
                   lblDeck = new JLabel(imgDeck);
    // Check if the image exists else return "";
      protected String isImageExists(String imgName) {
              java.net.URL imgURL = getClass().getResource("cards/" + imgName);
             if (imgURL != null)
             {     return (imgURL.toString());     }
             else
                  JOptionPane.showMessageDialog(null, "File not Found: " + imgURL);
                  return "";
         }I'm still unable to get the image in the jlabel!
    When i checked the path, it is exactly returning the path of the file.
    But its neither loading the image into the jlabel nor is it returning "".
    This is just the label part i've other jbuttons also. Even they are not displaying any images.

    aLkeshP wrote:
    can everyone see this thread?
    YES FER-CHRISE-SAKE.
    Just how many times do you intend posting the same identical question?
    images not showing in the jlabel/jbutton
    Problem in imageicon
    iconImage on JButton & JLabel
    Re: images not showing in the jlabel/jbutton

  • Likely bug with external editing (in CS5 not CS6 beta) and edited image not showing back up in LR

    I have come across something strange today that I've not seen before. I'm running LR 4.0 under Win7 64-bit. I usually use Photoshop CS6 beta as my external editor, but invoke CS5 when I have to use some tools that don't support the beta. Here is the scenario:
    * I have CS5 open
    * I externally edit an image in CS5 and Save it from CS5 when I'm done
    * The edited image does not show up in LR
    * I close LR and reopen it
    * There is the edited image!
    I have duplicated this many times this evening. I don't think I've seen it when I've used CS6 beta.

    Something strange is going on because I had the behavior reported of edited image not showing up after using another filter, Nik Silver Efex Pro 2.

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • CS6 Encore - images not showing up in backgrounds

    I want to import my images to use as menu backgrounds.
    When I import the images they show up in the "diplay images" but not "display of backgrounds".
    In fact, I have no backgrounds showing up.
    Thanks for any help.

    So can you only use screen images captured form a scene
    I'm sure  not; my success image was a copy of a noncapture.
    can you use any jpg or psd file...and in what kind of saved format/resolution.
    That's what I don't see  yet. What format (jpg? psd?) did you use that got into the background list.
    Edit: so far, I can only get psd's into the background list. But there's an additional variable I am missing.
    I did import jpg and psd as assets into the project panel.  When I dragged them to the library backgrounds
    You can also use the "new item" from the library panel drop down. But I don't think that will make any difference on which tab of the library they work with.

  • Images not showing when inserted in RH8 topics

    Hello all,
    I am using RH8 for HTML on Windows 7.  When I insert a new image into a topic, the image does not show.  What appears is a small red square.  
    You probably want to know how I inserted the images.  I create the image (usu a jpg file) in Photoshop Elements.  Using Windows Explorer, I copy the image file into the Images folder for the RH project.  In the RH topic, I click Insert, Image.  In the dialog box,  the image does not show up under the images folder, so I click the Browse icon to browse to teh image, select it and click ok.   The image is inserted.. I can tell because there is a red square, and when I preview the topic, I can see the image is there. 
    Also, even after I have inserted the image, and it then shows up in the Images folder in the "insert image" dialog box, I still cant see a preview of it.
    How can I get the images to show in the topic when i insert them?
    Bob

    When you generate your output, do the images show up there?
    Can there be an issue with upper case / lower case filenames? Any special characters in the file names?

  • Why do my photos not show for come projects?

    I have an Aperture folder containing 9 projects and about 1500 photos. All photos appear when I click on the folder, but do not appear when I click on 7 of the 9 projects (they used to). Also the Info and Adjustment views are blank The photos appear for each of the 9 projects in iPhoto and the photo count shows the same number (with a few minor differences) in Aperture and iPhoto.
    Any help would be appreciated. Would repairing the Library help?

    I'm hitting a similar, rather scary bug in Aperture which I expect is behind your issue as well.
    *** I've found that as soon as I drag a project in to or out of a folder in the library window, all the photos in that project disappear. ***
    Aperture is somehow losing the link to the images when you drag the project somewhere. You can still see the images if you click on the folder (or indeed on the overall "Photos" item at the top of the library list) but not when you select the project itself.
    You cannot drag the images from the folder into the old apparently empty project, I guess because Aperture thinks that's where they already are.
    I did manage to recover things by creating a new project and dragging the images into there, then deleting the old project. But this bug means that I cannot organise my projects in any useful way - I have to leave them exactly where I created them.
    Organising my library is now fraught with danger, so if anyone has found a solution to this I'm keen to hear it.
    I'll keep working on it and try and find the cause and/or a fix.
    I'm using Aperture 3.5.1 on a Mac Pro 2011 running 10.9.4. Library is stored on an SSD. Images are stored in the library file/package rather than referenced.

  • Image Not Showing Up Properly In Program Monitor

    Hey guys, I am trying to do some animation with photographs. I was able to easily import them(they are in .jpg format)but when I drag them to the video section of the timeline. The image in the program monitor is only the very center portion of my image, and I can't figure out what is going on. Only an extremely small portion of the image shows up. It shows up fine in the source monitor but not in the program monitor. I tried changing views and everything but nothing worked.
    The resolution of the images are 3872 x 2592. I don't know if my resolution is limited or some settings are wrong or if I am doing something stupid... Any help would be greatly appreciated, thanks in advance!

    Use Photoshop to adjust the image size to reflect your project size. You can use actions to batch convert all your images in one go. That requires a new import of the adjusted images into your project. An alternative might be to rename the current image directory, start PP and when asked where the image files are, browse to the newly created directory with the smaller images.

  • Image not showing in Abobe integrated with Java WebDynPro

    Hi All,
    Image is not showing in Abobe integrated with Java WebDynPro.
    I did the following:
    Added the image field in adobe form. in URL value set the value of context node binding. Binding set to none and size set to Use Original Size.
    Then in script editor i wrote
    this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    at innitialize , javascript and client.
    I can see the image from the same url context value if image field is created directly in WebDynPro View.
    Can anyone suggest what is missing?
    Thanks and Regards,
    Nuzhat

    Try changing your line of code for this one
    this.value.image.href = xfa.record.Images.URL;
    Check that the url passed by scripting is correct with a messageBox for example.
    You can also try assigning a hardcoded url at scripting level to check if its works.
    Best regards, Aldo.

  • Small images not showing in design view

    Desperate for help! I've been trying to diagnose this for a
    long time. For some strange reason, images that used to show up in
    my design view are now displaying the 'missing image' icon. I've
    narrowed it down to this--if the image is less than 8px high, the
    image will not display. When I increase it to 8px or more high
    (width does not have any bearing on it), the image is displayed.
    Same exact image name, same placement, path, file type, etc. The
    only variable changed is the image height. Someone please tell me
    what is going on. By the way, this just started to happen. These
    small images were displaying fine up until yesterday.

    You have two id="header" elements on the page....
    I can see both the 5px tall GIF and JPG images just fine in
    CS4.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "peregrinedesign" <[email protected]> wrote
    in message
    news:gmiaur$bv$[email protected]..
    > OK, but I'm not sure this will help. Here's the page:
    >
    http://www.capitaloandp.com/orthotics.php
    >
    > What you will see is correct, and when I preview with a
    browser it is fine
    > also, it's only the DW design view that is not showing
    the small jpeg.
    > On the right side, there are two small black rectangles.
    The one on the
    > left
    > is a gif, and the one on the right is the jpg. They were
    both exported
    > from the
    > same original Fireworks file. I have tested using
    Photoshop also.
    >
    > Thank you for your attention to this.
    >

  • Some images not showing on ipad when book is previewed

    When I preview the book in progress, some images only appear in the thumbnails, not on the full page view. These same images were showing up a few versions ago.  Other images are showing up just fine.

    Hi KT and Anyone Else Who Could Help,
    One thing I noticed is the images that are not showing up are all captioned, but with background shut off. I have a few image galleries as well, but those ARE showing up.
    Some images are jpegs, others are pngs, but there is no pattern or correlation between image type and showing up, not showing up.
    Besides, they all showed up previously.
    So I removed the caption from one image and now it is showing up!
    But I am nearly certain that in an earlier version WITH captions, they all showed, and I would like to keep the captions.
    Any ideas?
    Thanks so much!
    Belinda

  • Alias icons in disk images - not showing correctly

    Hi,
    I already posted about this problem on Macworld Forums, so far no answers. Maybe here I'll get some.
    The problem is:
    whenever I download an app from the Internet, it mostly comes as a disk image. And it's OK if the DMG file contains only app and "read me" file. But more often it contains the alias to /Applications folder.
    That's the problem:
    the icon for that alias does not show properly, it always generates some icon with another icon above it. Issuing "Get Info" (Cmd-I) command, and tabbing to the icon, then deleting that annoying icon, restoring to the default one, does not work.
    Any ideas what should I do?
    Thank you.
    iMac SE Graphite   Mac OS X (10.3.9)  

    Hi Sanjin
    So it is more than only disk images but a system wide problem, in that case, a general approach is needed.
    I suggest you run Repair Disk on your start up drive, from your install DVD.
    The startup drive can only be repaired from another drive. Simply loading the install disk is not sufficient. You have to boot from the install disk.
    To do this: Insert the Install Disk 1 into the drive and then select Restart, then continue to hold down the C key until the Apple logo appears.
    This will take you to the installation software, but you do not want to install.
    Select your language, then go up to the top menu bar to Utilities and navigate to the Disk Utilities application.
    Select the start up drive, then follow the instructions in the First Aid pane where you can click on Repair Disk.
    If it finds errors, repeat the process until it reports no errors.
    After these repairs, quit the application, and restart normally.
    Once restarted normally run Repair Permissions. from the Disk Utility application found on your hard drive in Application/Utilities.
    regards roam

Maybe you are looking for

  • Progess bar is not showing until the task is completed

    Hi, when some button press, in button action i am using "progessBar.setVisible(true)" as fist statement then i am processing some XML files. according to above scenario the progress Bar need to visible first then processing XML files later but after

  • Sample projects on direct binding in osb 10.3.1

    Hi All, Can anyone suggest me some sample projects in osb 10.3.1 describing direct binding Thanks in Advance!!

  • Spell Check Crashes Illustrator CC

    FYI - When spell check hits a word that is on a path, it crashes the program. Happening consistently for more.

  • HTML DB problem

    I have a question concerning forms in HTMLDB. I have created a form with multiple lines.I inserted two processes in page processing,a Multi Row Update, as well I have a Hide/Show Audit with default bl value of 'N'. My problem is when doing MRU with H

  • How do i save an imovie so it will play on a windows computer

    due to my school only having windows computers i need to be able to save my imovie so it will open in quick time. however when i go and click share it dosent open/save correctly and wont open on the school windows based computers. with the old imovie