Images being "magically" replaced by other images

I am using Aperture 2.4.1 and lately when I open a folder my thumbnails have been changing to different images on their own. Sometimes it happens automatically and sometimes I click on the image. For instance I will click on a photo of a person and the thumbnail will be replaced by an image of a horse but the image number stays the same. I tried starting Aperture holding down the option + command button to check the permissions and fix the library but nothing seems to work. Has anyone else experienced this and fixed it?

Try this out:
[Aperture pesky thumbnail issue|http://photo.rwboyer.com/2010/01/17/aperture-the-pesky-wrong-thumbnail-pr oblem>
RB

Similar Messages

  • White Balance: can you apply setting from one image to a series of other images?

    I like to make a grey card reference image whenever the light changes and use the image of the grey card to set the white balance. In Bridge, it was possible to set the white balance on any number of other images by applying the setting made on the reference image.
    Is it possible to do this in Lightroom?
    Stan Schwartz

    Yes, in several different ways including my favorite - autosync.

  • Background images are not displayed (CSS, other images ok

    I tried clearing cache, looked at about:config for weird configurations, did a private browser window and disabled all extensions. None of these had any effect.
    Test pages: Amazon.com and https://developer.mozilla.org/samples/cssref/background-image.html - both of these pages have background images loaded by CSS. For example, Amazon's logo at the top left is a background loaded from a CSS page. The image itself can be viewed raw:
    http://g-ecx.images-amazon.com/images/G/01/gno/sprites/global-sprite-v1._V339353059_.png
    So can this image:
    https://developer.mozilla.org/samples/cssref/images/starsolid.gif
    But why, why why do these images display on their relevant webpage? I see Amazon, eBay, and many other websites without a full complement of images. Especially the ones used for menus and other important navigation buttons.
    Here is what I see on the Mozilla page mentioned above: I see the text, but no repeating star image. This works in other browsers and on other computers in Firefox.
    The page I am typing on right now has no blue background, the entry windows are not correct (like the search window is not a rounded gray box) and the search magnifying glass is missing. So this experience makes even simple pages impossible to use.
    Firefox 32, Vista

    You did make sure that there isn't a high contrast theme selected in Windows like I posted above?
    *http://windows.microsoft.com/en-us/windows-vista/make-the-computer-easier-to-see-optimize-visual-display

  • How to convert EPS(image file) file in to other image format e.g NIGMAS

    Hi friends,
    I want to make a tool which will help to convert the EPS image file into other image format BY USING JAVA TECHNOLOGY. I havent done this type of file conversion before, so any body please explain it to me from the basic how can i go for it, what r the require things, where should i get the help of it, which java API should i use etc. i ll be vry thankful.
    My actual requirement is i want to convert the EPS file into the NIGMAS(Nihon computer graphic mapping System) file format.
    Thank you in anticiption.

    The easiest, but not necesarily the best, way is to use ImageMagick's convert utility. From Java you can use Runtime.exec to invoke convert.exe ... ImageMagick is opensource and supports many different formats ( www.ImageMagick.com )
         * Converts an eps file to a graphic that is suitable for the web.
         * We use ImageMagick's 'convert' utility to convert .eps files into either gif or png format.
         * The output format is determine by the extension that you set for the output file.
         * Sample command:
         * convert -density 208x208 /export/home/kpmg/tomcattest/jsp/1.eps
         *                                    /export/home/kpmg/tomcattest/jsp/1.png
         * Although convert supports about 100 different parameters, we are only using 1:
         * -density     (sets the vertical and horizontal resolution in pixels of the image)
         * Density sets the vertical and horizontal resolution in pixels of the image.
         * It should be changed based on the resolution of the user's monitor
         * (e.g. if hi-res display settings, then density will need to be greater
         * than if running on a low-res display, which would make the same image look really big )
         * You may want to use other convert parameters, such as -sharpen
         * to make the image look better, or -compress and
         * -quality to change the kb size of the image.
         * For the full list of parameters see:     
         *      http://www.imagemagick.org/www/convert.html
         * @param inFile The absolute path to the eps file to be converted
         * @param outFile The absolute path to the desired output graphic file.
         *                         NOTE: the format of the output file is determined by the
         *                         extension that you give for this parameter (e.g. file.png will
         *                          be written as a png file )
    public void eps2www(String inFile, String outFile, String density) throws Exception
              // use ImageMagick's convert program to make the www version ( png or gif, etc)
              String call = convert +
                        " -density " + density +
                                  " " + inFile +
                                  " " + outFile;
              try
                   Process child = rt.exec( call );
                   child.waitFor();
                   log.debug("Convert process exit code is: " + child.exitValue() );
              catch (Exception e)
                   // TO DO: this could probably be more explicit
                   throw new Exception(e);     
              // log the command strings for debuggin purposes.
              log.debug( "Convert Successful: call = " + call);
         }

  • Centre Image Between 2 Other Images

    Hi,
    I am a beginner to Dreamweaver and am trying to find a solution to what should be a simple problem. I want to place 3 images across a page, with one image aligned left, one image aligned right and the other image centred between the two. I am using Dreamweaver CS4. I need to know how to create a class style which will achieve this. I have tried several things but without success.
    Thanks in advance.

    Needahand51 wrote:
    Hi,
    Thanks for the suggestions but I wanted to do this without using a table as I want the images to line up with the text on either side and this differs with different browsers, so it seems to me that you can never get it just right, unless I am missing something, how can you set a width for the table when the width of the text block varies with different browsers?. I would have thought that it would be possible to float one image left, float one image left and place the other in the centre, I jusy don't know how to do it.
    I am a beginner and I am using Dreamweaver so I might easily be understanding it wrong.
    My test page is here:
    http://www.needahandspanishproperties.com/test2.html
    as you can see the image is not in the centre. With this example I followed a tip from another forum who suggested assigning the centre image as a block (text centred) and setting margins to auto, also putting centred image after the left and right aligned images.
    This css construct will keep your image in the middle regardless of browser width.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #container {
    width: 90%;
    margin: 0 auto;
    #leftCol {
    float: left;
    width: 190px;
    #imageWrapper {
    margin-left: 200px;
    margin-right: 15px;
    #imageWrapper h1 {
    margin: 0;
    padding: 0 0 20px 0;
    #leftImage {
    width: 170px;
    float: left;
    text-align: center;
    #rightImage {
    width: 170px;
    float: right;
    text-align: center;
    #centerImage {
    margin-left: 170px;
    margin-right: 170px;
    text-align: center;
    </style>
    </head>
    <body>
    <div id="container">
    <div id="leftCol">
    Left Column
    </div><!-- end leftCol -->
    <div id="imageWrapper">
    <h1>Factfile for Estepona </h1>
    <div id="leftImage"><img src="images/one.jpg" width="170" height="170" /></div>
    <div id="rightImage"><img src="images/two.jpg" width="170" height="170" /></div>
    <div id="centerImage"><img src="images/three.jpg" width="170" height="170" /></div>
    <p>Use this handy fact file to get information on the resort of Estepona located on the Costa de Sol, Spain.</p>
    </div><!-- end imageWrapper -->
    </div><!-- end container -->
    </body>
    </html>

  • I got the image on the vi,now I want to take rectangle potion from that image and compare with other image

    Hi,
    Now i have a image on VI ,i want to take rectangale postion of the image and compare with the other image(In this image also i need to take a small postionof it) and  show the result.
    Both image are equal or not....if it is equal show pass if the image is not ok fail.
    Regards,
    Sri.

    First i would like to thanks for the inputs,
    I have made one Vi for comparing the two images and display  equal or not.
    Problem:if there is a small change in the picture it is showing false ,but the image is ok only the contract ,clarity ,inclination is the problem... i need your help in controlling that image......like controlling the colors and telling if the color , shade, projection of the image of the image is in between this range show it as ok....
    i started with cluster taking the out put of the BMP file, but i am not able to do....can u help me on this.
    i am attaching the file what i have made...
    Regards,
    Sri
    Color
    Attachments:
    image.ppt ‏52 KB

  • Aperture replaces images with other images that have the same image number

    Help! Aperture has started replacing images in recent projects with older images from elsewhere on my hard drive that have the same image number. Obviously I need a better numbering system, but can someone help me figure out why this is happening? I store master files on an external drive and the "replacement" files seem to be coming from identically named images on my local HD or in iPhoto.

    I started renaming all of my images when I import them. I'm using referenced images to an external drive, although I still have a bunch of older images stored in the Aperture library under my old numbering system (which was basically whatever image number the camera generated)....need to move them all to the external drive but haven't had time.
    So here's the latest problem: Today, Aperture started replacing images in albums (referenced images with unique file names under my new system) with old images even though the file names weren't even remotely close. It also replaced the images with the preview for the old image (230 pixels wide). "Show master" showed me the preview for the old image, not the correct image.
    I tried forcing an update to the preview, but it had no effect. The real masters are intact on the external drive, but this is really scaring me. It happens out of the blue, right in front of me...I watch as my images appear to be replaced with random old images in Aperture. It appears to have nothing to do with file names, as I'm now using totally unique file names.

  • Images being compressed or resized before printing ??

    I have a 50MB PNG image that I just printed using the built in Kodak printing system. When the image was actually being uploaded, though, it was only 3.2MB in size. What happened to the photo? Did it get converted to a JPEG or PDF? Was it resized? What settings are applied to the image before the upload?
    The image came from a scan of a film negative, and I purposely increased the image size in Photoshop and saved in a lossless format so that it could be printed as high quality as possible. The photo was originally 6000x9000 in size, corresponding to a 300dpi printing. I'm a bit worried that the "compressed/ resized/ whatever was done to it" photo that actually got uploaded will have more visible artifacts...

    If you edit an image with Photoshop from within iPhoto it can either save as a jpg or a psd depending on what edits were performed. Some simple edits with photoshop will keep the jpg extension and that will become the modified version in iPhoto. However if the edits are extensive or layers are created then you either do a Save As to the Desktop an import as a new file or flatten the image and force save as a jpg.
    As far as the 500 MB image getting reduced for uploading I believe iPhoto may do what it does for books and calendars - convert very large files to PDF files. That would account for the much smaller sized uploaded file.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB file backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Search .docx and replace text with image

    I've got a directory containing a series of images. The images will always be the same name and I need to insert them into placeholders in a Word document which will be a template. I thought of using the image names as placeholders, opening the document
    and searching for the image name, replacing it by inserting the image, and doing so for each image in the directory.
    $file is the name of the image in the directory and it loops through them okay.
    foreach($file in Get-ChildItem $savepath -Filter *.jpg)
            # search word doc and replace selected text with image ($file)    
    Also inserting the image seems simple enough from a TechNet article I found, but I've got no idea how to open the Word document and do a search and replace. I found a few articles related to the subject but I couldn't get them to work when I tried to adapt
    them.
    Any help is appreciated. Thanks in advance.

    This 'might' be possible, but I'm having a hard time finding good references to the com object capabilities for inserting an image into a word document.  Creating new, converting format, that sort of thing is straightforward.
    I'd do a search on "powershell word comobject" and variations of insert image update edit, etc.  Or maybe someone else with more experience/knowledge has a magic bullet for you.  Once you get some info on doing it with powershell, expand
    your search by omitting the powershell keyword, there's gotta be some solid documentation for the comobject somwhere, but it will probably be a bit complex.
    You can also:
    $word = new-object -comobject word.application
    $doc = $word.documents.add("<path to word document>"
    and get-member to your heart's content, but finding references and/or documentation might be easier.  
    Good luck!
    Edit:  This could help, but really doesn't give much insight into placement of the image, only helps getting the image into the doc:  http://gallery.technet.microsoft.com/office/44ffc6c8-131f-42f1-b24b-ff92230b2e0a
    If you do find something useful, post it here, I'm sure others could benefit!
    SubEdit:  Should have thought of this already...
    http://msdn.microsoft.com/en-us/library/ff837519(v=office.14).aspx

  • Is there a way to replace re-sized images?

    I have several images (640 x 480) that I have placed into a PDF. When I use the Object TouchUp Tool, (right-click and choose "Place Image...") they come in WAY too big for the layout, so I scale them down to fit. Now, I need to replace those images with new ones (also 640 x 480).
    1) Is there a way to replace the images, (Right-Click on the image to be replaced > "Place Image...") so that the new images are placed at the same dimensions (and hopefully position) as the scaled old images, instead of having them come in HUGE again and manually scaling them down and re-positioning them?
    2) Or, at least, is there a preference dialog somewhere that I can define a specific dimensions for the images to be imported at, regardless of their resolution outside of acrobat.
    I realize I could create smaller thumbnails and place those in the PDF instead. However, the person who will be responsible for replacing the images isn't very computer savvy, and it would take longer for them to save thumbnails then to just place the image directly into Acrobat and scale them down.

    I want to AVOID scaling the new pictures (and in an ideal world, I'd also like to avoid re-positioning) manually. Example, I have a window sticker PDF for a silver car with 3 pictures in it, a front, rear, and interior. When initially placed into the PDF, the pics (640 x 480)for the car were too big for the layout, so I used the Object TouchUp Tool in Acrobat 8 Pro to scale them down to about 150 px wide and position them correctly. Now, we get a new car in. It's practically the same car, but blue. So, the most efficient way to create a new pdf window sticker for the blue car would be to save a copy of the silver PDF and then just replace the silver pics with blue ones.
    Practically every other graphical Adobe program on the planet has a way to "replace" or "update" raster images. In my Acrobat 8 Pro travels, it doesn't seem there is a way to do this. I can "replace" (overwrite) the old silver pictures by selecting a pic with the Object TouchUp Tool, then right-click "Place Image..." This will stick the new blue photo in the same position as the old one. However, it still imports in at the giant 640x480 size, instead of the scaled-down 150 px wide size. So, I still need to manually scale the new blue photo down.
    Also, I've tried every combination of SHIFT, ALT, CTRL clicking to try to scale the pic from its center. In other words, if I grab the lower-right handle of the pic, the anchor point for the scale is the upper-left corner of the pic... so scaling it like this throws the pic out of position anyway.
    So, if anyone has a way to scale a pic from it's center, instead of the corners, please post it!! Even if I could get a dialog box requiring specific numeric dimensions... that would be preferable to having to re-size and manually nudge and smush the pics around to a rough eyeball location every time I need to make a new window sticker for a car (which is a lot)
    Cheers!

  • Ps CS6 Problem: unable to prevent uncompressed compatibility image being saved in 32-bpc docs

    Ps CS6
    OS X 10.6.8
    There seems always to be an uncompressed compatibility image in 32-bit PSD and PSB, and in 32-bit layered TIFF. That's regardless of Maximum Compatibility being disabled when saving.
    If Maximum Compatibility is enabled, there correctly is an uncompressed composite in the file.
    If Maximum Compatibility is disabled, there's an overhead equivalent to an uncompressed image with the document's size. I reckon the all-white compatibility image is uncompressed! If any image should be compressed, that surely is it. What a ridiculous waste of storage space. An unnecessary consumption of hundreds of MB per document in many cases.
    This uncompressed compatibility image would explain why an embedded 32-bit PSB which stores the IBL of a 3D Layer consumes the enormous storage of a large uncompressed 32-bit image despite it being compressible to a few hundred KB.
    If I've missed some switch to prevent this waste of storage, please point me to it. Otherwise, please employ compression when appropriate.

    That is correct - without that, many other applications fail to read the file.
    We think we've got a way to compress even the solid color data in 32 bit/channel, but it wasn't as straightforward as it sounds (floating point is tricky).

  • In imovie - why are some of the images masked by other images?

    The images appear in the edit box but not when I play the movie. It's like they're being masked by the previous image.

    Thank you, mhoffman85!
    First, the photos were taken by people other than myself, but the tip you provided is a good one for me to pass along to family, friends, and fans.
    Second, I am indeed stubborn. Following your advice, I started by painstakingly deleting the 134 photos from my Muse CC slideshow widget. Then I copied the images into iPhoto, double-checking for rotation errors: one remained 90 degrees clockwise, so I changed that in Preview and saved it. Then I copied the photos into a new folder and reinserted them into the Muse widget. One of the photos needed a different "fill" setting. Finally, I re-typed all 134 photo captions and photo credit names. Et voila, when I previewed the page (2.5 hours later, ack), all of the photos were in their correct rotation.
    I am now feel a bit tired but mostly happy that I can move forward with populating the remaining pages before uploading my redesign. Excited!
    Very grateful also for your timely response to my post.

  • Replace words with images, in a table, using the search/replace tool

    Hello everybody
    I have a question:
    Is it possible to replace words with images, in a table, using the search/replace tool?
    My case:
    I have a table with about 9000 articles on about 400 pages. In this table there are words which I like to replace with Logos.
    Example: The word "DM" should be the Logo "DM" (.eps). This word is about 1200 times in this table.
    Is it possible to replace it automatically?
    Thank you very much for your helb.
    Kind regards Alex

    Hello Mr. Werner
    Thank you for your reply.
    Can I ask you which Version of InDesign do you use?
    I use CS 5.5 and there I can't find the change field "other" you told me.
    Can you see it on the screenshot? (Sorry it is german...)
    Thank you very much for your support.
    Kind regards Alex

  • CS3 Removing effect from one object changes all other images on page-!???

    I'm reusing an 80 page document that I created last year as the template for an updated version of the same document. There are images on almost every page. In the previous version of the document most images had a drop shadow applied, but this year I'm not using drop shadows so I've been deleting old photos or placing new images in old photo boxes and removing the drop shadow. No problem most of the time, but there are about 5 images in the document (scattered around randomly) that are problematic - when I either delete these or try to remove the drop shadow effect, all the other images on the page get darker (a lot darker). It's not specifically the drop shadow causing the problem - I can change the effect to any other with no change to the problem, it's just when I remove or clear all effects that the problem occurs. I even tried creating a new spread then cutting and pasting all but the problem image but it didn't work - everything was dark till I added the problem image. So weird and confounding! I've never seen this in either CS3, which I've been using for a few years, or any previous version of InDesign. The only workaround I've found is to move the problem images onto the pasteboard and keep them, but I'd rather not send the document to the printer like that. Has anyone seen this problem??? Hmm, the only thing I can think of is that I'm still using CS3 yet I upgraded my Mac OS to Snow Leapard (10.6.4). In fact, this isn't the only problem I've had with my CS3 Suite programs since I got my newer Mac. Maybe I just answered my own question, sort of. Still, has anyone seen that InDesign problem?

    Thanks Peter! You're right about the problem images being the only ones on their pages. They are all grayscale though. Rob mentions that possibility. I Sounds from both your answers like the problem is probably with the transparency blend space. Unfortunately (or fortunately?), I've never had to set the blend space. My printers have always handled that part. I hope I can ask you this newbie question -- if all the images are grayscale what should the transparency blend space be? I assume it should be in CMYK since the doc will be printed offset and the printer will have the native files not a PDF. The doc's transparency blend space is set to CMYK. Rob seems to think this could be the problem but the only choices are RGB or CMYK as far as I can tell.

  • Why can't I drag and drop images from the browser into other programs?

    Ever since I upgraded to Firefox 4 (even after I upgraded again to Firefox 5) I have been unable to drag images from the browser into other programs, including MS Paint and IcoFx. I receive an error message stating that the file (the address given lists it as being located in the temporary files folder) cannot be found.
    Prior to this I had always been able to conveniently drag and drop images for easy editing without having to save first and then open them. This feature is important to me, as I work with graphics very often, and is still available in Chrome and Internet Explorer. I love Firefox though, and hope that there is something I can do to fix the problem.

    I had this problem on Windows 8.1.1 and iTunes 11.2.2.3
    To resolve it from within Itunes I did :  Edit, Preferences, Sharing.
    I took the tick out of "Share my library on my local network"
    Click OK.
    Closed iTunes/
    Reopened iTunes and I can drag and drop.
    I went back into Edit, Preferences, Sharing and put the tick back and clicked OK.
    Works fine now.

Maybe you are looking for