Changing file type format in Screen Capture (shift command 4)

You'd think this would be in a preference menu! But it's nowhere to be found in any apps preference or system preferences.... I've seen posts how to do it in Terminal... and people sell programs to do it.... but Tiger and Leopard have t built in.. sort of....
The default file format when using SCREEN CAPTURE (ShiftCommand4) was a .pdf ... but then it was changed to .png Some people can't read .png... so I wanted my captures to be in .jpg format.
You can change the file format type of your SCREEN CAPTURE to any of the following:
JPG, JPG-2000, TIFF, BMP, PDF, Photoshop, PICT, SGI, PBG, TGA
But first you have to have a file you want to change (say it is a png).
Open the file using Preview.
Once open, under File (in the menu bar) go down to SAVE AS.
There's you'll see FORMAT and a pull down menu. Choose which one you want...
Screen capture will now open your captured pictures in that format.
Crazy, huh?

The OP here was using a keyboard shortcut, not Grabber.
I did some further exploring. I just tried TinkerTool again, and again was able to change the file format of saved screencapture files to jpeg. TinkerTool modifies the com.apple.screencapture.plist file the same way that the Terminal command does.
This clearly works for command-shift-3 and command-shift-4, which save the screencapture image as a file. However, on looking more closely at the O.P.s initial post in this thread, he/she actually said
I use keyboard shortcut control/command/shift/4
When you include the control key in the command, the screencapture image gets saved to the clipboard instead of to a file, and you wouldn't normally be aware of its format until you pasted the clipboard contents somewhere else. I don't know where the OP was pasting it, but as was noted in the thread cited above by Baltwo, pasting a sceencapture image from the clipboard into a mail.app message results in a .tiff file being pasted. I also find this to be true in my system - perhaps this is what the OP was doing all along.
However this is an issue caused by the receiving app, not by the screencapture function. It's possible to look directly at the contents of the clipboard via:
Finder>Edit Menu>Show Clipboard
With my screenshot format set to jpeg by TinkerTool, I used control-command-shift-4 to save a screenshot to the clipboard. Looking directly at the clipboard in Finder as above, the clipboard image was a jpeg. When I then pasted the clipboard contents into a mail message and used Mail>File Menu>QuickLook Attachments, the pasted graphic in the mail message was a .tiff.

