How to get thumbnails to indicate whether JPEGs or Raw files?

In earlier versions of iPhoto I could look at a photo thumbnail and immediately tell whether it was a JPEG or a RAW file because the description below the thumbnail indicated such. With iPhoto version 9.2 the thumbnails do not include this information. Is there anyway I can cause this information to be displayed beneath the thumbnails? I shoot JPEG + RAW and would like to distinguish between JPEG and RAW files by merely looking at the thumbnails.
Bob

Try this from a different perspective:
Why are you shooting Raw?
In order to obtain the highest quality images my D700 is capable of producing.
When a camera takes a shot a Raw is generated, this Raw is processed by the camera into a Jpeg and that's goes onto your computer.
High end cameras allow you to step into that process. It stops the Jpeg being processed and allow you to bring the Raw data directly to your computer so that you can do the final step yourself: process and out put the Jpeg.
But the point of the exercise is to produce a Jpeg that can be used/shared/printed etc.
The point of shooting Raw is that you prefer the results when you process the Raw compared to what the camera does.
If you think the job the camera does is good, then don't shoot Raw.
If you think it's not, then shoot Raw and don't shoot Jpeg.
Shooting both makes little sense - excepting the scenario detailed in my para above.
On my iMac monitor I’m looking at the thumbnail of the last RAW file I processed.  Since a RAW file is not even an image I presume that what I am actually seeing is the JPEG preview you referred to. Correct?
No. The thumbnail is different again. Usually, it's actually a thumb copied from the one created by the camera and stored in the Raw file.
To see the Preview drag the shot to the Desktop from the iPhoto Window - that's it. Open it in Preview and compare that with the Jpeg version from the camera - just visually, not file sizes etc. (I'll come to that later on.)
I do all of my editing in Photoshop Elements, so in order to convert this RAW file I right clicked on the thumbnail and selected “Edit in External Editor” whereupon the RAW file opened up in Adobe Camera Raw.
In the iPhoto Preferences -> Advanced, have you selected to 'Use Raw when using external editor' ? If not then you're not processing Raw at all, just the Jpeg preview.
Yes, I selected "Use RAW when using external editor."
That workflow is quite convoluted
Camera to iPhoto, iPhoto to ACR, ACR to Elements, Elements to Finder (tiff), Finder to iPhoto (Sharpening), iPhoto to Finder (Jpeg) and then Finder to iPhoto.
At the end of it you're left with the Raw, Camera Jpeg, iPhoto Preview, a tiff and a couple of Jpegs, right?
Only one JPEG.
That's too complex and worse, there is no connection between the Master Raw and the final Jpeg. They're not even linked in the iPhoto database. You can't revert from the Final Jpeg to the master Raw.
I can't think of a reason why I would I want to revert from the final JPEG to the master RAW. The master RAW is already available.
Even though my workflow gives me good results it is more complex than I would like it to be. Since acquiring my new iMac last January I have been seriously thinking about downloading Aperture 3 from the Apps Store for a mere $79 and using it to manage and edit my images. Presumably that would give me a less convoluted workflow. A big question will be what to do with all of the thousands of images I have stored in iPhoto--leave them where they are as referenced files or move them into Aperture where they will be managed files. My initial inclination is to leave them in iPhoto.
To use the iPhoto preview just... use it. If you import a Raw and then try do anything with it, email, upload, print etc then it's the Jpeg Preview that is used.
If you process the Raw in iPhoto then the Preview is regenerated incorporating the decisions you made.
If you export (File -> Export) you can use many settings to set the level of compression, size and so on of the resulting file.
Put it this way: I'd be 99% sure that the iPhoto preview will be good enough for sharing by email or online. It may also be perfectly good enough for printing too - but if it's not that's when you export to the quality you prefer.
This is good to know. Sometimes I just want to quickly e-mail a group of JPEGs without having to go through the process of generating JPEGs by processing the RAW files. I previously mentioned that by dragging the thumbnail labelled RAW to my desktop it becomes a JPEG which can then be dragged back into the iPhoto Library. If I'm shooting only RAW is that the best way to quickly obtain a JPEG? By the way, I just did this with one of my thumbnails labelled RAW. The size of the JPEG thereby obtained was 6.3 MB. This is larger than the size of the high quality camera-generated JPEG which is 5.8 MB. This would seem to indicate that the iPhoto-generated JPEGs are of high quality. In a side-buy-side comparison the two images looked very similar except for the iPhoto-generated JPEG being a little brighter than the camera-generated one.
So if I am understanding this situation correctly it appears that I can cease shooting JPEG +RAW and instead shoot only RAW. Then for best results I will process RAW files to produce highest quality JPEGs and for less demanding requirements and for quick responses I can use the iPhoto-generated JPEGs.
Question: Even though I have been shooting JPEG + RAW for a relatively short time I have managed to accumulate a goodly number of camera-generated JPEGs. How can I most readily delete these JPEGs without having to go through my iPhoto library and tediously deleting them one-by-one?
Regards
TD

