Catalog manipulation - swap jpg for tiff

I have a dilemma. I have 20,000 scanned images stored in PSE6. When I started my scanning project 3 years ago I was using and older (and slower) version of PSE and also hard disk space was more of an issue. for each roll of film I created a folder and for each scanned image I saved a 5mb TIFF image and then used a Photoshop batch process to create an identically named jpg in a duplicate folder stored on a separate disk.
The jpgs were then imported into the PSE catalog and keyworded.
I am now finding this hampers my workflow when I want to edit the TIFF (or a copy of) as these are not in the catalog.
I would like to replace ALL the jpg files in the catalog with the corresponding TIFF file AND maintain the keywording ie swap it from the jpg to the TIFF.
I had a method of doing this in PSE5 as the database could be edited - anybody got any suggestions for PSE6?? Many thanks

If you dont want to go into the risky territory of editing the database (the PSE 6 scheme is somewhat differen than PSE 5), heres another approach:
Add all of the TIFFs to the catalog. Then select all the photos and do Edit > Stack > Automatically Suggest Photo Stacks. This will suggest proposed stacks for your photos, and youll have the chance to adjust the stacking. If all goes well (and it often does), each proposed stack will have the JPEG and TIFF version.
Only the JPEGs will have your tagging. But this is one place where the PSE 6 search behavior is to your advantage when you search based on any criteria (e.g. a keyword tag), PSE 6 will include in the results the entire stack if any photo in the stack matches. Thus, it would be easy for you to find the TIFFs you need based on the tagging applied to the JPEGs.
If Automatically Suggest Photo Stacks works well and you have to make few corrections to the proposed stacks, it would only take a couple of hours to do this. (Youll probably spend at least a couple of hours learning how to edit the SQLite database correctly.)