Similar Messages

  • Where is "save as" or how to change file type in Preview in Lion?

    Where is "save as" or how to change file type in Preview in Lion? I used to use Preview to change quickly change a lot of PNGs to either JPEGs or PDFs but with the introduction of versions auto save etc there no "save as" in the File menu. Any suggestions how to get this functionality back or how to get around it within OS X (no Photoshop etc)?

    Just wasted 15 minutes looking for that.  What's wrong with Save As?

  • Changing file type association through java

    hello all,
    here i had a problem like , we know when we try to open .csv file by default it wll open in excel , because the csv file type was associated with excel this we can see in mycomputer->tools->folder options->file types and here we even have the possiblity of changing the association.
    anyway, my question is that is there any way of changing this association like csv to oepn in wordpad through java program
    with regards
    satya

    i created a like wordCsv.reg
    REGEDIT 4
    [HKEY_CLASSES_ROOT\.csv]
    "Default"=string:Wordpad.Document.1
    when i click on this file i could see a message that the entry wassucessfully entried but i cannot see the entry
    is my approach was correct in adding entry in regedit programatically,
    please any more ideas
    http://jniwrapper.com/pages/winpack/downloads
    here in this link i saw some samples regarding changing file types association
    , dont now will it works
    since this is for win32
    i found a program FileTypeAssociation dont know will it works
    * Copyright (c) 2002-2005 TeamDev Ltd. All rights reserved.
    * Use is subject to license terms.
    * The complete licence text can be found at
    * http://www.jniwrapper.com/pages/winpack/license
    package com.jniwrapper.win32.shell;
    import com.jniwrapper.Function;
    import com.jniwrapper.LongInt;
    import com.jniwrapper.Pointer;
    import com.jniwrapper.UInt;
    import com.jniwrapper.win32.registry.RegistryKey;
    import com.jniwrapper.win32.registry.RegistryKeyType;
    import com.jniwrapper.win32.registry.RegistryKeyValues;
    import com.jniwrapper.win32.registry.RegistryException;
    import java.io.File;
    * This class provides functionality for creating file type associations.
    * @author Vladimir Kondrashchenko
    public class FileTypeAssociation
    private static final String FUNCTION_SHCHANGENOTIFY = "SHChangeNotify";
    private static final long SHCNE_ASSOCCHANGED = 0x08000000L;
    private static final long SHCNF_IDLIST = 0x0000;
    private String _extention;
    * Creates a class instance for associating files of the specified type.
    * @param extention specifies the file type by its extention.
    public FileTypeAssociation(String extention)
    if (extention.startsWith("."))
    _extention = extention;
    else
    _extention = "." + extention;
    * Creates a file type association.
    * @param executable an associated file will be passed as a parameter of this executable file.
    * @param progID the programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(File executable, String progID)
    if (!executable.isFile())
    throw new IllegalArgumentException("File not found.");
    String commandLine = "\"" + executable.getAbsolutePath() + "\" \"%1\"";
    createAssociation(commandLine, progID);
    * Creates a file type association.
    * @param commandLine specifies an executable command.
    * @param progID the executable programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(String commandLine, String progID)
    RegistryKey registryKey = RegistryKey.CLASSES_ROOT.createSubKey(progID+"\\shell\\open\\command", true);
    RegistryKeyValues values = registryKey.values();
    if (commandLine != null)
    values.put("", commandLine);
    else
    values.put("", "");
    registryKey.close();
    registryKey = RegistryKey.CLASSES_ROOT.createSubKey(getExtention(), true);
    values = registryKey.values();
    values.put("", progID, RegistryKeyType.SZ);
    registryKey.close();
    changeNotify();
    * Removes all associations for the file extention.
    public void removeAssociation()
    try
    RegistryKey.CLASSES_ROOT.deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.CURRENT_USER.openSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts").
    deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.LOCAL_MACHINE.openSubKey("SOFTWARE\\Classes").deleteSubKey(getExtention());
    catch (RegistryException e)
    changeNotify();
    * Returns the default executable command for the file extention.
    * @return the default executable command for the file extention.
    public String getDefaultCommand()
    RegistryKey key = RegistryKey.CLASSES_ROOT.openSubKey(getProgID());
    key = key.openSubKey("\\shell\\open\\command");
    RegistryKeyValues values = key.values();
    return values.get("").toString();
    * Returns the program identified of the default executable program.
    * @return the program identified of the default executable program.
    public String getProgID()
    RegistryKeyValues values = RegistryKey.CLASSES_ROOT.openSubKey(getExtention()).values();
    return values.get("").toString();
    * Returns <code>true</code> if a file type association for the specified extention is registered.
    * @return <code>true</code> if a file type association for the specified extention is registered.
    public boolean isRegistered()
    try
    RegistryKey.CLASSES_ROOT.openSubKey(getExtention());
    catch (RegistryException e)
    return false;
    return true;
    * Returns the file extention.
    * @return the file extention.
    public String getExtention()
    return _extention;
    private void changeNotify()
    Function function = Shell32.getInstance().getFunction(FUNCTION_SHCHANGENOTIFY.toString());
    function.invoke(null,
    new LongInt(SHCNE_ASSOCCHANGED),
    new UInt(SHCNF_IDLIST),
    new Pointer(null, true),
    new Pointer(null, true));

  • Change file type to pdf

    How do I change file type to pdf with windows 8 without paying? I was able to do this with windows 7 without paying.

    Actually, I guess it's possible you were using paid-for Adobe software and didn't realise it.
    Can you remember the steps you followed to make a PDF in your old system?

  • Changing file type when saving doesn't work

    How can I fix the problem where, if I change file type when saving, eg from tiff to jpg, the 'jpg' suffix is not appended in the save window? It remains as tiff. This has only started happening recently.

    I have a G5 iSight running OSX 10.4.11 with all the latest upgrades. The problem is about a week old.
    Yesterday I did a clean install of everything (not because of this problem) which I'm sure would have cleared the problem. But I was playing around with importing all my old PS and InDesign settings via copying the old preference files (and others), and the tiff/jpeg problem has reappeared. Seems to me like one of the files I copied, contains the problem. I suspect the only way out of this is to reload PS. But I was hoping it might be as simple as deleting a certain preference file.

  • Changing file type in screen capture to .jpg using Terminal

    I am having trouble changing my screen capture function to .jpg. For some reason it is set to .tiff and
    despite opening Terminal and typing in "defaults write com.apple.screencapture type jpg"
    (no quotes) hitting return and restarting, it remains a .tiff
    I have also tried: "defaults write com.apple.screencapture type jpg" (return)
    "killall SystemUIServer" (return) and restarting.(No quotes)
    Can someone tell me how to accomplish this? I use keyboard shortcut control/command/shift/4 and I'm running 10.6.4
    Thanks

    The OP here was using a keyboard shortcut, not Grabber.
    I did some further exploring. I just tried TinkerTool again, and again was able to change the file format of saved screencapture files to jpeg. TinkerTool modifies the com.apple.screencapture.plist file the same way that the Terminal command does.
    This clearly works for command-shift-3 and command-shift-4, which save the screencapture image as a file. However, on looking more closely at the O.P.s initial post in this thread, he/she actually said
    I use keyboard shortcut control/command/shift/4
    When you include the control key in the command, the screencapture image gets saved to the clipboard instead of to a file, and you wouldn't normally be aware of its format until you pasted the clipboard contents somewhere else. I don't know where the OP was pasting it, but as was noted in the thread cited above by Baltwo, pasting a sceencapture image from the clipboard into a mail.app message results in a .tiff file being pasted. I also find this to be true in my system - perhaps this is what the OP was doing all along.
    However this is an issue caused by the receiving app, not by the screencapture function. It's possible to look directly at the contents of the clipboard via:
    Finder>Edit Menu>Show Clipboard
    With my screenshot format set to jpeg by TinkerTool, I used control-command-shift-4 to save a screenshot to the clipboard. Looking directly at the clipboard in Finder as above, the clipboard image was a jpeg. When I then pasted the clipboard contents into a mail message and used Mail>File Menu>QuickLook Attachments, the pasted graphic in the mail message was a .tiff.

  • Change date/time format in Screen Shot file name?

    I capture Screen Shots all day long.  But when I go to look for the one I just took, it's not always at the bottom of the list.  That's because Mac names them as e.g.
    Screen Shot 2014-04-29 at 1.19.04 PM.png (and the order gets screwed up).
    Can I change to make save as e.g.
    Screen Shot 2014-04-29 at 13.19.04.png (this way they'll always stay in order).
    Thanks for any help.

    You may have to change system time format globally. Is it worth ?
    http://support.apple.com/kb/PH14227
    Best.

  • Changing file type when syncing to iPhone?

    Hello, is there a way to change the music file type when syncing my computer with my iPhone? I would like to store music on my compter as Apple Lossless, but then sync it as AAC to the iPhone. Under the iTunes 10.5.3 Advanced tab, I see that I can select songs and convert them inside of iTunes, but then it duplicates the song in my Library in the new format. I'm looking for a way to do this on the fly during the sync, if that is possible. Thanks.

    I see that setting now in iTunes when I plug in my iPhone, thanks. That appears to be the only bitrate option available, I was hoping to keep them at a higher quality for the iPhone, but not as high as Apple Lossless. Guess I'll just do the conversion in iTunes at 256 kbps AAC, sync those to the phone, and then delete them out of the library on the computer. It would be a cool upgrade to iTunes to have more bitrate options available.

  • How to change file type from .zip to .dock

    I would like to know how to change the saved file type (.zip) to other file types such as (.txt), (.doc), (.dock) or (.pdf).

    It's more complicated than just changing the name of the file to have a different extension.  What you have to do is to convert a file from one format to another.  To do that you have to use an application that knows how to open the original type and how to write the format of the new type.  The application to use for a given combination depends on the combination.  For example, the Preview applications knows how to read a JPG file and write the contents to a PDF file.
    A ".zip" file is a somewhat different case.  A ".zip" file is an "archive" that (generally) contains other files compressed within it.  If you double-click on a ZIP file, it should expand into the enclosed files.
    If you give specific examples of what you want to convert, people should be able to explain what to do.
    By the way, I'm not familiar with a file of type ".dock".  What is that?

  • JFileChooser: changing file type resets current directory

    I create a JFileChooser with multiple file types and set the current directory. It comes up with the first file type and the current directory. If I select another file type, the files shown are not in the current directory, which I set -- they are files in the application default directory. Is there a way to keep my current directory, while changing the file type? Or is this a feature?

    Are you talking about your own CDs imported to iTunes or are you talking about songs purchased from the iTunes Music Store (iTMS)? If the latter, the iTMS, you do not get any choice in the format downloaded. You get protected AAC files and that is all.
    If you want to change how you import files, go to the iTunes preferences for importing and choose the format you want to use from now on.
    Patrick

  • Change file types in iTunes

    Is it possible to change the file types of music files already downloaded in iTunes (aac to mp3)

    Hi Wall!
    Welcome to the Discussions!
    You have a mini-nightmare going on, but nothing that can't be sorted out.
    First, if you have any iTunes Music Store purchased music in your iTunes Library, please insure that you have authorized your computer so that you can play it and can load it on the iPod to play it there. These songs show as "Protected AAC audio files" in your iTunes window under the "Kind" heading.
    If you loaded/imported the CDs as AACs, they should play in that format and should load into your iPod in that format. I suspect that they won't play or load onto the iPod because iTunes can't find them on your hard drive.
    If I were you, I would highlight my Library in the iTunes window, select "Show Duplicates" from the menubar, then sort the files based on "kind" by clicking on the "kind" header on the iTunes window. (If "kind" doesn't show as one of your headers, choose View Options from the menubar and check it so it does appear in the iTunes window.) After sorting by "kind", you should have your duplicate song files grouped together as AACs and MPEG Audio Files (MP3s). I would highlight all of the MP3s that were duplicated by the conversion you did and delete them, thus undoing the conversion and making things a bit simpler to work with. When You're done with this, change the option back to "Show All Songs".
    Now, you're left with the AACs that are not linked with iTunes... Unless you deleted them from your drive, they're still there, but iTunes doesn't know where they are. Go to the Advanced Pane of your iTunes Preferences, click on the "General" tab, then check the boxes to "Keep iTunes Music folder organized" and "Copy files to iTunes Music folder when adding to Library". Also note the location listed for your iTunes Music folder while you're there. Click "OK'" and these changes will take effect.
    Now, from the iTunes menubar, find and choose "Consolidate Library", which will scour your hard drive for music files and add them to the iTunes Music Folder. Your songs should then be present in the iTunes window. Check to insure that they are, and that they play before proceeding... You may now have duplicates again: the original AACs that weren't linked, as well as the files that were added through the "consolidation" that you just did. If so, you can once again choose to show duplicates in your Library, then sort them based on Date Added, which will separate the old song titles from the new ones. Once you sort them this way, you can then highlight all the old duplicates and delete them. You should be left with a working Library. (Be careful to not mistakenly delete any "Protected AAC audio files" if you have music from the iTunes Music Store.)
    There may be an easier way to do this, but I don't know of one without messing around with the files inside the iTunes folder, which I'm very hesitant to do or to recommend to someone else...
    Wall, just know that the files you imported from those 600 or so CDs should be somewhere on your drive, even though iTunes has "lost" a link to them. If you keep them in your iTunes folder, you'll know where to look for and find them. The preference settings I referenced a couple of paragraphs above should help to keep them organized there.
    You might want to check out the AAC loading/playing before doing any of the above. First, check/change your "General" iTunes preferences as I previously described. Then insure your "Importing" preference is set to AAC. Create a new playlist, load one of the CDs you previously imported, and drag it's icon to the new playlist to add it to the Music folder and Library. Attempt to play the songs from that playlist. They should play just fine. If you want, you can then sort the Library by "Date Added" in the iTunes window and delete the songs from the Library from the CD you just added. If this works for you, then proceed with the consolidation and cleanup as above.
    Gary
    1GH DP G4 Quicksilver 2002, 400MH B&W G3, Mac SE30   Mac OS X (10.4.2)  

  • Changing "file type" in Link Information Window (CS3)

    Hola,
    I am having a problem in Indesign (CS3), and I was wondering if anyone here might be able to help.
    I'm a student updating an older .INDD file for a 47 page book. The pages were all updated as .AI files, but for some reason
    3 of the pages in our InDesign document were assigned a .PDF "file type" in the Link Information window.  When I try and "Relink" to the updated .AI files,
    the program won't link to the .AI file. It will properly re-link to a .PDF version of the file.
    Is there a way to reset that "file type" in the Links Window from .PDF to .AI?
    Ultimately I can use .PDF versions for this, but I'd prefer to have them all .AI files.
    That would be cleaner and easier for the next students down the road who are going
    to inheriet this project.  It seems like this should be an easy thing to do, but I can't figure it out...
    Thank you very much for any information you can provide.  
    ¡Muchas gracias!
    Javier

    Hola,
    Thank you for the quick reply!  I now suspect that I didn't correctly identify the problem.
    In the Links Panel for 44 of the 47 pages, they read pathname/*.AI, so no problem there (although the file type is also .PDF in the link window for those 44 pages that can link to the .AI).
    For three of the pages though, when I try and link them to pathname/*.AI, I get an error message in the document that indicates that "this is an Adobe Ilustrator file that was saved without PDF content".  When I relink those three to pathname/*.pdf, they work.
    So I'm thinking at this point that the problem isn't Indesign, but with the original .AI files that I'm trying to link to. I also suspect that my original idea to change the "file type" in the Links Panel to ".AI" is incorrect, since it's a .PDF file type for all of the 47 pages in this document!
    ¡Muchas gracias!
    Javier

  • Change file type classification? mkv as "Movie"

    In short, I would like to make mkv files show up under the class of "Movie" in smart folders and such. I'm assuming that buried in some setting or file there is a list of extensions I can add "mkv" to. I would have thought this was a common question but so far forum trawling has got me nowhere. Can anyone shed some light? The reason, if you care to read is below, but it doesn't have that much bearing on the question.
    I have a sizeable DVD collection, I also have a new job that puts me in hotels 5 weeks out of 6 for training. I don't want to carry them around as they'll get damaged and broken. Last week I left my MacPro chobbling away at encodes and now my entire DVD collection resides on a NAS as well as my shelves. I've created a simple automator finder service that will copy the selected files to a "Films" folder within the Movies folder that I've removed from the time machine backup so as not to waste space. This is set to only show up if the selected items are "Movies". As a consequence, it doens't appear for mkv's.
    I know I can just alter the service to be there permanantly which is what I'll do for now, but it's not a very elegant solution.

    I was able to change the extension in Windows, which then changed the file type. I'm still curious as to how to make the change directly on my MAC.

  • Change file type associations after install?

    Hi there,
    i need to open/save .mp3 files with audition. apparently i forgot to tick the respective box during the file type association part of audition setup. is there a way to subsequently add .mp3 to a list of associated file types for audition?
    i double-checked - when trying to work around via right-click on a mp3 file --> open with... and then browsing for audition.exe it just goes back to the list of programs to choose from but audition is not the
    also, i can drag & drop mp3 files into audition and work on/with them, but cannot save them as .mp3. this is somewhat strange behavior as i can't see why i can work with the files but cannot really open them with audition nor save them from inside audition. i hope i don't have to reinstall it, any thoughts on this?
    thanks,
    fux
    EDIT: i recognized that this also counts for .pk files, same here..

    thanks for answering ryclark,
    but audition is not in the list. even further, when i choose open with, select choose default program, browse and select audition and click "open", i get directed back to the open with.. list of programs as if nothing happened and audition is still not available from the list. i guess thisis because i didn't associate .mp3 and .pk files with audition in the first place (= when installing audition).
    while it was working, in contrary to your statement, loading a .mp3 file in audition and just clicking on "save", like a ctrl+s would do, saved it perfectly fine as .mp3.
    besides, i know that audition works with .wav files and that .wav is the common format of choice regarding lossless results. nevertheless i would like to be able to load .mp3 files (and .pk files!) into audition and be able to save to .mp3.

  • How to change file type associations in SAP ERP 6.0?

    Hello,
    I'd like to figure out how to change the application associated with a given file type in SAP. I want to open a .DOC file, but I am using OpenOffice instead of MS Word. I have .DOC file type already associated with OpenOffice in Windows XP, but SAP doesn't seem to recognize that association. I am using SAP ERP 6.0. Any ideas?
    Mike

    Hi,
    MS Word is mandatory. You will not be able to work using Open Office in SAP.
    Regards,
    Rajesh Kumar

Maybe you are looking for

  • RGB  to CMYK gives me a white glaze? how to get rid of it

    In photoshop cs5 when i convert an image i am working on from RGB to CMYK i get a white glaze over the image? as if i have added a photo filter or something? do you know how to prevent this on a mac computer?

  • No way attaching files to a form without Reader Extension Server?

    Dear all, do I understand this right? There is no way to create a form to which attachments can be added using Acrobat Reader unless the form has been reader extended to do so with Reader Extension Server? If there are any possibilities I would be ve

  • Partition problem - trying again

    We have just tried to run our application in "deployment" mode. Things that ran under the running man do not run any more. In one case, an exception is being raised saying the following: USER ERROR: The AppendRow operation was invoked on a qqsp_Heap

  • Hyperion Planning Dimension building techniques

    Hi I am currently working on Hyperion Planning 11.1.2.1. I am interested to know about dimension building in planning. 1. What dimension building techniques available for Hyperion Planning 11 other than DRM, FDM and manual techniques? 2. I have read

  • How to generate an analog pulse

    Hi I am using SignalExpress and I would like to generate a pulse to be sent to the analog output of my device but in "create signal" step I cannot see such option: how can I do that? Thanks in advance Francesco