Similar Messages

  • How to get the full path instead of just the file name, in �FileChooser� ?

    In the FileChooserDemo example :
    In the statement : log.append("Saving: " + file.getName() + "." + newline);
    �file.getName()� returns the �file name�.
    My question is : How to get the full path instead of just the file name,
    e.g. C:/xdirectory/ydirectory/abc.gif instead of just abc.gif
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JFrame {
    static private final String newline = "\n";
    public FileChooserDemo() {
    super("FileChooserDemo");
    //Create the log first, because the action listeners
    //need to refer to it.
    final JTextArea log = new JTextArea(5,20);
    log.setMargin(new Insets(5,5,5,5));
    log.setEditable(false);
    JScrollPane logScrollPane = new JScrollPane(log);
    //Create a file chooser
    final JFileChooser fc = new JFileChooser();
    //Create the open button
    ImageIcon openIcon = new ImageIcon("images/open.gif");
    JButton openButton = new JButton("Open a File...", openIcon);
    openButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showOpenDialog(FileChooserDemo.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    //this is where a real application would open the file.
    log.append("Opening: " + file.getName() + "." + newline);
    } else {
    log.append("Open command cancelled by user." + newline);
    //Create the save button
    ImageIcon saveIcon = new ImageIcon("images/save.gif");
    JButton saveButton = new JButton("Save a File...", saveIcon);
    saveButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showSaveDialog(FileChooserDemo.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    //this is where a real application would save the file.
    log.append("Saving: " + file.getName() + "." + newline);
    } else {
    log.append("Save command cancelled by user." + newline);
    //For layout purposes, put the buttons in a separate panel
    JPanel buttonPanel = new JPanel();
    buttonPanel.add(openButton);
    buttonPanel.add(saveButton);
    //Explicitly set the focus sequence.
    openButton.setNextFocusableComponent(saveButton);
    saveButton.setNextFocusableComponent(openButton);
    //Add the buttons and the log to the frame
    Container contentPane = getContentPane();
    contentPane.add(buttonPanel, BorderLayout.NORTH);
    contentPane.add(logScrollPane, BorderLayout.CENTER);
    public static void main(String[] args) {
    JFrame frame = new FileChooserDemo();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.pack();
    frame.setVisible(true);

    simply use file.getPath()
    That should do it!Thank you !
    It takes care of the problem !!

  • How to get nodes and its attributes of an XML file usiong DOM parsing?

    how to get nodes and its attributes of an XML file usiong DOM parsing?
    i am new to XML parsing.......
    Thanking you........

    import org.w3c.dom.Document;
    import org.w3c.dom.*;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;      ...
    //Setup the document
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
         DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
         Document doc = docBuilder.parse (new File("MY_XML_FILE.xml"));
    //get elemets by name
         String elementValue = doc.getElementsByTagName("MY_ELEMENT").item(0).getTextContent();
    //This method can return multiple nodes, in this instance I get item(0) , first nodeRead the api for other methods of getting data.

  • How to get to know the size of the biggest file in ContentServer

    Dear colleagues!
    Does anybody knows how to get to know the size of the biggest file in the ContentServer?
    Vladimir
    Edited by: Vladimir Pavlovsky on Mar 2, 2010 11:11 AM

    Vladimir Pavlovsky wrote:>
    > Dear colleagues!
    > Does anybody knows how to get to know the size of the biggest file in the ContentServer?
    Hi Vladimir,
    I assume you want to know the size of the biggest file stored in the content server don't you?
    This information is available through the content server API layer only - so better open this question in the knowlegde management forum.
    regards,
    Lars

  • How do I stop aperture from reprocessing my my raw files on import

    how do I stop aperture from reprocessing my my raw files on import

    Here's the thing: You didn't shoot in B&W and the Raw is in colour.
    Your camera shoots everything in colour because that's what the sensor in the camera is - RGB. For B&W shots what happens is that the camera adds a display tag to the shot - and this is written to the Jpeg you shoot, and so it displays.
    But a Raw is a sensor dump from the camera. This is all the data that the camera has, and all of that is in colour, so it shows in colour on Aperture.
    Convert to B&W in Aperture or shoot Jpeg.
    Regards
    TD

  • I just upgraded from LR 3.6 to 4, I can't get 4 to open canon mark iii raw files.?

    I just upgraded from LR 3.6 to 4, I can't get 4 to open canon mark iii raw files.?  Also, does CS5  not read Canon 5D Mark iii files either?  thanks

    For Cs 5, please use the latest version of Camera raw. Cannon 5D Mark III is supported on Camera raw 6.7. Update the software or download install the camera raw 6.7 from the Adobe Website.
    Lightroom 4, please wait for the next update of camera raw for the support of Cannon 5D Mark III. You may try using the beta version of Camera raw 7.1 available on Adobe labs.

  • How to get thumbnails to show as the photo instead of a folder with date shot?

    How do I get thumbnails to show as the photo instead of as a little folder with the date shot on it?

    You gave NO details whatsoever.  No wonder your post has rewmained unanswered this long.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • How to get result of PING whether TRUE/FALSE and prompt message to user?

    Hi all!!!!
    In Forms 6i, I need to know how to get the result of a ping if the ping is sucessful or not. It should prompt the user whether the connectivity is there or not after the ping statement which is HOST('PING 191.10.10.40'). As of now, when the user select the desired LOV, the corresponding HOST statement is executed. But if the connectivity is not there, the user is left in blank with a hanging situation... So can we not prompt the user if the connection has been failed or not?
    Regards

    Hi,
    You can try this.
    Redirect the output of the ping test to a file. Read the file using TEXT_IO and see if the test is passed. For ex
    host('ping <your_ip> > c:\ping_test.log');Will redirect the ping output to ping_test.log file under c:\ drive.
    Open the file using TEXT_IO and check if you have the text "Packets: Sent = 4, Received = 4, Lost = 0 (0% loss)". If you have, then the host is reachable. Otherwise its not. Depending on that, you can change the flow of your application.
    -Arun

  • PSE6 FLV Share - how to get thumbnails?

    Hi,
    I have tried all the available templates (that allow video) to publish for the web various video clips (FLV format).
    Does anyone know how one can thumbnails to be visible on the album pages so one can select the relevant clip?
    At present all one can do is advance through the clips on the player with no knowledge of what the clips are until they play.
    Thanks,
    Stewart

    You gave NO details whatsoever.  No wonder your post has rewmained unanswered this long.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • How to get Adobe Bridge CS5 to open an FLV file in another program?

    Hello Folks,
    How do I get Adobe Bridge CS5 to open an FLV file in another program other than Flash CS5?
    When I double click on an FLV video, it always opens Flash CS5.  I want to be able to use one of my other FLV player apps instead.
    Thanks

    How do I get Adobe Bridge CS5 to open an FLV file in another program other
    than Flash CS5?
    When I double click on an FLV video, it always opens Flash CS5.  I want to be
    able to use one of my other FLV player apps instead.
    For single use when having pointed the cursor on that file with right mouse
    click choose open with and choose the wished application from the fly out
    menu.
    For permanent use go to Bridge Preferences File Type Association section and
    from the list find the .flv file extension. In this line you can select the
    little triangle next to Adobe flash and from the list select the one you
    prefer, now the all open in this chosen app.

  • How to get the correct size of the loaded swf file?

    final public class main extends Sprite
      public function main()
       loaderInfo.addEventListener(Event.COMPLETE, _onLoadCompleted);
      private function _onLoadCompleted(event: Event): void
       var tw: int = stage.width;
       var th: int = stage.height;
       var tsw: int = stage.stageWidth;
       var tsh: int = stage.stageHeight;   
    Above is my simple as3 project in flex builder 3.
    My screen resolution is 1920*1080, when debugging, the swf is stretched to the full client area of the IE, but the stage.stageWidth is 500 and the stage.stageHeight is 375, both the stage.widht and stage.height are 0, who can tell me why and how to get the right size of the swf file, named the client area size of the IE in this situation?
    Thanks very much!

    The HTML wrapper might resize the SWF later, so wait a frame and check stageWidth/stageHeight again.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • How to get the actual font name from a font file?

    Hi
    I have only the font Path I have to get the font name from that path. Any idea how to get the actual font name?
    Thanks,

    I would ask you these questions:
    Why do you need to do this?  What are you ultimately trying to accomplish?
    Are you really asking about the InDesign SDK?
    Do you really need to get the "name" of a font from an arbitrary file?  Or do you want information about a font installed on the system?  If so, what OS?
    Do you need to be able to handle any font format?
    Which font "name" do you mean?
    What language do you want the name in?
    (1) It's not clear what you're trying to accomplish.  A bit more information about your ultimate goal would be helpful.
    (2) This question is not at all specific to the InDesign SDK.  Are you really trying to do something in the context of an InDesign plug-in?  If so, you probably want to look at IID_IFONTFAMILY and the IFontFamily::GetFamilyName function.
    (3) If you are asking more generally, Windows and Mac both have system API calls to get this information, although those tend to deal with installed system fonts, not with arbitrary font files per se.
    Also, you can parse the name table from a True Type or Open Type font without using any system APIs; as True Type and Open Type are well-documented standards.  I would start by reading these:
    The Naming Table
    Font Names Table
    (4) Although there are other standards, such as Type 1 (PostScript) fonts, and True Type Collection files and other formats, especially on Mac.
    (5) Also, when you start down this road, you will quickly realize that your seemingly simple question is actually ambiguous, and that the answer is kind of complicated, because a font can have many names (a family name, a full font name, a style name, a PostScript name, etc.).
    (6) And not only does a font have multiple names, it can have each of those names in multiple languages and encodings.
    Any clarification would make this a better question.

  • How to get this  com.sap.portal.admin.wizardframework_api.jar file

    Hi this is related to the wizard creating component required .jar file. Can any body tell me , how to get this jar file. I have searched in my IDE plug-in's folder. But i have nt find this.
    com.sap.portal.admin.wizardframework_api.jar
    how to get thid jar file.
    REgards
    Vijay

    Hi,
    You should have com.sap.portal.admin.wizardframework in your SharingReference:
    <property name="SharingReference" value="com.sap.km.application, com.sap.portal.admin.wizardframework"/>
    Pls check this link,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/bf4172cb951d66e10000000a1553f6/content.htm
    Hope this helps !
    Regards
    Srinivasan T

  • OMB Plus : how to get all the generated messages into a text file ?

    Hello,
    I wrote an OMB TCL script and I would like to know how to get all the messages generated during the exécution into a text file.
    I tried this, but it works only for a puts command :
    set DesProjet ACT_1
    set filename [ open "c:\\temp\\INFDE_010_IMPORT_REPOSITORY_$DesProjet.log" w]
    puts "test"
    Thank you for your help

    Hello Alain, you should try the OMBLOG variable. If you set it inside OMBPlus:
    set OMBLOG c:/temp/mylog.txtthen all the OWB specific commands are logged with their output. By OWB specific I mean all those that start with OMB.
    This is more than what you see in the interface, because:
    - messages inside procedures are logged; you wouldn't see them on std.output when you call a proc
    - variables are resolved, so if you issue the command
    set my_var VERY_IMPORTANT_TABLE
    OMBDROP TABLE '$v_myvar'the log will show:
    OMBDROP TABLE 'VERY_IMPORTANT_TABLE'
    Table dropped
    and you know something is wrong... so OMBLOG is very useful to intercept all manipulations on you repository.
    If what you want instead is a dump of the screen output when you execute a script, I suggest you redirect standard output from the operating system command line. Unfortunately OMBPlus doesn't support all advanced redirection and tracing features of the TCL language.
    Hope this helps, Antonio

  • How to get the com.sap.portal.admin.wizardframework_api.jar file

    Hi this is related to the wizard creating component required .jar file. Can any body tell me , how to get this jar file. I have searched in my IDE plug-in's folder. But i have nt find this.
    com.sap.portal.admin.wizardframework_api.jar
    how to get thid jar file.
    REgards
    Vijay

    Vijay,
    You can access the above mentioned par file from this location,
    System Admin -> support -> Support Desk->ROOT/WEB-INF/deployment/pcd (download this folder)
    ->com.sap.portal.admin.wizardframework.par.bak->extract the file
    alternatively,
    u can find the same in,
    \j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\com.sap.portal.admin.wizardframework\lib
    Thanks & Regards,
    Ramganesan K
    Keane Inc

Maybe you are looking for

  • Change GR based IV indicator in Me22n after GRN reverse

    Dear All, I have issue related to GR based IV. I created a PO with delivery cost. did GR wrt PO where Material account got debit and Gr/ir and freight clearing got credit. During MIRO user did not found any freight amount(i.e Clearing account). So th

  • How can I upload the photos that I made an my old iPhone from iCloud to my new iPhone?

    ICloud configures the new photos that I make with both my iPhones to both of my iPhones, but I don't get the old ones on my old iPhone to my new iPhone. Can't I just make sure all data from both my iPhones are put together on my new one, so I can sto

  • PO creator not getting mails if the approver rejects the same

    Hi Friends, We have an issue in SRM PO approval workflows, our requirement is that the creator should get a mail notification if the PO is rejected by the approver. This is not happening, while in case of shopping cart the creator is getting the mail

  • High waits on scatter read and buffer busy wait ..

    one of my system is undergoing some serious problem ~ i checked when some sql querying few large tables ( 30 millions rows ,partioned ) system waits became significant .. the ones stand out are scatter read and buffer busy wait ... on the longop , yo

  • HTML Character entity references on SQLQuery

    I am trying retrieve the data thru XMLElement and I like to do a HTML Character entity references. I guess XMLElement does it with the proper character set translations and I was not successul in getting it correct. Could you please help me out. My D