Similar Messages

  • How do I swap out jpgs for tiffs after importing a project edited in Pr, to AE?

    the original Pr project was created from an image sequence of jpgs.
    I'm doing stop motion using Dragonframe to capture the images and here's the workflow i was refered to
    Dragon Frame (DF)
    <span style="color: #00a514;">Capture in Hi-Res (RAW)</span> and <span style="color: #ff271d;">low res jpegs</span>.
    Export 720P file for editing in Premiere (establish file name).
    Light Room (LR)
    Resize RAW files to 2K(tiff), flatten image
    <span style="color: #00a514;">Export 2K image sequences</span> (name the same as 720P files)
    Premiere (PR)
    Cut 720P files to a picture lock.
    After Effects (AE)
    Import Premiere project.
    <span style="color: #ff271d;">Swap out 720P files</span> for <span style="color: #00a514;">2K(tif) image sequences.</span>
    Work on shots as compositions.
    Composite environmental elements.
    Remove rigs.
    Export final project.</li>
    </ul>

    File --> Replace Footage
    Mylenium

  • Location of Camera Raw settings storage for jpg and tiff

    Just upgraded to CS3 on Windows. Cannot figure out where camera raw setting information is stored for jpgs and tiffs, and want to archive settings when I copy the adjusted images to external hard drives. I see no sidecar, and cannot find the info in any other file or folder. David T Cox.

    Since jpg & tiff are documented formats, there's no need for XMP sidecars...the adjustment settings are writtin to the file. Self contained, like DNG.

  • Quality Setting for TIFF/JPG using SaveAs

    Hi,
    I'm trying to export a jpg or tiff as a "preview" image for a single pdf page. However, they look terrible - I am accessing the javascript object through C# and calling "SaveAs", but I can't find any parameters or methods to set the quality of the image. Can anyone help?
    Edit: Using Acro 9/X.
    Thanks

    what i ended up doing was using c# to open a pdf select the first page and copying it to clipboard then pulling the image back out of the clipboard, resizing and saving...
    public static void copyPdfCoverToClipboard(string filePath)
                arc.AcroAVDoc afile = new arc.AcroAVDoc();
                bool returned = afile.Open(filePath,"");
                if (returned == true) {
                    //Console.WriteLine("opened file");
                arc.AcroPDDoc temp = afile.GetPDDoc();
                arc.AcroPDPage apage = temp.AcquirePage(0);
                arc.AcroPoint size = apage.GetSize();
                arc.AcroRect rect = new arc.AcroRect();
                rect.Top = 0;
                rect.Left = 0;
                rect.right = size.x;
                rect.bottom = size.y;
                bool returned2 = apage.CopyToClipboard(rect, 0, 0, 100);
                if (returned2 == true) {
                    //Console.WriteLine("Copied");
                } else {
                    Console.WriteLine("No Copied");
                /**forgot to close and paid the price when i couldnt delelete... **/
                afile.Close(0);
    /** this took some reading to figure out... apparently it has to do with threading... **/
    public static Image collectIMGfromClipAndSave()
                 * ref - http://ryanfarley.com/blog/archive/2006/01/31/15840.aspx (*3)
                 * http://msdn.microsoft.com/en-us/library/system.windows.forms.clipboard.getimage.aspx?cs-sa ve-lang=1&cs-lang=csharp#code-snippet-2
                 * THIS WAS A GRADE A PAIN IN THE BUTT.....
                 * [STAThread] just above Main().... MAKES THIS WORK.....
                 * ouch my head hurts but is happy it works
                ImageFormat theFormat = ImageFormat.Jpeg;
                //System.Threading.Thread.Sleep(1000);
                if (Clipboard.ContainsImage())
                    Image clipboardImage = Clipboard.GetImage();
                    return clipboardImage;
                else
                    Console.WriteLine("nothing contained!!!");
                return null;
    public static Image resizeImage(Image imgToResize, float width)
                //http://tech.pro/tutorial/620/csharp-tutorial-image-editing-saving-cropping-and-resizing
                int sourceWidth = imgToResize.Width;
                int sourceHeight = imgToResize.Height;
                float nPercent = 0;
                /**convert sourcewidth to float and divide width to get percentage*/
                nPercent=(width/(float)sourceWidth);
                /** find new hight and width **/
                int destWidth = (int)(sourceWidth * nPercent);
                int destHeight = (int)(sourceHeight * nPercent);
                /** start of create new image to return... */
                Bitmap b = new Bitmap(destWidth, destHeight);
                Graphics g = Graphics.FromImage((Image)b);
                g.InterpolationMode = InterpolationMode.HighQualityBicubic;
                g.DrawImage(imgToResize, 0, 0, destWidth, destHeight);
                g.Dispose();
                return (Image)b;
            /** wrote this function so i could do overloads **/
            private static void forpdftojpgFunc(string src, string outName, float w) {
                Image image;
                string newPath;
                //Console.WriteLine("Copying page 1 of pdf");
                methods.copyPdfCoverToClipboard(src);
                image = methods.collectIMGfromClipAndSave();
                image = methods.resizeImage(image, w);
                newPath = Path.GetDirectoryName(src) + "\\" + outName + ".jpg";
                image.Save(newPath);     
            public static void pdfPg1ToJPG(string src, float w)
                forpdftojpgFunc(src, Path.GetFileNameWithoutExtension(src), w);
            public static void pdfPg1ToJPG(string src, string outName, float w)
                forpdftojpgFunc(src, outName, w);
    /************************ please note these are functions pulled form different files you will probably need to reorganize them to get them to work properlpy ***************/
    class Program
            [STAThread]/**this makes the magic work I DONT KNOW WHY **/
            static void Main(string[] args)
                List<string> sources = new List<string>();
                string outName = "";
                if (args.Count() < 1)
                    Console.WriteLine("Enter A PDF");
                    sources.Add(Console.ReadLine());
                    Console.WriteLine("file out name");
                    outName = Console.ReadLine();
                else {
                    for (int i = 0; i < args.Count(); i++)
                        sources.Add(args[i]);
                Console.WriteLine("New Width:");
                int width = Convert.ToInt16(Console.ReadLine());
                foreach(string source in sources){
                    if (outName != "")
                        methods.pdfPg1ToJPG(source, outName, width);
                    else
                        methods.pdfPg1ToJPG(source, width);
    I know its not exactly what you are looking for but maybe it can help you in some way...
    I use it to make cover previews for the website in bulk or 1 at a time....
    I hope this helps....

  • Color swap rgb for brg preset?

    Howdy-
         I have a color shift from a Panasonic camera bug in 372 tiffs written to 2 gig sd cards--pink skies, green barns etc. There is a Windows program fix (Irfanview menu item 'swap rgb for brg' click, done) but I am Mac 10.4.11. I was hoping I could develop a preset and run a script applying it to the folder of images but I haven't a clue how to do it and come out with the correct degree of rotation around the color wheel. The jpg previews are fine and show the correct colors; it's only tiffs that go bonkers on 2 gig cards. I don't know if I can use the jpgs as a model color space and apply it to the tiffs. Any ideas?
    Thanks,
    Terrie

    That's the problem; don't know how many degrees to rotate the colors.
    Terrie
    You might go ahead and try to make your own preset;

  • Some CS4 Raw adjustments lost after save to jpg or tiff

    I've been running Photoshop CS4 under Windows XP 64 bit  (with 8Gb RAM) with no problems whatsoever (including use of GPU feature) since November 2008.
    Very recently, with a difficult  event photosession I have a bunch of photos that have are overexposed/blown out highlights which were easily fixed with RAW adjustments in Bridge CS4 with the generous use of the RECOVERY slider as well as EXPOSURE.
    After converting to JPEG (quality 12) or Tiff (as a test) the initially overexposed photos which were fixed and look fine in both Bridge and in Photshop show up overexposed -as if the RAW adjustments have never been made.  In other words the jpg or tiff version appears with blown highlights right next to the corrected RAW version (Canon CR2 files).   I need to emphasize that when the adjusted RAW is opened in Photoshop it looks fine -with all of the adjustments perfect. But once it is saved in Photoshop, the saved file does not look the same, it now has blown out highlights.
    In other words something in the workflow whether Photoshop or RAW is simply not working the way it should and the way it used to work.
    I have downloaded and installed the latest  RAW  5.5. It has not helped at all.  I can't pinpoint the time when this problem first showed up because I normally hardly ever have images with blown highlights. This last  event shoot was very poorly lit and it took a bit of time to figure out how to correct the exposure setting on the spot.
    Have any of you experienced this problem?  I can't get Adobe Tech support telephone support without paying for the privilege, in spite of the fact that I suspect that this is a program bug.
    Any suggestions will be greatly  appreciated and welcome.
    Thanks,
    Dan

    Some additional findings:
    When I looked at the JPEGs which had blown highlights in Bridge, with ACDsee,  they looked fine! So I also tested with Windows Fax Viewer and they're fine again.  Conclusion -Bridge is showing unedited exposure.
    Then in response to posting this same problem on Dpreview I got the solution from Walter Wollert:
    wwollert wrote:
    " Do you have tif and jpg edit options enabled in RAW(ACR)? There was something I ran into that caused the problem like you have. I turned these options off and it cleared up. Why? Ur guess is as good as mine.
    Again, I could be in error, since it happened a while ago and I sometimes have rolling blackouts.
    Walter
    Hey Walter,
    Your suggestion solved my problem. Who would have expected that disabling JPEG editing in RAW would solve this problem?  I have been told to make sure this feature was enabled and in fact I always had this enabled because on occassion I find it very useful to use RAW tools to fix problems in some old JPGs.
    I've been terribly annoyed and depressed about this problem and it just about completely stopped my editing for over 2 weeks, so you can be sure I am extremely thankful for your HEADS ON solution.
    Someone at Adobe should have their head dunked in toilet bowl perhaps?
    I don't ever remember seeing this problem in the past, even though I had the JPEG & TIFF editing enabled, and therefore I thought this "bug" crept in with one of the program updates.
    Thanks a MILLION!!!,
    Dan"
    So that's the answer to the problem!

  • Which adobe acrobat program/software includes conversion of a .pdf into a .jpg or .tiff?

    which adobe acrobat program/software includes conversion of a .pdf into a .jpg or .tiff?

    But the best Adobe app by far for this job is Photoshop. It gives more control, and makes a higher quality.

  • JPG and TIFF colors in Bridge CS5 way off, but fine in Photoshop

    Just started happening, but not sure if it was after updating to Bridge 4.0.3 or Camera RAW 6.2.  The colors for RAW and PSD files are fine in Bridge, but all JPGs and TIFFs colors are blown out and way off.  Opening the JPG or TIFF in Photoshop looks fine though.  Anyone else having this issue, or know how to fix it?
    Update:  If I set the "Develop Settings" in Bridge CS5 to "Camera Raw Defaults" for the JPGs/TIFFs that are displaying improperly, the colors and tones go back to normal, but if I "Clear Settings" everything turns to crap again.

    PLEASE  help save my sanity and my reputation!  --I have spent the last five days exhausting every possible solution to this debilitating issue. I have spent countless hours perusing the web for a solution, spent 4 hours yesterday with Adobe customer support and yet, there is no solution to be found. My issue is that the color (in every file format NEF, JPEG, PSD) completely changes color and desaturates in every one of the adobe products: Photoshop CS5, Camera RAW 6.2, Lightroom 3.2. -
    Everything was working fine, and then out of no where my productivity has come to a crashing halt. This is the steps I have taken to this point:
    -Uninstalling/re-installing all of the software
    -Purging anything that can be purged.
    -Changing color profiles
    -Resetting defaults
    -Resetting preferences
    -Installing updated drivers for monitor, video cards
    -rollling back drivers for monitor, video cards
    -monitor recalibration
    **and finally, today...I set the monitor up on another computer, OS windows xp, and to my complete surprise, the issue persists even on another pc with completely different hardware.
    -I am at my wits end with this. I have clients ringing my phone off the hook. This is crazy!
    -I have sent out for another monitor as a last ditch effort to see if something is wrong with the monitor.
    PLEASE, if anyone has a solution please let me know. Apparently, the folks at Adobe are just as perplexed by these issues as we are, as I have found numerous posts on forums throughout the Internet with this same issue---and yet none of the post every found a solution.
    Primary System
    Windows7 64-bit
    Nvidia fx 580 video card
    Dell U2410 Ultra Sharp Monitor
    Abobe CS5 Photoshop -64-bit
    Lightroom 3.2
    Camera Raw 6.2
    Secondary
    Windows XP
    Nvidia GeForce 8400gs
    Same software, just in a 32-bit

  • How to export the same mb size of my cr2 files into jpg or tiff files in Lr?

    How to export the same mb size of my cr2 files into jpg or tiff files in Lr?
    Let's say my file size is 22mb, when i export the file to tiff or jpg, although Iam careful with the settings- file size, dimension, resolution, I can't manioukate how I want it.
    With jpg I tried everything, no matter what i do or change in files size or resoltion it remains the same size- 7mb as opposed to 22..
    Please advise,
    Best wishes,
    T

    I would noramlly opt for a tiff file, sending such a high res through the nest a nightmare
    This is probably just an improper use of terminology, but the resolution of a JPG, DNG and TIF should all be the same.
    The files differ in size, not resolution and not number of pixels.
    Jpg is not that bad, but its a pitty they have to be edited under a jpg format..
    Your raws are edited as raw. There is no loss of quality in the editing process. The files are then exported as JPG, which will cause a loss of quality. For just about any use, the loss of quality in the image when you export a JPG at quality level 12 is NOT noticeable. For many uses, exporting a JPG at a quality level of 8 will not be noticeable either, unless you intend to print the photo at a very large size. As twenty_one (not his real name) said, "Jpeg compression is fantastically effective".

  • Problems with opening jpg or tiff files in my own file groups

    I have installed Aperture 3.1 from the apps store, but it does not open any of my jpg or tiff files. They are not stored in iPhoto or any other Apple feature, but in my own file system based on types and purpose. They are all scanned analog images made long ago; I do not use a digital camera

    Hello George,
    george e.todd wrote:
    First there is no error message - but BTW I did not have Aperture beforhand; this is only the 3.1 downloaded from the App store. Could that be the reason?
    It is a pity, that there is no error message, so we just have to guess.
    The App-Store version should work just like the boxed version.
    I'll check the info panel of any of my images, but as I've never set up anything like sharing or permissions, etc.,
    You do not have to set up permissions to have problems with permissions. With each file in MacOS there are stored acces rights, and some times these are wrong, if the files are created by certain apps. Then you need to correct those.
    But as Preview can open your pictures, then there seems to be no permission problem.
    To me it seems likely that the images use a codec, that Aperture does not understand.
    I would like to make sure that you can import  any pictures at all into Aperture.
    Could you try to take a picture with "Photo Booth" and try to import it to Aperture?Photo Booth pictures should be imported without problems.
    If you can import from Photo Booth, then your image codecs probably are the problem, and you need to find out what is special with your pictures, maybe you can post one as link for us to inspect.
    if you cannot import any pictures, then probably something is wrong with your Aperture installation. In the latter case you might wish to perform the basic trouble shooting procedure

  • Jpg vs TIFF

    i'm editing an animation project comprised of still images that i'm creating in photoshop. my question is if there is a difference between using Jpg or Tiff files in the quality of the final HD movie, if all i plan to do in FCP is some light color correction?
    is there a visible difference in quality if i export the files as 32 bit TIFF?
    since the TIFF files are 3-4 times the size of the JPGs, will they slow down FC? (with large JPG files it often takes FCP a long time to prepare video for display)
    much obliged,
    dn

    Jpegs are highly compressed, Tiffs usually are not compressed.
    FCP prefers Tiff. If your images start off as jpeg, they will not be improved in quality by converting to Tiff. Rendering Tiff will be faster because FCP does not have to decode the jpeg compression before rendering.

  • Automatically replace jpgs with tiffs of the same file name.

    Is there a way to relink automatically files replacing jpgs with tiffs of the exact same file name?
    Thank you!

    http://indesignsecrets.com/relink-from-one-image-file-type-to-another.php/comment-page-1
    Relink from One Image File Type to Another
    by:  David Blatner  | February 20, 2009
    18 Comments
    Share This
    Eugene asked an excellent question in the comments to this old post:
    Say if I do decide to change the .tif to .psd and I move the .tifs out to another folder, would it or would it not be a good idea if Indesign said, “Hey, those .tifs aren’t available, there’s a similar name with a .psd extension, would you like to use these instead?” Then you just press, yes use my .psd files.
    Many folks had asked for this ability, and so Adobe delivered: InDesign CS4 has a feature called Relink to Folder. It’s an awesome command (it lives in the LInks panel menu) because it basically directs InDesign to some other folder on your computer (or server, or whatever), where your images may live. So you can relink a hundred images from one folder to another quickly.
    But even cooler, you can tell InDesign whether to insist on the same file type or use a different one. Here’s the control in the Relink to Folder dialog box:
    So, you select one or more images in the Links panel, choose Relink to Folder, tell it which folder to look in, and choose a file extension. The original image doesn’t even have to be “Missing”! In fact, the two images (psd and tiff, in your case) can even live in the same folder.
    Sweet, yes?

  • Shift+Ctrl+Cmnd+4     Capture Clipboard as JPG not TIFF?

    Hi,
    i am using very often this shortcut : Shift+Ctrl+Cmnd+4
    When i used Shift+Ctrl+4 it is doing the file on Desctop as a JPG file. That's perfect.
    But when i used Shift+Ctrl+Cmnd+4 to Clipboard and then paste it into Mail it paste as a Tiff.
    How can i change Clipboard file format to JPG from Tiff?
    Snow Leopard : 10.6.7
    Greetings from istanbul

    It seems like when doing the Screenshot + Ctrl for saving it to clipboard, it is always saved as Tiff. Any defintion you do either with 3rd party applications or with terminal command is only effect when the file is actualy saved to Hard disk. It will take no effect on the clipboard.
    No, this is not correct. As I had posted earlier, you can look directly at what is in the clipboard by using Finder>Edit Menu>Show Clipboard. The system default format for a screenshot is PNG, and if you capture a normal screenshot to the clipboard by adding the CTRL key and look directly at the clipboard you will see that the image there is in PNG format:
    If you then use a utility like TinkerTool to change the capture format to JPEG, then that is what will go to the clipboard when you add the CTRL key:
    When you then paste the image somewhere, the app that receives the image can change the format. In my system, a default PNG clipboard screenshot image that is pasted into Mail stays as a PNG image. However if you change the capture format to JPEG, then the JPEG clipboard screenshot image gets converted to TIFF when it is pasted into Mail.

  • Convert from jpg to TIFF G4

    I need to convert a jpg image into a TIFF G4 format. I know Java JAI can do it for TIFF with no compression, but I need it to be G4.
    Platforms: WIN, SOLARIS.
    Any Idea.
    Thanks.

    I don't know where I read it but I guess I was wrong. JAI does support TIFF G4 compression. The problem I am facing now is that I get the following error when I try to create the TIFF G4 image from the JPG :
    java.lang.Error: Bilevel encodings are supported for bilevel images only.
         at com.sun.media.jai.codecimpl.TIFFImageEncoder.encode(TIFFImageEncoder.java:388)
         at com.sun.media.jai.codecimpl.TIFFImageEncoder.encode(TIFFImageEncoder.java:161)
         at Imagen.main(Imagen.java:68)
    Note: I get the TIFF with no compression ok.The problem arises when I try G4 compression.
    Any hints?
    Thanks for helping.
    SOURCE CODE:
                   // Pass form Base64 to JPG
                   byte[] b64DecodedJPG =new BASE64Decoder().decodeBuffer("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");
                   ByteArrayInputStream baisJPG = new ByteArrayInputStream(b64DecodedJPG);
                   ImageDecodeParam param = null;
                   ImageDecoder dec = ImageCodec.createImageDecoder("JPEG", baisJPG, param);
                   RenderedImage op = dec.decodeAsRenderedImage();
                   // Create the TIFF G4 image
                   FileOutputStream fs = new FileOutputStream("radar.tiff");
                   TIFFEncodeParam tiffparam = new TIFFEncodeParam();               
                   tiffparam.setCompression(TIFFEncodeParam.COMPRESSION_GROUP4);
                   ImageEncoder enc = ImageCodec.createImageEncoder("tiff", fs, tiffparam);
                   ParameterBlock params = new ParameterBlock();
                   params.addSource(op);
                   RenderedOp image2 = JAI.create("scale", params);
                   enc.encode(image2);

  • I save two copies of an image, one jpg, one tiff.  LR will not display the jpg or let it be available, only the tiff.   When I try to put another copy of the jpg into the folder LR says the jpg is already there.e

    I converted an rgb image into a grayscale image and saved two copies, one jpg, one tiff, into my chosen folder.
    I tried to import both into LR, which only showed the tiff in the import dialogue.  After import LR only shows the tiff in the folder but when I try to insert the jpg into the folder using Explorer LR reports that the jpg is already in folder.
    How can I get LR to display this jpg image?

    Hi,
    I have an example here that is intended to demonstrate the difference between Positioned and Flowed subforms: http://assure.ly/i8pSdy.
    This shows how you can use a slider to change the dimensions of the image object.
    I have extended this to an example with buttons to scale the image: http://assure.ly/i8ZI5Y
    This may not be fine enough for your purposes, but it may give you some ideas.
    Good luck,
    Niall
    Assure Dynamics

Maybe you are looking for