Can PSE8 for mac convert an 8 bit image to 16 bit?

can Photoshop Elements 8 for mac convert an 8 bit image to 16 bit?
I use Photomatix Pro and when I am working with a single image in Photomatix Pro, it has to be 16 bit.

Yes, you can. These are the steps when using the elements editor.
Depending on the file format:
1. If this file is from a camera raw file, simply open the original
    raw file and at the bottom of the camera raw dialog choose 16 bits.
    This would open the file in pse editor as a 16 bit file.
    Then save as a tif file with no compression.
2. If the file is a jpg or tif file, in the pse editor select: File>Open As>Camera Raw.
    This will open the file in the camera raw dialog. Then select 16 bit from the menu
    at the bottom of the camera raw dialog. After the file opens in pse editor, in 16 bits,
    save as a tif with no compression.
3. If the file is a psd file with no layers, then step 2 will work. If the psd file has layers,
    open the the file in pse editor and resave the file using maximize compatibilty.
    This will allow the psd file to have both layers and open in the camera raw dialog as
    in step 2. When you open the file in the pse editor, it will just be a single layer and then
    just save as a tif file with no compression.
Hope this helps.
MTSTUNER

Similar Messages

  • PSE8 for Mac: Convert to DNG in Bridge Photo Downloader fails

    Using PSE8 for Mac.  When I get RAW photos from Bridge and specify "Convert to DNG" in the advanced options of the Photo Downloader, the RAW files download but the conversion to DNG fails for every image.  I can successfully convert using the standalone DNG Converter, but I would like to use the option in the Photo Downloader that comes with Bridge.  I'm in touch with Adobe Support on this but not having a lot of luck.  Has anyone had this problem or know what to do?
    Also, I cannot see the RAW images either in the Photo Downloader or in Bridge.  They show up as blue squares with a flower graphic on them in the Downloader, and as white squares in Bridge.  I can only see images once I open them in Elements.  Is this normal?

    Also, I cannot see the RAW images either in the Photo Downloader or in Bridge. 
    This is the source of your problem. You need to update the raw converter in bridge, which ships with a very old version (5.0). In bridge, go to help>updates and let it do its thing.

  • DRM Converter for Mac, Convert DRM M4P to MP3, AAC on Mac OS.

    *[AppleMacsoft DRM Converter for Mac|http://www.free-drm-removal.com/applemacsoft-drm-converter-for-mac.html]*
    Image:!http://www.free-drm-removal.com/box/applemacsoft-drm-converter-mac.jpg!
    AppleMacSoft DRM Converter for Mac – Convert iTune DRM protected M4P files to unprotected formats.
    AppleMacSoft DRM Converter can convert iTunes DRM protected M4P files to MP3, AAC, such unprotected music files. It is a DRM copy-protected audio and music converter designed for burning DRM protected music to a special virtual CD-RW drive where you can easily get unprotected MP3, AAC, Apple Lossless, AIFF, WAV files ready for use on any player.
    AppleMacSoft DRM Converter uses a CD-RW and iTunes itself to convert all of your DRM music files to standard format files (MP3, AAC, Apple Lossless, AIFF, WAV) that you can use with iPod player.
    With AppleMacSoft DRM Converter you can create MP3, AAC, Apple Lossles, AIFF, or WAV files from your DRM files.
    [Buy Now $39.95 USD|http://www.regnow.com/softsell/nph-softsell.cgi?item=16535-1&affiliate=91165&ss_short_order=true]
    [Download DRM Converter for Mac|http://www.free-drm-removal.com/downloads/drmconverter3.dmg]

    Amazon songs have never had DRM.  The iTunes Store sold DRM-encumbered tracks until mid-2009.  The iTunes Store now only sells songs in non-DRM "iTunes Plus" format, although new DRM tracks still show up occasionally in free playlists and in podcasts.
    The old DRM-encumbered tracks cannot be converted to MP3.  You can upgrade them to iTunes Plus for 30 cents apiece (USA prices) or you can use iTunes to burn them to an audio CD, which can be used like any other audio CD.

  • PSE8 for Mac (an Overview)?

    Although there are several threads here regarding individual issues with PSE8 for Mac, can someone direct me to a thread or link that discusses an overview of PSE8 vs. PSE6 for Mac? Any inherent problems/issues with PS* for Mac? Thank you.

    Found this on the net
    http://www.donstouder.com/Digital-Photo-Corner/pse%20feature%20comparison.pdf

  • How do i create a revolving pic in PSE8 for mac?

    I want to have a small gif of 3 pics that revolve every 1-2seconds. it would be 150x100 so pretty small. is there a way to do this in pse8 for mac? thanks in advance.

    You create an animated gif by making a layered file (each layer is like one cel in the animation), then using save for web to save it as an animated GIF. However, there's a bug in PSE 6 and 8 for mac that won't let you adjust the animation speed, so you'd be better off using a program like gifbuilder or giffun:
    http://www.stone.com/GIFfun/

  • How do I update the browser on the MacBookPro?  I would like to get newer version of Safari; however, if that is not possible, is there a version of anything that I can get for MAC OS 10.5.8?

    How do I update the browser on the MacBookPro?  I would like to get newer version of Safari; however, if that is not possible, is there a version of anything that I can get for MAC OS 10.5.8?

    Hi kwalker08865,
    It would appear that the most recent version of Safari that is compatible with OS X 10.5.8 would be Safari 5.0.6. If this would meet your needs, you can find more information and a download link on the following page:
    Safari 5.0.6 for Leopard
    Regards,
    - Brenden

  • Need conversion mechanism for converting 24 bit image to 16 bit

    In my java project I need to convert 24 bit image to 16 bit image. I don't have any clue. Please provide me the option to implement it.
    Thanks,
    jai

    That doesn't tell me much, and I know what you're talking about. I doubt that it tells the OP anything useful whatsoever.Sorry EJP, it was a mouthful I know. Maybe this will help instead, a ColorConversionOps class to work on *32 bit > 16 bit > 32 bit colors*. To help clarify where the 16 bit color input and output goes, some of the methods return or require parameters of type short. Also take notice the bitmask for variables of type short vs the bitmasks for int. AND pay particular attention to the unsigned right bit-shifting of the most-significant-digit.
    public class ColorConversionOps
      public static short convert32_16(int rgb) {
        int a = ((rgb & 0xF0000000) >>> 16);
        int r = ((rgb & 0x00F00000) >>  12);
        int g = ((rgb & 0x0000F000) >>   8);
        int b = ((rgb & 0x000000F0) >>   4);
        return (short)( a | r | g | b);
      public static int convert16_32(short rgb) {
        int a = ((rgb & 0xF000) << 16);
        int r = ((rgb & 0x0F00) << 12);
        int g = ((rgb & 0x00F0) <<  8);
        int b = ((rgb & 0x000F) <<  4);
        return (a | r | g | b);
      public static void printRGB_32(int rgb) {
        System.out.println("a="+((rgb & 0xFF000000) >>> 24));
        System.out.println("r="+((rgb & 0x00FF0000) >>  16));
        System.out.println("g="+((rgb & 0x0000FF00) >>  8));
        System.out.println("b="+ (rgb & 0x000000FF));
        System.out.println();
      public static void printRGB_16(short rgb) {
        System.out.println("a="+((rgb & 0xF000) >>> 12));
        System.out.println("r="+((rgb & 0x0F00) >>  8));
        System.out.println("g="+((rgb & 0x00F0) >>  4));
        System.out.println("b="+ (rgb & 0x000F));
        System.out.println();
    }Now to make the conversion from 32 bit color to 16 bit color and back. NOTICE there willl be a loss of precision -- just like someone else has already said.
    public class Test
      public static void main(String[] args)
        int rgb = 0xFFFFFFFF;
        ColorConversionOps.printRGB_32(rgb);
        //a=255
        //r=255
        //g=255
        //b=255
        rgb = ColorConversionOps.convert32_16(rgb);
        ColorConversionOps.printRGB_16((short)rgb);
        //a=15
        //r=15
        //g=15
        //b=15
        rgb = ColorConversionOps.convert16_32((short)rgb);
        ColorConversionOps.printRGB_32(rgb);
        //a=240
        //r=240
        //g=240
        //b=240
    }And now we see, the reason 16bit color is so unpopular to the rest of the world, but not for us here!

  • PSE8 for Mac - The Missing Manual?

    Barbara B. & others,
    When is the release date for The Missing Manual for PSE8 for Mac? Will the format be similar to that for PSE6 for Mac?
    Thank you.

    Well, it would be better to pm me on this,since I'm not really supposed to talk about that here, but it's been printed and is on the way to the various distributors. Yes, format is pretty much the same as the PSE 6 book.
    Anyone else with questions, please contact me directly. Thanks.

  • Hi friends! which version of Final Cut Pro/Studio i can install for Mac OS X 10.4.11?

    Hi friends! which version of Final Cut Pro/Studio i can install for Mac OS X 10.4.11?

    FCP 5.1, which is part of the first Final Cut Studio package and FCP 6 (part of FCS 2) are both compatible with that OS (IIRC).
    -DH

  • Imessage for mac wont send or recieve images/video

    Ever since my upgrade to OSX Mountain Lion imessage for mac will not send/recieve images or video.
    Iphone4 and Ipad are sending/ recieving fine.
    Any suggestions?

    Do you get the same account between your Mac  and your iPhone?

  • How can I get a copy of PSE8 for Mac?

    I moved from a Mac Pro 1,1 to a Mac Pro 5,1 and Mavericks. From this forum I learned that Apples Migration Assistant will not work to move PSE8 to the newer computer. I cannot find any installation software in my files and I now see that downloads for Mac are not available. Is there anything I can do? Am I now locked out of Photoshop?

    There is a Mac link on the page below.  You should be able to download the trial version of the software and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Photoshop/Premiere Elements 8:
    http://prodesigntools.com/direct-download-links-for-lightroom-3-and-photoshop-elements-8.h tml

  • Slideshow in pse8 for mac

    Um. I'm trying to create a sldeshow that I can upload to youtube.  When I click create/create pdf slideshow it opens bridge and allows selection of some pictures, but never does anything else.  I read the threads here about this whih described the slideshow ccreator as "lame."   I can't get it to work at all.
    What am I missing here?
    After looking through comments and tutorials, I found that that bridge has a create slideshow option on the output icon on the toolbar.  ok, so how do iI get it to enable?  I select pictures; I open them into elements,,,   nothing.
    As a general comment, a friend of mine convinced me that mac and photoshop was the way to go. I decided not to spring for a full photoshop, so I can't comment on that.   But so far my experience of the upgrade from windows elements 5 to elements 8 for mac overall has been lame.  I had trouble with the install (I got a font missing or corrupted error);  the blending dropdown on the layers menu has to be clicked for each change unlike the windows version and really slows my workflow.   Bridge in general seems behind organizer.   Now this, the slideshow maker, which worked just fine in windows, doesn't appear to work at all.    I just viewed the elements 9 video on slideshows, which said that this was a windows only feature.  Duh.
    A comment by Barbara suggested that Adobe thought iphoto, iwhatever was enough. It would be nice if Adobe said that upfront, and showed at the beginning how to integrate elements into iphoto.  I've wasted two days searching the forums and the tutorials to figure that out.
    I recently bought a drawing tablet and got a free Elements 7,   I think I may install it on my laptop.
    The only real advantage of the mac has been the screen.
    At this point, call me a dissatisfied customer of elements for mac

    Thanks fo rthe response.
    Concretely, I still don't have any idea of what the create/pdf slideshow button does besides take you to bridge,
    The windows version is a wizard that allows you to select pictures from organizer and then arrange the pics, choose transitions etc
    In bridge I see no further steps to complete the slideshow.
    Except...   there's an output/pdf menu in bridge.  If that's it, how do you get that to enable?
    There really is no documentation that says in one place how to handle this.  It was only by finding your comment in the forums,
    and then the demo on making pe the iphoto editor, that I was able to infer that this was the likely way to go.
    That is not adequate.

  • Can quicken for Mac run on Lion?

    Will Quicken for MAC 2007 run on the new Lion OS?

    Another nail in the coffin of iDisk and MM, just one of the reasons I use Quicken 2007 and the mac, I can keep an offsite backup of my quicken files on the iDisk using quickens own backup utility, suppose that will have to change anyway so may as well be sooner rather than later.
    Does iBank work in other currencies than USD ?
    M.

  • Quicktime converting 24 bit images to 16 bit images on paste

    I am doing image processing of a QuickTime (7.1.5 pro) movie in Photoshop (CS2) using Applescript. When I copy an image (either with Applescript or manually) and paste it into a new QuickTime Player movie the image gets converted to a video depth of 16 (thousands) rather than 24. I have tried:
    set DestMovie to make new movie with properties {data rate:SourceRate, video depth:24, high quality:true} -- I also tried video depth:0
    paste
    I also try:
    tell movie 1
    paste given video depth:24 -- I've also tried just paste
    end tell
    and still it converts my images to thousands. The image gets to photoshop perfectly. If I paste it into a Pages document the image depth is correct. I have tried both RGB and CMYK in 8 and 16 bit depths in Photoshop. If I save the file as JPEG in high quality mode and then open the file with Quicktime and copy and paste it, it works great, the only problem is I then have to make a new file for every image I process because if I close the file, QuickTime keeps it open so Photoshop can't then save to the same file.....
    Will someone please help me figure out how to keep my image quality on pasting into Quicktime???
    Thanks
    Powerbook G4   Mac OS X (10.4.9)  

    I open my original movie in Quicktime. I make a new movie in Quicktime for the modified images to be pasted into.
    I copy the current frame from my source movie and paste it into Photoshop. I do my image processing and then save as a jpeg high quality and close my file (which strips out the audio from a muxed mpeg-1 file) then reopen the file in Photoshop. Now I have a good quality image in Photoshop. I have been using RGB 8 bit as my mode in Photoshop. I only tried CMYK to see if it would work better. It was exactly the same.
    I then do a select all and copy in Photoshop, then go to Quicktime and do a paste. This is when it gets converted to 16 bit depth. If I do the same exact sequence and paste into a Pages document the image stays 24 bit, so I am pretty sure it is something in Quicktime.
    Again, if I save the file in Photoshop and then open the same file in Quicktime, copy the image and then paste it into my destination movie, it works great. The only problem with this method is I have 15 minutes of video to process with is 27,000 jpeg files in the end. I prefer to use one file if I can. The reason for the 27,000 files is that when I open an image in Quicktime and paste it into a movie, it saves it as a track in the movie and even when I close the original file, Quicktime keeps it as in use. When I look at the movie properties, it keeps the original file in the list until I do a save as movie and it flattens the movie. If I flatten the movie once, then when I do another save, it keeps the original file open again. I would have to do a save as movie... again 27,000 movie files now. Geez...
    Thanks!

  • How to convert a 16-bit image to 8-bit

    I am having difficulties in skeletonizing my image. Although I already threshold my image, it still cannot be skeletonized. When I create the image using IMAQ create, the image type must be set to 16-bit, otherwise it will create an error message. An enthusiast in the forum told me that the image must be 8-bit so that it can be skeletonized. But I do not know how to convert the image from 16-bit to 8-bit. So is there anybody out there that can provide me with a solution. Attached is the VI that I used. Really appreciate your help.
    Attachments:
    Image_Acquisition.vi ‏68 KB

    Try using the IMAQ Cast Image function under Motion & Vision>>Vision Utilities>>Image Management>>IMAQ Cast Image.
    Regards,
    Steve

Maybe you are looking for

  • Can't get rid of iPad 2 update notification number.

    A few days ago my update notification appeared (red circle with the numeral one) next to the App Store icon. When I click on "app store" and go to the update page there is nothing to update. Have an iPad 2. Any suggestions?

  • PB 1400cs won't run on battery power

    I've got a 1400cs, purchased second-hand, and it seems to have a problem running on batteries. Even with a new battery, it doesn't want to run on battery power. `Runs fine on AC power, though! What could cause this? What are my options for inexpensiv

  • Photos Program Not Showing All Options

    I updated my iPhone's OS to iOS4 yesterday. In my Photos program, I am missing two tabs at the bottom of the program window, the Faces tab most notably. I only have the Albums and Places tabs. This means that I cannot created folders or move my pictu

  • Captive consumption-Excise Effect

    Hi Following is the Issue of Captive Consumption, When I will move Finish Good material from finsih Good storage Location for internal use (to diff storage location) within plant,I have to pay Exicse Duty when i will move matrail and also want to tak

  • Syncing takes forever with firmware 2.0

    I had my 16 Touch installed some app on it then re connected it to my imac add another app i have about 500 mb of apps on the touch but no songs or pictures. It was backing up all night ie 6+ hours??? What can i do to fix this problem? under 1.1.4 it