Importing JPEG and TIFF

I have some jpeg and tiff images on a disc. I saved the images to my desktop and then imported them into FCP. The problem is that some of the files seem to be bad. Some have a red horizontal line through them and some have blue lines through them. I checked it on another computer and they read fine. I tried saving the images to the desktop a second time but now different images are bad. FCP will not read the bad files.
Any thoughts?

I have some jpeg and tiff images on a disc. I
saved
the images to my desktop and then imported them
into
FCP. The problem is that some of the files seem to
be
bad. Some have a red horizontal line through them
and
some have blue lines through them. I checked it on
another computer and they read fine. I tried
saving
the images to the desktop a second time but now
different images are bad. FCP will not read the
bad
files.
Any thoughts?
Bad quality when looking at the pictures via the
canevas on the computer or via an external screen ?
The RGB check is a really good idea. I would also consider putting the images on an external media file. The fact that FC is looking on the system drive could be causing some of the problem.

Similar Messages

  • Exif tool and Export Jpeg and Tiff files

    I run Lightroom 4.4 under Apple OS X10.4.4
    When I export files Exif Tool (in Graphic Converter) under ICC header shows for Jpeg "Primary Platform = Microsoft and for = Tiff Apple; and under ICC Profile Color profile for Jpeg = HP but Adobe 1998 for Tiff.  I can see that there is a difference between the profile for Jpeg and Tiff (eg sRgb and Adobe1998) but don't follow why the Primary platform differs and shows Microsoft for Jpeg and that the jpeg profile is HP.  Can anyone explain, please, and dose it matter anyway?   Thanks  Clive

    A overview of ICC profile tags is here: http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/ICC_Profile.html
    Why the difference in the PrimaryPlatform tag, I don't know, it does not matter.
    The ProfileCopyright tag is HP for sRGB, Kodak for ProPhotoRGB and Adobe for AbobeRGB (1998) of course.

  • Open Jpeg and tiff in ACR as a choice

    It would be nice to be able in choosing wether to open jpeg and tiff in ACR using right mouse click menu. AFAIK now you only can set preferences to open these files always in ACR or never.

    Hi cathy69:
     Thank you for your inquiry.   I am pleased to assist you!
    I hope you had a great weekend!
    I see you are looking to change the boot order on your computer. Here is a link to 'Configuring the Boot Order in the System Bios" click here. Please let me know if you require further assistance.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • How do you import jpegs and make a flip book with CC Id?

    How do you import jpegs and make a flip book with CC Id?

    You actually don't need to make a flipbook yourself. There are paid and free, ready-to-use flipbooks in Flash or HTML5 available which you just need to configure and then put all images into a specific folder and the flipbook runs them.

  • Can I automate the writing of XMP metadata into JPEG and TIFF files?

    I have written an ASP.NET 3.5 website application on behalf of an annual international photographic competition. Entrants will be uploading digital photos in either JPEG or TIFF format. Ideally, I would write entrant identity and image title information into the XMP metadata for each image immediately after upload - but so far, I have failed to find any way to do this in ASP.NET.
    Thousands of images are involved, so I need to find a way to automate the metadata insertion, perhaps with some sort of script that uses a text file (extracted from the SQL Server database on my website) as the source of the metadata for a batch of images. Is this the sort of task that can be done by writing a script for Bridge CS3? Are there any scripts already in existence that I could use? I am a total beginner in this area.
    I use a Win XP PC, though I have a colleague who, I think, has CS3 on his Mac (running under the Leopard OS), so scripts for either platform might be usable.
    David

    You are the man X!
    Ok here is another version with a check for the dll.
    #target bridge 
       if( BridgeTalk.appName == "bridge" ) {
    addInfo = new MenuElement("command", "Update Entry Details", "at the end of Thumbnail");
    addInfo .onSelect = function () {
         main();
    function main(){
    var csv = File.openDialog("Please select CSV file.","CSV File:*.csv");
    if(csv != null){
    loadXMPScript();
    csv.open("r");
    while(!csv.eof){ 
       strInputLine = csv.readln();
       if (strInputLine.length > 3) {
          strInputLine = strInputLine.replace(/\\/g,'/');
       inputArray  = strInputLine.split(",");
       var csvFile = new File(inputArray[0]);
       var title = inputArray[1];
       var author = inputArray[2];
    if(!csvFile.exists) {
    alert(csvFile + " Does not exist"); //////////Check if file exists
    return;
    if(csvFile.exists){
    var file = new Thumbnail(csvFile);
    try{
    var xmpFile = new XMPFile(file.path, XMPConst.UNKNOWN,XMPConst.OPEN_FOR_UPDATE);
    }catch(e){
          alert("Problem opening xmp for update:-\r" + file.path +"\r" +e.message);
          return;
    try{
    var xmp = xmpFile.getXMP();
    }catch(e){
          alert("Problem opening xmp data:-\r"  + e.message);
          return;
    xmp.deleteProperty(XMPConst.NS_DC, "creator");
    xmp.deleteProperty(XMPConst.NS_DC, "title");
    try{
    xmp.appendArrayItem(XMPConst.NS_DC, "creator", author, 0,XMPConst.ARRAY_IS_ORDERED);
    xmp.appendArrayItem(XMPConst.NS_DC, "title", title, 0,XMPConst.ARRAY_IS_ORDERED);
    }catch(e){
          alert("Problem writing xmp data:-\r"  + e.message);
          return;
    if (xmpFile.canPutXMP(xmp)) {
    xmpFile.putXMP(xmp);
    }else{
    alert("Can not write new metadata to " + csvFile.spec); 
    xmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY);
    unloadXMPScript();
    function loadXMPScript()
       var results = new XMPLibMsg("XMPScript Library already loaded", 0, false);
       if (!ExternalObject.AdobeXMPScript)
          try
             ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');    
             results.message = "XMPScript Library loaded";
          catch (e)
             alert("Could not load AdobeXMPScript \r" + e.message);
             results.message = "ERROR Loading AdobeXMPScript: " + e;
             results.line = e.line;
             results.error = true;
       return results;
    function unloadXMPScript()
       var results = new XMPLibMsg("XMPScript Library not loaded", 0, false);
       if( ExternalObject.AdobeXMPScript )
          try
             ExternalObject.AdobeXMPScript.unload();
             ExternalObject.AdobeXMPScript = undefined;
             results.message = "XMPScript Library successfully unloaded";
          catch (e)
             results.message = "ERROR unloading AdobeXMPScript: " + e;
             results.line = e.line;
             results.error = true;
       return results;
    function XMPLibMsg (inMessage, inLine, inError)
       this.message = inMessage;
       this.line = inLine;
       this.error = inError;

  • I use images for presentations. Recently I've noticed a decrease in quality ( sharpness and definition) of pictures copied into Keynote. Same problem with both JPEGs and TIFF files. I've recently upgraded to keynote 09, but with no improvement.

    I use images of paintings for presentations. Over the last 3 months or so I've noticed that I cannt copy images (either JPEg or TIFF) without a reduction in sharpness and definition. Hope someone can help with this problem.

    Figured it out myself! yay!  (only took my entire moring)
    The solution:
    Dont print to PDF!
    SAVE AS COPY, then select Adobe PDF and click SAVE, this will bring up a dialog box with the options you need (including the "High Quality Print" Adobe PDF Preset)
    This was not clear in any of the instructions i read

  • How does ACR save edited JPEG and TIFF files?

    When a JPEG or TIFF file is edited in ACR, are the edits destructive when you click the "Done" button, permanently changing the file? Or is the edit info saved in sidecar files like with edited RAW files, not affecting the original file?
    If I reopen a previously edited JPEG file in ACR, will the adjustment settings be the same as where I left off, allowing me to change those edits, like a crop or HSL adjustment? Thanks.

    First: There is a Camera RAW Forum.
    http://forums.adobe.com/community/cameraraw
    Second: It should be fairly simple to test your hypotheses.
    And on my station at least it appears the data is stored in the file and not as a sidecar-file.

  • Exporting RAW to JPEG and TIFF

    Evaluating LE to hopefully improve some workflow. I noticed however, that when export to a JPEG or TIFF format the file size seems much smaller that I'm accustomed. A D100 9.5MB RAW file converts to appx 2.7Mb JPEG at 100% and appx 7MB in TIFF. Currently when I convert I get a 17-20MB JPEG. I'm I missing something in the setup or is this the larger file size LE produces.
    Murray Edwards

    Excuse me Lightroom. I currently use Portfolio 8 to review and tagged a large number of images for production. They have a conversion process that allows you to convert a NEF file to JPEG or TIFF. When converting to from a NEF file that is appx 9.5MB in size to a JPEG at 100% @300DPI which is what my clients require, it produces a a JPEG file that ranges from 17-23MB depending the amount of information. But I still have to pull that image into editing SW to do some cleanup or slight exposure adjustments. It was my hopes that by using Lightroom, I could slimline a couple of these processes. But if LR only provides a exported JPEG file size of what I've seen thus far, then I would unable to accomplish this.
    Is this better clarification of my question?

  • Jpeg and tiff issue?

    I have processed a large number of images and put them into a burn folder. Some have come out as jpeg and others have come out as Tiffs. Why and how do I get them all to be jpeg?
    Terry

    How, exactly, did you "put them in a burn folder"?  If you detail the steps you took in Aperture, someone here can help you. 
    My first guess is that some them were exported from Aperture as TIFFs.  The file format of the files created when you export Versions is set in the Image Export Preset.  These can be viewed and edited at "Aperture➞Presets➞Image Export".

  • Other than screen shots, for printing purposes, I want text and photo on jpeg or .tiff formats? The printer only accepts jpeg and tiff and can't use screenshots.

    Other than screen shots, for printing purposes, I want text and photo jpeg or tiff formats

    Open the screenshot in preview and export it as a JPG

  • JPEG and TIFF Photos Appear Blurry in Photoshop

    Hello,
    After placing my TIFF and JPEG files into photoshop they suddenly get very blurry and out of focus. When I open the original photos in finder they are clear. I am wondering what the problem is here.
    I use Photoshop CS5.1.
    Help appreciated.
    Thank you!

    I have a retina display computer. I think that may be the problem. It is frusterating though becasue now my photos all look really blurry and when I view them on another screen they are clear.
    This is a screen shot of my image width etc etc.

  • Shoot in RAW but to import JPEG and RAW

    im using Nikon d7000. i just shoot in RAW only but i want to import both the JPEG thumbnail (which contains camera adjustments) and the RAW file, is it possible?

    Hello Heny,
    by the way, what do you mean by appropriate import settings?
    Sorry for being somewhat sketchy, I simply meant the "Raw&Jpeg Pairs" brick in the" Import Settings" panel, also set the Adjustment Presets to "none", if you want to see the original camera settings in the Jpeg.
    If you import pairs, you need to tell Aperture, which of the pair you want currently to be the master - that you can change in the "Photos" menu: "Set Raw as master" or "Set jepg as master", for each selected image individually.
    Léonie

  • Can "jpeg+raw" imported single file be split into jpeg and raw files?

    I manage to choose to import my jpeg and raw pictures as single jpeg+raw files accidentely. What means with this format? can I split this "jpeg+raw" pictures into jpeg and raw again? If you edit a jpeg+raw picture are you just working with the raw file, I mean I saw that I could change the exposure on the file which you only can do on raw files. Is it a bad idea to import jpeg and raw pictures as a single file? I really don´t understand the properties of this "jpeg+raw"-file
    /Magnus Lightroom rookie

    With RAW+JPEG, the JPEG is only used for the initial Library view, prior to generating previews from the RAW file. Once you have generated previews and/or developed the image, the JPEG is unused. The edits you make won't affect the JPEG at all. It is, however, still tied to the RAW as metadata, so deleting the JPEG will flag your image as having problems (and list it as "missing" even though it's very clearly in your catalog). Tuning off the option to handle RAW+JPEG together in preferences won't fix past combo images, but it will avoid making this idiotic mistake in the future. After turning it off, export your metadata to the RAWs, then delete them from the library (not the disk) and then reimport them without the JPEGs. Peace will rule the world.

  • Jpeg or tiff files....which ones ?

    I really need to know what is best for keeping the pictures and working with them. I shot my camera Fuji S2 Pro at High quality giving abut a picture of 34 MB. In Tiff format of corse that is to much to keep on the library I was over 36 GB. on my powerboo, so I decided to keep the original on an external hard drive and export the picture on JPEG or Tiff here is the dilema, is beter to export the full image as JPEG (using iphoto export capability) or to reduce the image ...say to 1500 x 1000 Tiff document and then import to the new iphoto library on the poerbook...I undertood that JPEG images lose quality when they are open , and close or ¿just whe they are resave? . Well is perfectly find to stick to JPEG can some body make clear what is the diference beween JPEG and Tiff?. ¿I there a quick way to swicht between iphoto libraries?
    Thanks....

    A quick way to switch between iPhoto libraries?
    Search versiontracker.com for iPhoto Buddy and or iPhoto Library Manager.
    I think that jpegs loose a little quality when resaved, not when opened and closed.
    It would be better to export full size jpg rather than reduce the size.
    bd

  • Edit jpegs or tiffs using Raw interface in Elements 10?

         Hello- When I was using Elements 8, I could easily edit jpegs and tiffs in the Photoshop Raw interface.
          (I know that's not the same as an image originally shot in Raw, but nevertheless it was very useful in some situations.)
          Now I'm using Elements 10, and either I've forgotten how to do it, or it can't be be done.  Can anyone give me some instruction?
    Thanks!

    Hi Dominic - Thanks for the reply ... but I think I must be missing something obvious.
    First, FYI I am using a Mac.  In Elements 8, I was doing exactly what you suggested, and it worked fine.
    With Elements 10, I see no button to switch to Camera Raw. (I can convert to Photoshop Document (PSD,) or save to Photoshop Raw, but tneither of those brings up the RAW interface. If you or anyone can point me to something I must not be seeing, please let me know!
    Thanks Again
    Dan Hall

Maybe you are looking for

  • I can't update my iPhoto 8.1.2, everything says I need to upgrade to 9.0 first - but i can't find 9.0

    I can't update my iPhoto 8.1.2, everything says I need to upgrade to 9.0 first - but i can't find 9.0.  I upgraded to mac ios 10.9.3 but I'm trying to use iphots in icloud and it says my iphoto needs to be updated first.  I just can't figure out how

  • How do I add a picture onto a background in iMovie?

    Hi there! So I'm making a YouTube video and I'm trying to make an outro for the video. I want the background to be white and put pictures of the logos of social media website I want in the outro. When I put the white background in the end it's fine a

  • KM content in the Portal

    We are working with EP 6 SP7, and we've created some KM documents, upload of HTML, with the generated URL, some URL i-views. When acessing the Enterprise Portal, after the user authentication, a new request for user authentication is issued. Is any w

  • How to  include external javascript and css resources to a jsf?

    I need to include external css and javascript files to my jsf page. Using the code below does not work because all the styles on the css page are ignored and the functions within the js files are not executed. <link rel="stylesheet" type="text/css" h

  • Blocked Account - So Frustrated!

    Decided to share the most frustrated experience I've ever had with any technologies - Skype service! It happened second time with my Skype account. But this time it's blocked at the time when I extremely needed it - holidays. My whole family lives ov