Dark photos from Aperture, iPhoto or Drag and drop

All imported photos (from aperture, iphoto or drag&droped) whitin a project are very dark in the viewer, and in the final video (itunes, export with several options...). The histogram levels of the image are low. The preview image in the project looks fine.
I tried repair permissions with disk Utility, system clean with Onyx... the problem remains.
Thanks

I'm having the same problem, but only after I installed the iMovie 9.0.1 update. Before then my still images looked fine when imported.
But now, my pictures are coming up so dark as to be unusable. I was forced to export them as slideshow movies from iPhoto and import them as clips to iMovie last time I tried to use still images.

Similar Messages

  • I just installed LR6.  I can't seem to move any photos between folders.  I drag and drop and  nothing happens.  No error

    I just installed LR6.  I can't seem to move any photos between folders.  I drag and drop and  nothing happens.  No error

    To open photos from Photos in Preview use the Media Browser. You do not need to have Photos open to use the photos inPreview.
    In Preview use the command "Flle > Open".
    The File Chooser dialog will open. Switch the file chooser to columns view and scroll down, until you see the Media section.
    Click the Photos view.
    Select the Photos app and click the disclosure triangle.

  • Images from my i-pad, stored in i-photo, will randomly refuse a drag and drop attempt. I can move the image to the desktop, and from there to the document (mail etc.) and it will work (display image). As I mentioned, these events are random. ....Help !

    When executing a drag and drop from i-photo to a document, occasional, random, images will refuse  drop onto the document. The work around is to drag the offending image to the desk top, and from there to the document.
    Question:  What is causing these random "rebel" images to misbehave ?

    It is better to use export or to use the media browser form the target program
    See this user tip for details on accessing your photos
    LN

  • Help with selecting files from script menu or drag and drop

    I found this scale images applescript online. It works great when a bunch of files is dragged on top of the script but I would like it to also work when a folder or group of files is selected in the Finder and I activate it from the scripts menu.
    I can't get my on run statement to work. I'm not really an Applescript guy so I'm really just asking if someone can help finish what I started in this on run.
    -- save in Script Editor as Application
    -- drag files to its icon in Finder
    property target_width : 120
    property save_folder : ""
    on run
    tell application "Finder"
    activate
    set folder_path to quoted form of (POSIX path of (the selection as alias))
    set theItems to every file of folder_path
    end tell
    end run
    on open some_items
    -- do some set up
    tell application "Finder"
    -- get the target width, the default answer is the property target_width
    set new_width to text returned of ¬
    (display dialog "Target width:" default answer target_width ¬
    buttons {"OK"} default button "OK")
    if new_width as integer > 0 then
    set target_width to new_width
    end if
    -- if the save_folder property has not been set,
    -- set it to the folder containing the original image
    if save_folder is "" then
    set save_folder to ¬
    (container of file (item 1 of some_items) as string)
    end if
    -- get the folder to save the scaled images in,
    -- default folder is the property save_folder
    set temp_folder to ¬
    choose folder with prompt ¬
    "Save scaled images in:" default location alias save_folder
    set save_folder to temp_folder as string
    end tell
    -- loop through the images, scale them and save them
    repeat with this_item in some_items
    try
    rescaleand_save(thisitem)
    end try
    end repeat
    tell application "Image Events" to quit
    end open
    on rescaleand_save(thisitem)
    tell application "Finder"
    set new_item to save_folder & "scaled." & (name of this_item)
    end tell
    tell application "Image Events"
    launch
    -- open the image file
    set this_image to open this_item
    set typ to this_image's file type
    copy dimensions of this_image to {current_width, current_height}
    scale this_image by factor (target_width / current_width)
    save this_image in new_item as typ
    end tell
    end rescaleandsave

    When items are dragged to your script's icon they are passed in to the on open handler, so this triggers:
    on open some_items
    and the dragged items are passed in as some_items
    In contrast, when you double-click on the script, or invoke it via the Script menu, this runs the on run handler:
    on run
      tell application "Finder"
        activate
        folder_path to quoted form of (POSIX path of (the selection as alias))
        set theItems to every file of folder_path
      end tell
    end run
    However, there's nothing in this block that actually does anything with the selection - you (dangerously) assume that the selection is a folder (you really should check first), and just set theItems to every file in that folder then you exit.
    So to do what you want you'll need to edit your run handler to filter the selection and pass files over to the code that does the hard work.
    You already have the basis for this - your rescaleandsave() handler, so it's just a matter of identifying the files in the selection and passing those over to that handler:
    on run
      tell application "Finder"
        set cur_selection to (get selection) -- get the selection
        repeat with each_item in cur_selection -- iterate through
          if class of each_item is folder then -- do we have a folder?
            set theFiles to every file of each_item -- if so, get its contents
            repeat with each_file in theFiles -- iterate through them
              my rescaleand_save(eachfile) -- and process them
            end repeat
          else if class of each_item is document file then -- do we have a file selected?
            my rescaleand_save(eachitem) -- if so, process it
          end if
        end repeat
      end tell
    end run
    So the idea here is that the run handler gets the selection and works through the (potentially-numerous) items. For each selected item it checks whether its a folder or a file, if its a folder it gets all the files within and passes them to the rescaleandsave handler.
    Note that this is not recursive - it won't catch files within folders within folders - since it only looks at the top level of selected folders, but it wouldn't be hard to rework the script to handle that if that's what you need.

  • Global Volume Slider (from library) to control drag and drop xml playlist

    hi there,
    have spent some time doing tutorial and looking online but can't seem to get a volume slider functioning.
    the scenario is :
    3 circles which can be dragged over a target (one for each circle)
    When the circle is placed on its target it loads its respective xml playlist into 4 buttons (play, pause, forward, back)
    I want to be able to create some kind of function to control the volume, either using a slider or a rotary dial, whichever is easiest!
    any help greatly appreciated!

    Be sure you include the SoundTransform class...
    import flash.media.SoundTransform;
    Create a SoundTransform object
    ...named 'st' (I like short names). Create this AFTER the creation of your soundChannel object...
    var st:SoundTransform = channel.soundTransform;
    st.volume = 1;//This sets the volume to 100%
    channel.soundTransform = st;//This associates your SoundChannel object with your SoundChannel object
    Then, for simple testing of this
    ...create some new button...
    halfVol_btn.addEventListener(MouseEvent.CLICK, doHalfVolume);
    function doHalfVolume(e:MouseEvent):void{
       st.volume = .5;//This sets the volume to 50%
    So, now you have a half-baked volume control. Nothing exciting, but this gets you acquainted with the volume part of what you want. You have created, and have access to, the st.volume property to set the volume to whatever you want, from 0 to 1.
    Next, I'd suggest that you practice the creation of your own slider. Search online for tutorials on it, like I mention above (as a Flash programmer, this is something I, and you, end up doing - searching - dozens of times a week at times). In the end, the position of your knob/button/control in the slider is a %: What % is the location of the knob on the total width/height of the slider. This % is what you send to the st.volume property.
    http://www.lmgtfy.com/?q=create+volume+slider+as3
    As an alternative to create your own slider, you can also use the Flash "Slider" component:
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/controls/Slider.html
    ...but this, too, requires some getting-up-to-speed with using it.
    Good luck. If you want some actual code examples - you'll find plenty online :-)

  • Why can't I add photos to my photo book? Will not drag and drop?

    Also my Iphoto 11, despite stating it is the latest version, does not look like the versions shown on the Apple website (Very basic grey sidebar).

    Post a screenshot of what you're seeing. 
    OT

  • When importing photos from aperture photos are blurry

    I have been making a video and up to now no problems. Then today i was working on it and when i started adding some more photos from aperture they were fuzzy and blurry.
    In aperture they are crisp and clear but the minute i put them in imovie they are blurry and not useable.
    I have imported photos from aperture and iphoto both and had no issues so not sure what is going on today.

    I think I just figured this out.
    Go into Aperture preferences and go to "previews" tab.  Set "photo preview" to "don't limit" and turn the quality all the way up.  Then select all your photos, go to the "photos" menu, hold down the option key and click "generate previews".
    It appears that the library sharing is just using the generated previews from Aperture which default to poor quality.  You need to turn up the quality and then force a re-render of all your previews.  iMovie should pick this up (but won't update your slideshow...).
    Yeah, I'm pretty disappointed by those defaults.   Wasted hours of my time as I rebuilt the slideshow with better versions of my photos.
    Hope that helped.

  • Sync photos from Aperture

    I would like to sync some photos/albums with my iPhone using Aperture. I went through the following steps:
    1. Imported images from iPhone to a project in Aperture
    2. Created an empty album in Aperture
    3. Dragged and dropped images from the project (from import) to the album
    4. In iTunes I went to the "Photos" tab of my connected iPhone
    5. Selected Sync Photos from Aperture
    6. Clicked on the "Selected Albums" radio button
    7. A bunch of albums/smart albums/projects are listed in the window, including the album I created in step 2 above
    8. I select the album (from step 2 above) but it says there are 0 images in it. When I look in Aperture the images are definitely showing in the album
    How do I get iTunes to recognize that the album I create has images, and thus move the album over to the iPhone?

    I believe I have it figured out. In the Aperture preferences, under the "Previews" tab, is a checkbox labeled "New projects automatically generate preview." This needs to be checked in order to sync images from Aperture albums to your iPhone.
    Otherwise, if that box wasn't checked when you created a new project, when you create an album in Aperture and put images in it, iTunes won't recognize that there are images in there.
    Note that if you are importing a lot of photos into Aperture, make sure you give Aperture time to generate previews for all of the images before you go back to iTunes to view that album for syncing. All of the previews have to be generated before iTunes will recognize that the album/project has any images.

  • Cannot move photos via drag and drop (library grid view)

    I've seen several adobe tutorials and youtube videos that show moving photos or folders by drag and drop in the library grid view.  I cannot get it to work.
    Steps:
    1. Mousedown on a photo (not the frame) in the grid
    2. Drag the mouse to a folder in the "Folder" pane (left of the grid)
    3. Mouseup on the destination folder
    Results:
    Nothing happens.  The mouse cursor doesn't change from the arrow.  There is no indication I can drag and drop.  The photos are not moved.
    The photos are stored on a NAS.  Of course I can move them around via Windows Explorer, but I want to do this from inside LR4 for obvious reasons.  From LR4, I can create new folders, but I still cannot move photos into those folders.  I also tried creating a new folder on a local drive.  Again, I was able to create the folders, but was not able to move any photos into the folder.
    What else can I do to toubleshoot this issue?

    I created a new catalog.  Imported a folder on my C drive, created a subfolder, and successfully moved photos into the subfolder.
    I tried the same steps in my original catalog and now I can move all photos (including those on my NAS).  I've been at this for 3 hours.  I have no clue why it is working now, but I guess I'm happy.  Now, it shows the stack of photos when I try to drag and drop.
    I even reverted to my original preferences file (that I backed up before deleting) and I'm still able to move the files.  Really strange.

  • I have multiple libraries how can I drag and drop songs from either

    I have 3 PCs that are all authorized to play my music.  I have different music on different machines that I have downloaded from various places and or ripped from my own cds.  I can from my home PC drag and drop music and movies to my iPhone.  But on my work PC say if I download a new Album (not from itunes) and it is in my library, I want to be able to just drag it onto my iPhone so that I can listen to it at the gym.  When I do I see a small red circle with the red slash through it and i cant copy it.  I am tired of synching and want to be able to drag and drop from any of my PCs..  is this possible?

    My mistake totally!!! I confused a new playlist folder with a new playlist.
    Just wanted to pass that along.

  • How can i get the address with drag and drop from address book into pages?

    I want to creat a letter withe the new pages. Normaly it was possible to put the adress from the adressbook with drag and drop into the letter. So it was possible to create one letter with many different adresses. But now I didn't find this function any more. How to do ist now?
    Withe best regards and I'm sorry for may bad english
    Klaus

    Sounds like you "upgraded" to Pages 5.
    Apple has removed over 90 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

  • Drag and drop new songs to playlist in iTunes 11

    In iTunes 10 and below we were always able to add new songs to iTunes from Finder by just dragging and dropping into any playlist and it would automatically show up.
    In iTunes 11, dragging and dropping new songs to a playlist from outside iTunes adds the songs but only into the "Songs" view. We have to take an extra step to select all the songs from the "Songs" list and put them onto each playlist. This is HORRIBLE and counter-productive since I have over 200 playlists and it takes much longer to add new songs.
    Is there a way to have the songs STAY in the playlist without having to drag them from the "Songs" section? I love the new interface but this is just stupid. If I'm dragging songs onto the playlist I expect them to stay there, not require me to leave the playlist and find them in my library and come back to add it to the playlist. UGH.

    I did activate the Sidebar, but even when I have my playlist selected via the Sidebar adding songs from Finder doesn't show up in the playlist. I have so scroll all the way up to the top and find what I just imported in the main Music section where it shows my entire library. Then from there I drag the newly imported songs to the playlist I wanted.
    Sorry for the confusing description, It's probably much easier to show in person or something. But previously when I added new songs into a playlist the songs will automatically show up on the Playlist without me having to go to Music and find it in my entire library.

  • Drag and drop not working

    I use iTunes on my PC and sync my iPod to it.This has worked fine for a few years now.
    Suddenly this morning I can no longer add mp3 files to iTunes from my PC using drag and drop.
    Anyone know why this is happening and what I can do about it?

    I'm afraid it's not a very helpful response but I have the same problem. I think it was triggered by a change I made - I had a CD made up of tracks by various artists and they weren't grouped together, so I selected them all, pressed 'get info', changed the composer to 'various artists' and ticked the compilation box. Since then whenever I try to drag and drop files from utorrent into itunes nothing happens

  • When I export photos from Aperture, the pixel dimensions are halved thus losing data.  I have set the export preferences to export at original size, to no avail.  This happens even if I just drag to the desktop and then back, or if I export into my iphoto

    When I export photos from Aperture to desktop or iphoto I lose pixels.  The pixel dimensions are halved, despite setting the export preference to export at original size.  Anyone know why or how to correct this?

    Dragging an Image from Aperture exports the Preview.  Preview parameters are set on the Previews tab of Aperture preferences.
    Are you seeing the same results when you export using one of the export commands?
    Is so, confirm that the settings in the selected Image Export Preset ("Aperture➞Presets➞Image Export") truly represent those in the Image Export Preset's name.
    HTH,
    --Kirby.

  • How do I transfer photos from aperture and iPhoto to bridge?

    How do I transfer photos from Aperture and iPhoto to Adobe Bridge.  I am using Photoshop CS6.  Many of my original photos were stored as raw files.

    Here's how to access Mac iPhoto images for use in Photoshop
    and so that they may be viewed by choosing that folder in Bridge..
    1. In the Finder, navigate to Users > [user name} > Pictures > iPhoto Library.  
    2. Control-click (Right-click) the iPhoto Library file and choose Show Package Contents.
    3. A Finder window opens that shows the contents. The Masters folder (or called Originals folder) contains all of the photographs that are in iPhoto.
    Photoshop cannot access this folder, but if you make a duplicate of the folder, the dupe will be accessible -- so:
    4. Control-click (Right-click) the folder named Masters (or Originals) and choose Duplicate.
    5, Drag the duplicate folder which is named "Masters copy" or “Originals copy” from the iPhoto Library Finder window to the Desktop.
    6. Open images in Photoshop from file on desktop or view them in Bridge.
    7  Rename the folder and move it elsewhere (probably to the Pictures folder), if desired. 
    And here is a Forum thread related to Aperture-to-Bridge
    How do I transfer Apple Aperture library to Bridge?

Maybe you are looking for

  • Post-Upgrade Software Usability

    Hi All, I am currently using OS X 10.3.9 with upcoming plans to upgrade to Tiger 10.4, and am totally new to the upgrade process and how it works; in fact, I've never done one before. I'm upgrading basically because I have some new applications that

  • Have sound but no picture when i click on the video.Elements 10 on windows 7.Can you help.

    Have sound but no picture when i click on the video.Elements 10 on windows 7.Can you help.

  • Down payments reconciliation

    Hello, We have a development request that has been asked by several customers: The down payment account  is not automatically reconciliated when the real invoice is created on the system. It will be good if this account is automatically reconciliated

  • Insert Image to table from a Non Database Field

    Hallo, db- 9i EE R2 forms - 6i R2 OS - W2003 I have a requirement to upload Images to the database from forms. I planned to keep the transaction data and the Images separately in different tables with a reference. So, I created the Image field (BLOB)

  • MS's data execution protection

    Has anyone experienced on DSEE 6.2, on Windows Server 2003, a need to change the list of exceptions on DEP and add, the ns-slapd, dsee_ntservice, cacaosvc, launch, and bin_dsadm.exe