Save version as new file type in same Library

I know I have to be doing something wrong here, but I can't figure this out.
Is there any way to save a version of an edited image within the same library project, but as a different type?
For example, I am creating HDR images in a 3rd party application, and the end result is a TIFF.  I save these edited images in a separate folder on my desktop for my HDR images, but then I have to reimport them into Aperture.  As these images are TIFF files, and now that I have them back in Aperture where I do some final tuning, I have to the export them again to another folder as JPG's, and then reimport them into Aperture so that they stay in the same Library.
Once I have done my final color corrections, why can't I just do a "Save As" type function, within the same project and save the TIFF's as JPG, or PNG, or whatever?  Why is Aperture forcing me to export and reimport just to change the file type? 
Thanks in advance,
Mark

I'm afraid you lost me about half way through that.
Images in Aperture do not have a file type.  This is one of the hurdles you must clear in order to take full advantage of Aperture's brilliance.  Your images, in practical terms, do not exist as image-format files (such as JPG, etc.) within Aperture.  Exporting is when they are converted to an image-format file.  In point of fact, "export" in Aperture, means "create from this image  an image-format file of the type I specify and save that file to my hard drive".
That's why there is no "Save as ... ".  Images in Aperture do not exist as single, sharable, files (and, perforce, do not have in image format).  The equivalent to "Save as ... " is, in Aperture, "Export".  And it has to be "Export" because once you give an image a format it can no longer be in the Library.  (Unless you import the new image-format file, in which case Aperture makes a new image with the imported file being the new image's Master; the new image in Aperture, once again, has no shareable single-file image format.)
When I do HRD or panaroma stitching, I Stack in Aperture the photos I will use, export them to the program I will use, use that program, then import the result (always one file) and make it the pick of the Stack.
Hope that helps.
Message was edited by: Kirby Krieger

Similar Messages

  • To add new file type in SharePoint

    Hi,
    I am trying to add new file type for sharepoint site like MSWord, PDF etc.,
    Are there any ways to create new file types in SharePoint? My requirement is to create a file type for AutoCAD drawings (.dwg format).
    Please note, we are using SharePoint 2007 version!
    Thanks

    Browse to the Central Admin site
    Select the Operations tab
    Under the Security Configuration section, click the link for
    Blocked file types
    Select the Web Application that you would like to modify from the drop down list
    Each blocked file extension displayed in the list is blocked by SharePoint.  To enable the blocked file extension, simply remove it from the list.
    Check with your type and if its there unblock it.
    Regards, Dharnendra Shah "strong belief is the only way to success"

  • New file type for XCode

    Hi!
    I want the XCode to apply C syntax coloring to the .nc files, which are not recognized by it. There are settings to change coloring schemes for known types, but i couldn't find anything to add a new file type. Each time I open a .nc file, I need to select the syntax coloring scheme manually..
    Anybody has any idea on where to find settings for that?
    best,
    Onur.

    I ran into this same problem just yesterday and I was glad to even find out that I could temporarily fix the problem by relaunching the finder. It also happened to my while I was renaming files. It allowed it for a few files and then all of a sudden, nothing. I couldn't type, or do any key commands with anything related to the finder, although all of my application files were fine.
    I am clueless as to how to permanently fix this problem, although i am thankful to read on how to relaunch the finder to fix it for a bit.
    I'll keep checking back to see if some guru stops by with the answer.
    Thanks for posting!

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • Ironport - new file type group

    Is it possible to create a new file type group on an Ironport c360?  Or is is possible to add a specific file type to an existing group?  I figure there is a config file somewhere with this data but, so far, I'm unable to find it.
    Thanks
    If this is the wrong location for this discussion please redirect me.  I have not been able to read any existing discussions on in the official ironport area.

    Kirk;
      You may want to move this thread to the IronPort > Email Security community to get better exposure.
    Scott

  • Add New File type to Symbian os 9.1 ?

    Hi all
    I wanna Know is there any way to add new file type (for example AVI Filetype) in S60v3
    - I know that Y-Task (Filetype) can modify File Association (But only for Known file types by Symbian os & cant add New file type)
    Is there another app or trick?
    Thanks in advance

    I don't think there is any trick yet available. But there are 2-3 applications that play AVI media files.

  • Possible? To add new file types to Bridge?

    When a file isn't listed in the file type list in the preferences, then Bridge (in Vista) doesn't allow me any changes for the "open with" function. It seems that I MUST live with Bridge's own handling for this file, even when it is false. (e.g. I already posted that Bridge falsely opens MindManager files using Safari)
    From other management software I know that it is sometimes possible, to manually add new file types to the preferences, e.g. editing an ASCII/txt file where they are listed. This is less elegant, but I would do it, if no other choice. Is there such a file in Bridge? Or do you know an other way to add new file types?
    Thanks, Michael

    Hi,
    You can not extend Oracle Data Mining to have your own algorithm.
    However, you can integrate mining implementations within the DB via SQL, PL/SQL among others.
    Thanks, Mark

  • Download older version of a file from SharePoint Document Library using CSOM and 404 error

    Hi,
    I am trying to download previous versions including Major and Minor versions of documents from SharePoint Online using CSOM. I get 404 error when I try to download the file. I found several posts on various discussion forums where people are getting same
    error but none of those have any solution/answer. Below is one of the threads and sample code I have tried that results in 404 error. If I use the link in browser directly, I am able to download the file. Also I am able to download the current version of file
    using CSOM without any problem, it is only the older versions that give me 404 in CSOM.
    http://qandasys.info/how-to-download-the-historical-file-version-content-using-csom/
    public int GetStreamFromFile(string docid, string lib, string fileurl, ClientContext clientContext, int iuserid, string Version, bool isCurrrent)
    if(!isCurrent)
    List LibraryName = clientContext.Web.Lists.GetByTitle(lib);
    clientContext.Load(LibraryName);
    clientContext.ExecuteQuery();
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml = "" + fileurl +
    Microsoft.SharePoint.Client.ListItemCollection collListItem = LibraryName.GetItems(camlQuery);
    clientContext.Load(collListItem, items => items.Include(item => item.Id, item => item["FileLeafRef"], item => item["LinkFilename"],
    item => item["FileRef"], item => item["File_x0020_Size"], item => item["DocIcon"], item => item.File.Versions));
    //clientContext.Load(collListItem);
    clientContext.ExecuteQuery();
    foreach (Microsoft.SharePoint.Client.ListItem oListItem in collListItem)
    //string fileurl1 = (string)oListItem["FileRef"];
    //string filename = (string)oListItem["LinkFilename"];
    foreach (FileVersion version in oListItem.File.Versions)
    if (Version == version.VersionLabel)
    //Added excutequery to get object one more time as per blog
    //http://social.technet.microsoft.com/Forums/de-DE/sharepointdevelopmentprevious/thread/88a05256-8694-4e40-863d-6c77512e079b
    clientContext.ExecuteQuery();
    FileInformation fileInformation = ClientOM.File.OpenBinaryDirect(clientContext,version.Url);
    bytesarr = ReadFully(fileInformation.Stream);
    Darwaish

    Hi,
    According to your description,
    I know you want to get older version of a file from SharePoint Document Library using Client Object Model.
    The following code snippet for your reference:
    public void GetVersions()
    ClientContext clientContext = new ClientContext(“http://SPSite”);
    Web site = clientContext.Web;
    clientContext.Load(site);
    clientContext.ExecuteQuery();
    File file = site.GetFileByServerRelativeUrl(“/Shared Documents/mydocument.doc”);
    clientContext.Load(file);
    clientContext.ExecuteQuery();
    ListItem currentItem = file.ListItemAllFields;
    clientContext.Load(currentItem);
    clientContext.ExecuteQuery();
    FileVersionCollection versions = file.Versions;
    clientContext.Load(versions);
    clientContext.ExecuteQuery();
    if (versions != null)
    foreach(FileVersion _version in versions)
    Console.WriteLine(“Version : {0}”,_version.VersionLabel);
    More information:
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.file.versions.aspx
    Best Regards,
    Dennis Guo

  • Is possibile to syncronize a second new ipod with the same library?

    IS possibile to syncronize a second new iPod with the same library?

    My gf was having the same issues and also with a big echo every time I called her either from my 4S or even fron a land line as per other comments here. They told he to take it into the Apple store and they reset the software and now it's working fine.....so far.
    Now today my bluetooth earpiece has decided to stop working for some unknown reason and then the last person that called me said my phone keep cutting out. I don't know whether that was because I had to turn off my bluetooth to answer the phone or what.
    I suspect Apple will be sending out an update to fix some of these reported issues but in the meantime the local Apple store seems to be the only option. Just hoping I don't have to take that option as that would require a huge inconvenience for me as neither of the two stores in the Vanvouver area are remotely close to me.
    Good luck.

  • How can I sync my iphone in a new computer using the same library

    Is there any mean of syncing my iphone with a new computer using the same library?

    Restore your iTunes library backup to your new computer... http://support.apple.com/kb/ht1751

  • How do I change the default save location for new files in Pages back from iCloud to my Documents folder?

    I just upgraded OSX to Mountain Lion and Pages to 4.2, and because OSX is syncing with my iCloud account, when I go to save a new file in Pages it defaults to try to save to my iCloud account rather than giving me the folder structure on my hard-drive that I prefer. It requires two extra steps to save to the proper place in my Documents folder on my hard drive.
    Is there a way to reset the default so that when I go to save a new file, the folder structure opens to the last saved folder (like it does in other non-iCloud applications) rather than defaulting to my iCloud, and to do it without just removing documents from my iCloud account entirely?
    I checked the Preferences for both Pages and iCloud and found nothing about this.

    What I meant is turn off Documents and Data in iCloud in OS X. Keep it on on your iOS devices. iCloud will sync documents between the iOS devices and make them available on the iCloud web site, but it won't mess up iWorks' open and save dialog boxes. It also won't assume that you want all your documents in iCloud, which I think is undesirable anyway.
    Keep iOS and OS X separate, and use the web site to move files between the two as necessary.
    iOS iWork is different from OS X iWork. There are fewer fonts on an iOS device. iOS iWork programs have slightly different feature sets than OS X iWork programs, and the file formats are different. iCloud automatically converts the file format when necessary, but if you make a habit of saving things directly to iCloud, you are limited to the lowest common denominator between the two versions of iWorks. So why would anyone want iWork on the Mac to open and save documents on iCloud by default?
    If you want to store files in the cloud and sync them on your Macs, SugarSync is a much better solution. It lets you choose your sync folders, it doesn't make you reorganize your files, it lets you sync all file types, it doesn't convert files to a different format and back, and it stores everything in the cloud, too. Just the simle act of saving a file backs it up and syncs it. I wouldn't live without it. iCloud is best with iTunes purchases and synchronizing Mac settings and iOS files; I woudln't live without it. The two make an unbeatable combination.

  • Can InCopy CS5 save to a CS4 file type

    I'm managing an e-learning project that requires a group of writers to use InCopy.  Everyone including our client is using IC CS4 but one of my writers who has been unable to find anything other than the latest version.  If she uses the CS5 version is there a way to save as to a CS4 compatible file that I can send to the client?  I know, for example, that Flash CS4 can save to a CS3 file format.  Thanks.

    I agree with Bob. The ICML format itself (InCopy native format) is essentially the same in CS5 as it was in CS4. So InCopy CS4 can open ICML files created in InCopy CS5. And InDesign CS4 can place InCopy CS5 ICML files, as far as I can tell. But it's *always* better to use the same version of ID and IC.
    One thing to keep in mind is that in InCopy CS5, the default font on both platforms is Minion Pro, not Times. This means the definition of the [Basic Paragraph] style is different. So if you're using styles, I would stay away from using any of the basic styles (including Table/Cell), and make sure your custom styles aren't based on them either.
    AM

  • Adding New File Type/Editor (CS6)

    There are a number of posts around editing Extensions.txt and MMDocumentTypes.xml but those posts don't seem to be solving my issue.
    I have 40+ Dreamweaver users and I'd like to be able to send them one or two configuration files that add new extensions ALONG WITH primary and secondary associations for editing.
    For example, I need to add the extension for PowerPoint (.pptx) and associate PowerPoint as the editor. I want to do this for all Microsoft Office file extensions - associate the extension with the default editor.
    As a test, I've changed both Extensions.txt and MMDocumentTypes.xml in my local user folder, but the only result I get is that the .pptx file extension in the list of extensions Dreamweaver can Save As...
    That's not what I'm looking for.
    When manually adding an extension and a primary (or secondary) editor in the DW preferences File Type / Editor panel, I get the result I want... double-clicking the file from the Files palette opens the file in the specified editor AND the file extension (.pptx) does NOT show up in list of extensions in the Save As... dialog.
    I have about 10 different extensions/app associations I'd like to add. Is there someplace else I should be looking?

    There are a number of posts around editing Extensions.txt and MMDocumentTypes.xml but those posts don't seem to be solving my issue.
    I have 40+ Dreamweaver users and I'd like to be able to send them one or two configuration files that add new extensions ALONG WITH primary and secondary associations for editing.
    For example, I need to add the extension for PowerPoint (.pptx) and associate PowerPoint as the editor. I want to do this for all Microsoft Office file extensions - associate the extension with the default editor.
    As a test, I've changed both Extensions.txt and MMDocumentTypes.xml in my local user folder, but the only result I get is that the .pptx file extension in the list of extensions Dreamweaver can Save As...
    That's not what I'm looking for.
    When manually adding an extension and a primary (or secondary) editor in the DW preferences File Type / Editor panel, I get the result I want... double-clicking the file from the Files palette opens the file in the specified editor AND the file extension (.pptx) does NOT show up in list of extensions in the Save As... dialog.
    I have about 10 different extensions/app associations I'd like to add. Is there someplace else I should be looking?

  • Possible to automatically save as a specific file type

    Hey all! First, can I say that the search on here is really stupid? You have to search all the forums first before you can search just the forum you want to search? Who's the brainiac that thought that made any sense? I don't need to search the forums for every Adobe product when my question is about Dreamweaver. Seriously, stupid.
    Anyway, here's my question! On my website, my files have to be .shtml. Is there a way to make it so that when I save files based on this template, it will automatically choose .shtml as the file type? Or do I just have to choose it manually every time?
    It's not that a big a deal. I just keep forgetting and save new pages as html, then I have to change it.
    Thanks and I hope everyone is doing well! I haven't been around much in a while. It was easier for me to pop in a see what's going on when I was using a newsreader. Oh well!
    Courtney

    Dang!  I was wrong.  It's not the first time and it won't be the last. 
    Found this while looking for something else.
    EDIT > Preferences > New Document > Default Extension.  Type .shtml or .shtm and hit OK.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.com/blogspot.com

  • Have file save dialog configure csv file type

    I am saving a program recipe file in csv format.
    I can save and retrieve the file without problems.
    What I would like to do is have the save file dialog box show a file type of *.csv instead of the default all file types *.* and then depend on the user to enter file.csv
    Does anyone know a way to do this programitically?
    Solved!
    Go to Solution.

    Hi Clark,
    the FileDialog has some "pattern label" inputs. Have you used them or read the context help for that function?
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

Maybe you are looking for

  • Can't log into my main user acct! How can I fix this? Help, I'm stumped!

    OK, here's the problem. While using my machine with VMware, I got the beachball of death. Nothing would respond and no keystrokes would bring up force quit. I finally had to press and hold start to shutdown. When I restarted my machine first the grey

  • Free of charge wallboard 2.4

    Hi all, It has been a while since I posted my last version of the free of charge wallboard. Some of you know that I changed jobs since (because my former employer did not like me working on the walboard). Since then I no longer have the option to fur

  • Hey guys, running XP and trying to download itunes 10.5

    I tried reloading it and it says Invalid drive I:  I don't have an i drive. I do have itunes on my 1TB ex harddrive. any suggestions? thanks in advance!!

  • Saving scanned documents?

    I consistently save scanned documents into my folders.  With this new Adobe Reader I use ctrl-shift-save to open and save the document.  Before, each time I used ctrl-shift-save it would open up the same folder.  Now it takes me back to the beginning

  • Formula - word extraction

    I have a formula that  extracts the numbr after the x and is used in a calculation. Now the word "fix is being entered before the x5  and it is messing up the formula. Can someone tell me how I can extract the word fix or fixed from this string so my