Problem transforming some tiff into jpg

Hi, my problem is I'm trying to convert a tiff image into jpg image, my code it's working for some files but not with all, i'm receiving a String represent the tiff file in hex base and transform into baytearray of jpg my code is the next
if someone have a similar problem and can helpme
import java.awt.image.RenderedImage;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import javax.media.jai.JAI;
import javax.media.jai.PlanarImage;
import com.sun.media.jai.codec.ByteArraySeekableStream;
public class Test {
     public static void main(String[] args) {
          Test g = new Test();
//          bad image
          g.decodeImage("49492a00080000001100fe00040001000000000000000001030001000000800100000101030001000000050100000201030001000000010000000301030001000000040000000601030001000000000000000701030001000000010000000a01030001000000010000001101040001000000ea0000001501030001000000010000001601040001000000050100001701040001000000280300001a01050001000000da0000001b01050001000000e200000024010400010000000000000025010400010000000000000028010300010000000200000000000000c800000001000000c800000001000000ffffffffffffe6449c29d9afc27fd04e17f33fede825fff5ebea12bbfc2afaafbfc2f4abaffafafa7f85fd7097fff5f5ad7f5e16bd7fff5f356bc2a7aebfe134abafd5bfd05d6f2dd570a97ffffff5a4b0bfaeb855f5ffbf4bd2d6bbfaf0bd7ae17d6b2c7d53afd7df497ffe975fae124a12fffd57fa55faffebf4bf84bfd2f4ffd533010bc157821111210728c5299540ccbcca80789494ca034ccd9a1170cefcecc80c18336f68cc08559d920287eb3a063a9da906c5d725c2eb044085697c18ea0975583a50883bebf0df3b1606036175c18694ec481723cdd75831c2085bd257a9da404239874bf99dc221315af4bbcecb854baff41c205eaab8596387088ba20db55aea1b84104b0ba5c5373b4095d7d0698708155affb70825d2a4b49b8204beafb41ba055a5ae126e4d05a0ed6bd30e105d855ad43708209755eb785aa5a5d372b02d3afe15b8412ad7f86e104ee925d04487b740825aba58416dd2f497d2c3704157495692dd05ebaf5b70820975f825b7097a5d6961e105e952f0bbc2a8d7c25dc25a5f84b0dc2095a74b85de92a096a12c3c20bfdc25dc25d69610586f5412fc25dc20974b4820bbd6974a105b70924d1d445d05b7ac2fe961b84b4bab082cd1174478de4745d91d17d3d52c3e211080da221f5d21a44806c368c1dff709180d32398b6dc2a85915d82120d2921bde91d02b0ccc354ba2777edd20ac486584f70e97120d4250ade1aa840bd9176290f48d82a99b796edb86f087aa5def27478164e0befadbc109069390e43a70bdc190e5ac8e0d6937f5ac3218d4c3884cb760c7fcb1f22c07a2399c09c37d2d2786409c70852e183fff2081a447479b4898e82cd01de96937117a4aa36d86bebdb5092d061ef5d3fa492c30e58eebd7fa4922de0c3239edff5ef4124f40c45e142fb7bc2492e4402fd697630924ee0fffdb08249543262d4b4af1082492d6fe1e1a4bfd7d386217d696af85dffd270c168111ffafe185d5f6b695c7dd7ffd20afd2f7c7efba57abad7efbef5ffb7ded27e1c2e12636fafff0add6957ff76be1bf096fd3ee9dbeffb5eafc243e9b4b483edf0ea9609fb49a8daaa4361d3ac37f5eb5df15d2850de1add56d461a18ffffffffe00200");
          public byte[] decodeImage(String codigoEntrada){
                    byte[] data=hexStringToByteArray(codigoEntrada);
                    try {
                         ByteArraySeekableStream seekableStream = new ByteArraySeekableStream(data);
                         PlanarImage src = JAI.create("Stream", seekableStream);
                         byte[] data2=getByteArray(src);
                         return data2;
                    } catch (IOException e) {
                         System.out.println(e);
                    return null;
          public byte[] getByteArray(RenderedImage image) {
                    ByteArrayOutputStream bouts = new ByteArrayOutputStream();
                    JAI.create("encode", image, bouts, "jpg");
                    return bouts.toByteArray();
          public static byte[] hexStringToByteArray(String s) {
                   int len = s.length();
                   byte[] data = new byte[len / 2];
                   for (int i = 0; i < len; i += 2) {
                       data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4) + Character.digit(s.charAt(i+1), 16));
                   return data;
}thanks
Edited by: hikarus on Mar 31, 2009 12:52 PM
Edited by: hikarus on Mar 31, 2009 12:57 PM

the problem is if you use this with the bad image
     public static void main(String[] args) {
        Test g = new Test();
           //          bad image
     g.saveImage("49492a00080000001100fe00040001000000000000000001030001000000800100000101030001000000050100000201030001000000010000000301030001000000040000000601030001000000000000000701030001000000010000000a01030001000000010000001101040001000000ea0000001501030001000000010000001601040001000000050100001701040001000000280300001a01050001000000da0000001b01050001000000e200000024010400010000000000000025010400010000000000000028010300010000000200000000000000c800000001000000c800000001000000ffffffffffffe6449c29d9afc27fd04e17f33fede825fff5ebea12bbfc2afaafbfc2f4abaffafafa7f85fd7097fff5f5ad7f5e16bd7fff5f356bc2a7aebfe134abafd5bfd05d6f2dd570a97ffffff5a4b0bfaeb855f5ffbf4bd2d6bbfaf0bd7ae17d6b2c7d53afd7df497ffe975fae124a12fffd57fa55faffebf4bf84bfd2f4ffd533010bc157821111210728c5299540ccbcca80789494ca034ccd9a1170cefcecc80c18336f68cc08559d920287eb3a063a9da906c5d725c2eb044085697c18ea0975583a50883bebf0df3b1606036175c18694ec481723cdd75831c2085bd257a9da404239874bf99dc221315af4bbcecb854baff41c205eaab8596387088ba20db55aea1b84104b0ba5c5373b4095d7d0698708155affb70825d2a4b49b8204beafb41ba055a5ae126e4d05a0ed6bd30e105d855ad43708209755eb785aa5a5d372b02d3afe15b8412ad7f86e104ee925d04487b740825aba58416dd2f497d2c3704157495692dd05ebaf5b70820975f825b7097a5d6961e105e952f0bbc2a8d7c25dc25a5f84b0dc2095a74b85de92a096a12c3c20bfdc25dc25d69610586f5412fc25dc20974b4820bbd6974a105b70924d1d445d05b7ac2fe961b84b4bab082cd1174478de4745d91d17d3d52c3e211080da221f5d21a44806c368c1dff709180d32398b6dc2a85915d82120d2921bde91d02b0ccc354ba2777edd20ac486584f70e97120d4250ade1aa840bd9176290f48d82a99b796edb86f087aa5def27478164e0befadbc109069390e43a70bdc190e5ac8e0d6937f5ac3218d4c3884cb760c7fcb1f22c07a2399c09c37d2d2786409c70852e183fff2081a447479b4898e82cd01de96937117a4aa36d86bebdb5092d061ef5d3fa492c30e58eebd7fa4922de0c3239edff5ef4124f40c45e142fb7bc2492e4402fd697630924ee0fffdb08249543262d4b4af1082492d6fe1e1a4bfd7d386217d696af85dffd270c168111ffafe185d5f6b695c7dd7ffd20afd2f7c7efba57abad7efbef5ffb7ded27e1c2e12636fafff0add6957ff76be1bf096fd3ee9dbeffb5eafc243e9b4b483edf0ea9609fb49a8daaa4361d3ac37f5eb5df15d2850de1add56d461a18ffffffffe00200");
       public String saveImage(String codigoEntrada){
          byte[] data=hexStringToByteArray(codigoEntrada);
          try {
               File myFile = new File("C:/imagen.tif");
               FileOutputStream fout = new FileOutputStream(myFile);
               fout.write(data);
               fout.close();
               } catch (IOException e) {
               e.printStackTrace();
     }the image is saved into a file and you can open to see with a external viewer like paint, it's possible this, if the image it's corrupted?

Similar Messages

  • Problem dragging some photos into book.. they don't show at all.

    I have a problem dragging some photos into a book. I've never had this issue before. I can tell that "something" has moved because it often has a ! for resolution issues and the photo has the white check that signifies it has been used....but the photo doesn't show at all.
    The photos were made into sepia prints.
    Help! Any suggestions about what could be wrong?
    Thanks for any advice.

    The ! indicates that iPhoto has broken/lost the file path to the original file. Make a backup copy of the library and run the three fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select all options.
    Fix #2
    Rebuild the library using iPhoto Library Manager as follows:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    1 -Download iPhoto Library Manager and launch.
    2 -Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    4 - In the next window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: It may take some time to create the new library if you have a lot of photos.
    Fix #3
    Start over with a new library and import the Originals folder from your original library as follows:
    Creating a new library while preserving the Events from the original library.
    1. Move the existing library folder to the desktop.
    2. Open the library package like this.
    3. Launch iPhoto and, when asked, select the option to create a new library.
    4. Drag the Originals folder from the iPhoto Library on the desktop into the open iPhoto window.
    This will create a new library with the same Events as the original library if you have the Finder checkbox unchecked in the Events preference pane.

  • I am having problems importing some CDs into iTunes on a laptop with Windows 8. Most CDs import without problem. The ones I can't import can be imported into iTunes with Windows 7. Does anybody know why this problem is occurring?

    I am having problems importing some CDs into iTunes on a laptop with Windows 8. Most CDs import without problem. The ones I can't import can be imported into iTunes with Windows 7. Does anybody know why this problem is occurring?

    First-off, this seems to be a general problem with 10.4 (across all the operating systems of which I am aware).  Unfortunately, I cannot provide a permanent solution but, if you need a quick fix, this will (hopefully) work for you.
    For some inexplicable reason, iTunes no longer recognises standard Windows paths.  For example:
    Y:\Music\Buddy Holly\Buddy Holly - Rave On.mp3
    The end result is that it will import a playlist with no content. 
    It will, however, recognise the equivalent Apple paths which look like this:
    file://localhost/Y:/Buddy Holly/Buddy Holly - Rave On.mp3
    It is possible to convert your existing playlists using a few basic replace commands in something like Notepad.  In my case, I made some code changes in my music manager and now generate two sets of playslists (one standard and one to accommodate iTunes).
    Forgive me foir stating the obvious but please remember to make sure that the disk / path containing your music is accessible when doing the import otherwise you will probably get a blank result.  Note that you can do a bulk import by selecting all the (revised) playlists and dragging them onto the iTunes sidebar.
    I am sorry that this is not a "clean" solution but it will work if you are in a bind.  The only alternative of which I am aware is to wait for Apple to fix the problem.

  • How do I fix this problem placing Photoshop TIFF into InDesign?

    I am trying to place a Photoshop TIFF into an InDesign document but I am getting a pixelated/jagged version of the TIFF. What could be causing this? The original art looks fine in Photoshop. It is a TIFF of less than 8 MB, CMYK, about 3.5 by 3.5 inches. It includes image and text both created in Photoshop. When placed into an InDesign file, the art looks awful and the text is even worse. The text can barely be deciphered. I tried exporting the TIFF to PDF and placing that file, but it also looks bad.
    Any solutions anyone?

    How it looks in ID is basically irrelevant. How does it look in print or an exported PDF? Did you scale the image in ID?
    In Photoshop, which is a pixel editior, you are viewing the actual image pixels. In ID, which is a page layout app, you are looking at a screen preview jpeg that may or may not look terrific, depending on the image. If you've scaled the image you are chagning the "effective resolution" and it may not be high enough. You didn't mention waht it was in Photoshop at the saved dimensions, so it's hard to know if there was ever enough resolution to prevent jaggies. It's highly unlikely that text created in photoshop will NOT look pixelated unless the effective resolution is well north of 600 ppi.

  • Burning disc transforms NEF files into JPG

    Using the Finder method to burn a disc, I find that NEF files (from Nikon D300 camera) become JPG files. Or, at least, they have a .JPG extension (yes, capitalized, as opposed to lower case for jpg files), but they seem to be about the same size as the original NEF files (i.e. they do not appear to have been compressed. How do I burn a disc and keep them as .NEF files in the burned disc?
    This is the procedure I used:
    1. Insert a blank DVD disc into the computer drive.
    2. Click OK in dialogue box that says "Open Finder."
    3. Select the NEF photos in iPhoto and drag them to the DVD icon on the desktop.
    4. Open the DVD icon and click on "Burn" icon.
    5. Click OK in dialogue box that says burned disc will be compatible with Windows and Mac.
    Am I doing something wrong? TIA!!

    Try this workflow:
    1 - in iPhoto select the photos you want to burn.
    2 - go to the File ➙ Export ➙ File Export menu.
    3 - select Format = Original
    4 - select Title = whatever you want, the original file name or some other name.
    5 - export to a folder on the Desktop.
    6 - burn that folder which will contain the original RAW files to disk in the Finder.
    That should get the RAW files on the disk as you want.
    OT

  • Problems migrating a playlist into iTunes...

    Hi folks,
    I am having very frustrating problems migrating some music into my iTunes library and making it into a playlist which will display the tracks in the way that I want. I might not know some technical terms here, but I will try to be as clear and concise as possible!
    I have some music (the 'Glee' TV show soundtrack)that I downloaded elsewhere (i.e not from iTunes), and I just want to move it into an iTunes playlist, to display the tracks in the 'standard' way- that is, all in one 'block', numbered and sequenced in the correct running order.
    So all I did is exactly what I have done before: created a new playlist from the iTunes 'file' menu, given the playlist a name, then dragged and dropped each track from the folder that I downloaded the music into originally. So in this case- I dragged and dropped each track from it's location in a folder called 'J Girl music', which is where I download music for my girlfriend to.
    Now, I don't know whether the fact that the soundtrack is by a bunch of different artists (rather than just one) is part of the problem here, but what I get when I drag and drop into the iTunes 'Glee' playlist (using 'as list' as my 'view' option) is the tracks in the playlist displayed in 'clusters'.
    So the first two tracks appear in one separate, delineated box then the next two in a separate, delineated box and so on (kind of like having a number of individual albums within the playlist)- and each 'block' has its own separate album art displayed to the left. I hope people can visualise what I mean here- things seem easy to explain until you try to put them into words!
    So really all I want is for the 'Glee' playlist to be the same as my other ones-the tracks in one 'block' with no boxes separating them and sequenced in the correct order.
    I have tried a number of things to fix this: I have right-clicked on tracks (both from the playlist and the library) gone into 'info' and numbered them e.g 1 of 18, 2 of 18, etc. I have changed the info about artist to the heading 'various artists', I have tried checking the box that says 'part of a compilation', but no matter what I seem to do tracks 3,4,5 etc will not 'jump' and sit themselves directly underneath tracks 1 and 2- the 'boxes' dividing them remain!
    I hope I have explained this problem clearly (I really tried to) and I would be very appreciative of any help a forum member or members can provide. Thanks in advance.

    Hi folks,
    I am having very frustrating problems migrating some music into my iTunes library and making it into a playlist which will display the tracks in the way that I want. I might not know some technical terms here, but I will try to be as clear and concise as possible!
    I have some music (the 'Glee' TV show soundtrack)that I downloaded elsewhere (i.e not from iTunes), and I just want to move it into an iTunes playlist, to display the tracks in the 'standard' way- that is, all in one 'block', numbered and sequenced in the correct running order.
    So all I did is exactly what I have done before: created a new playlist from the iTunes 'file' menu, given the playlist a name, then dragged and dropped each track from the folder that I downloaded the music into originally. So in this case- I dragged and dropped each track from it's location in a folder called 'J Girl music', which is where I download music for my girlfriend to.
    Now, I don't know whether the fact that the soundtrack is by a bunch of different artists (rather than just one) is part of the problem here, but what I get when I drag and drop into the iTunes 'Glee' playlist (using 'as list' as my 'view' option) is the tracks in the playlist displayed in 'clusters'.
    So the first two tracks appear in one separate, delineated box then the next two in a separate, delineated box and so on (kind of like having a number of individual albums within the playlist)- and each 'block' has its own separate album art displayed to the left. I hope people can visualise what I mean here- things seem easy to explain until you try to put them into words!
    So really all I want is for the 'Glee' playlist to be the same as my other ones-the tracks in one 'block' with no boxes separating them and sequenced in the correct order.
    I have tried a number of things to fix this: I have right-clicked on tracks (both from the playlist and the library) gone into 'info' and numbered them e.g 1 of 18, 2 of 18, etc. I have changed the info about artist to the heading 'various artists', I have tried checking the box that says 'part of a compilation', but no matter what I seem to do tracks 3,4,5 etc will not 'jump' and sit themselves directly underneath tracks 1 and 2- the 'boxes' dividing them remain!
    I hope I have explained this problem clearly (I really tried to) and I would be very appreciative of any help a forum member or members can provide. Thanks in advance.

  • Bridge won't open some tiff & jpg files in RAW

    Most of the time bridge opens tiffs and jpgs in camera raw, but sometimes it won't for certain images. Anyone know a workaround?

    Sun, Jan-06-2008 01:32:13 am
    I also run into this weird problem. It happens on a random basis.
    Today I scanned a slide twice.
    Here's some info for each file:
    ===============================================
    04_ms-48.tif = 153.49 MB (160,950,170 Bytes)
    ImageWidth - 6316
    ImageLength - 4247
    BitsPerSample - 16 16 16
    Compression - 1 (None)
    PhotometricInterpretation - 2
    Make - Epson
    Model - Perfection4990
    StripOffset - 1400
    SamplesPerPixel - 3
    RowsPerStrip - 4247
    StripByteCount - 160944312
    XResolution - 4800.00
    YResolution - 4800.00
    PlanarConfiguration - 1
    ResolutionUnit - Inch
    Software - SilverFast 6.5.5r3
    DateTime - 2008:01:06 00:12:53
    ExifOffset - 352
    InterColorProfile - 460
    ExifImageWidth - 6316
    ExifImageHeight - 4247
    =========================================================
    05_ms-48.tif = 153.49 MB (160,950,038 Bytes)
    ImageWidth - 6316
    ImageLength - 4247
    BitsPerSample - 16 16 16
    Compression - 1 (None)
    PhotometricInterpretation - 2
    Make - Epson
    Model - Perfection4990
    StripOffset - 1400
    SamplesPerPixel - 3
    RowsPerStrip - 4247
    StripByteCount - 160944312
    XResolution - 4800.00
    YResolution - 4800.00
    PlanarConfiguration - 1
    ResolutionUnit - Inch
    Software - SilverFast 6.5.5r3
    DateTime - 2008:01:06 00:26:56
    ExifOffset - 352
    InterColorProfile - 460
    ExifImageWidth - 6316
    ExifImageHeight - 4247
    ===========================================
    Using Bridge v2.1.1.9 and Camera Raw v4.31
    In Bridge, this 04_ms-48.tif file will NOT open in Camera Raw.
    In Bridge, this 05_ms-48.tif file WILL open in Camera Raw.
    The only difference between the two files is the size. The 05_ms-48.tif is smaller by 132 bytes...
    In Silverfast, I think a slight change in density was made. This should not cause a rejection by Bridge!
    Each file is 153 MB. I'm willing to send these 2 files to anyone who can perhaps find the difference...

  • ACR 6.3RC still makes Bridge display some TIFFs & JPGs overexposed

    I had the same problem with TIFFs & JPGs after upgrading from ACR 6.1 to 6.2. My system is Win 7x64 and, of course, PsCS5 and Bridge 4.0.39. This time the upgrade was from ACR 6.1 to 6.3RC. Not all images are affected. The problem seems to be entirely random. The amount of overexposure seems to be in the order of 1 to 2 stops. The problem is limited in this way for me:
    1. All the affected images display correctly exposed when opened in Ps and ACR 6.3RC (and ACR 6.2) hosted by Bridge.
    2. Only TIFFs & JPGs (both B&W and Colour) "derived" ultimately from original TIFF scans (both B&W and Colour) made on a Nikon SuperCoolscan 5000 ED are affected. The original TIFF scans (99.99% are 16-bit) are all unaffected.
    3. The problem does not occur with any TIFF or JPG file derived from native CRW or NEF raw files or from native JPG files produced in-camera (Canon EOS 300D and Nikon D700), all of which are themselves unaffected.
    4. It does not matter were you might be in an image editing process. Some intermediate edits to TIFFs (I never make intermediate JPG edits) are affected, others are not. Editing might start with the TIFF and continue with edits to the TIFF, and only some of the subsequent TIFFs (or final JPGs derived from them) are affected. For example, there might be 6 distinct edits to a TIFF and only edits 3 through 6 are affected. Editing might procede immediately from the original TIFF scan to PSD, finalise with PSD, and then, AND sometimes only, any TIFF or JPG made from the final, flattened PSD produces a file which Bridge will display overexposed. Only some files in a batch of scans, all made at the same time and under exactly the same conditions (almost always with no adjustments made with the Nikon scanning software), are ever affected - never all of them.
    5. Some of the edits to the original TIFF scans (where the edits were kept as TIFFs) were made with Picture Window Pro, some with Lightroom 1.3 (I think), some with ACR 4.x, ACR 5.x, but most were made with PS CS3, CS4 and CS5: it does not matter, there are some affected files from each. The problem certainly does occur with files which have never been opened, let alone edited, in any version of ACR.
    6. I have several instances where simply making a copy of a TIFF scan in another folder (whether the copy was made by Bridge or with Windows Explorer has no influence) results in the copy only and not the original being displayed overexposed.
    7. If a file is affected, all TIFFs AND all JPGs derived from it will be overexposed, never just one or the other.
    The overexposure problem detailed above does not occur with ACR 6.1. All the files affected by ACR 6.2 and 6.3RC are displayed with correct exposure by Bridge when ACR 6.1 is installed.
    I'm at a complete loss to understand what is going on. Any suggestions would be most welcome.
    Has anyone else who was experiencing the Bridge/overexposure problem with either ACR 6.2 or 6.3RC found a solution?

    This will be posted in both the ACR and Bridge User Forums
    I've done some experimentation and found a workaround for, not the solution to, my problem with ACR 6.2 and 6.3RC causing Bridge to display random TIFFs and JPGs overexposed.
    This is a temporary, and, if you have lots of affected files, a very laborious, individual file workaround. Unless Adobe investigates, finds and corrects the cause of the problem, it seems likely to re-occur. Only fixing the cause of the problem (which must lie in the new (different from ACR 6.1) code of ACR 6.2 and 6.3RC) could be be truly regarded as a solution.
    Here is how I enabled Bridge to display my affected TIFFs and TPGs correctly, that is, with no amount of overexposure. These steps apply equally to B&W and Colour images.
    For a 16-bit TIFF, duplicate it in Bridge (Edit/Duplicate) and then open the duplicate in ACR 6.2 or 6.3RC (ACR) hosted by Bridge. Make sure that all the sliders are zeroed in the Main panel and that the Amount slider in the Sharpening section of the Details panel is also set to zero (to avoid unwanted additional sharpening). Then open the image in Photoshop (Ps) and immediately save the image (Save As) over itself (yes, you're replacing the file) back in the folder from which you opened it into ACR, making sure to choose no compression. The resaved duplicate will now be displayed with its proper exposure in Bridge, and any further TIFFs or JPGs (whether 16-bit or 8-bit) derived from this file will also be displayed correctly. Following this procedure, my invariable experience is that I end up with a TIFF either the same size as or smaller than the affected TIFF.
    Why no compression? Strangely, if you choose LZW compression (really the only logical alternative to "None") you end up with a larger file than you get with no compression. I have no idea why. Why not simply fix the affected file instead of a duplicate? No reason really, other than safety. If things go belly-up you still have your original, albeit, affected file. I also intend to keep my affected files for awhile just in case of some possible desire or need to re-examine them in the future.
    For an 8-bit TIFF, although I don't have any which are affected, the procedure would be the same as for a 16-bit TIFF. You will need to conduct your own tests regarding compression/no compression and the resulting file size.
    For a JPG, the procedure is pretty much the same (duplicating, opening in ACR, zeroing all sliders, opening in Ps and then saving over itself) but when saving try choosing Maximum Quality (12) which mostly, for me at least, produces a replacement JPG the same size as the original affected file. Of course, you can choose a greater level of compression if you wish, and my tests show that this will not adversely affect the outcome. You can use the replacement JPG to produce further, derivative 8-bit TIFFs or JPGs and all will display properly exposed in Bridge.

  • I am having a problem with my cs6 running very slow and when i save i am getting an error message that says, "This document is bigger than 2 gb (the file may not be read correctly by some TIFF viewers.) please help

    I am having a problem with my cs6 running very slow and when i save i am getting an error message that says, "This document is bigger than 2 gb (the file may not be read correctly by some TIFF viewers.) please help

    wen6275,
    It looks like you're actually using a camera or phone to take a photo of your monitor.
    That's not what is commonly known as a "screen shot". 
    It looks like you're on a Mac.  Hitting Command+Shift+3 places a capture of the contents of your entire monitor on your Desktop; hitting Command+Shift+4 will give you a cross-hairs cursor for you to select just the portion you want to capture.
    I'm mentioning this because I fear I'm not construing your original post correctly when you type "I am working with a large files [sic], currently it has 149 layers, all of which are high resolution photographs", so I'm wondering if there's some similar use of your own idiosyncratic nomenclature in your description of your troublesome file.
    Perhaps I'm just having a major senior moment myself, but I'm utterly unable to imagine such a file.  Would you mind elaborating?

  • My iphone4 suddenly shut down.I pluged into a charger it started vibration and got heat up in off mood. I also checked it to genius he said that its battery is ok but problem is some thing else. It is still in off mod. what i have to do?

    My iphone4 suddenly shut down.I pluged into a charger it started vibration and got heat up in off mood. I also checked it to genius he said that its battery is ok but problem is some thing else. It is still in off mod. what i have to do?

    I  am having a similar odd issue. First of all this summer i took my iphone 4 to apple because my screen had quit. I could hear calls and texts coming thru but screen was unresponsive. I was a month out of warranty so the nice fella at apple gave me a 30 day warranty, then replaced my handset with a refurb. Saturday night at dinner i was on my phine and it died. I plugged it in thinking nothing of it and went to bed. When i wooe up after the charger had been on all night all i had was the black screen with the battery (red) and lightning bolt, meaning it knew it plugged in but still did nothing. So off to apple i go. They said i was out of warranty and the problem (never said what problem) would cost 170 bucks to fix. So i went and upgraded to the iphone 5 ( figured if i'm spending that anyways may as well be on a new phone). When I got home i tinkered with the old one with all the online suggestions i could find. (Cleaning ports, hard reset, putting into recovery mode, and checking indicators for water damage which there was none). Still only saw the battery symbol. I left it alone figuring i can sell off cheap and someone else can repair. Last night for kicks i plugged it in again and it came to life! It is in recovery mode (needs to be hooked to itunes to regain functionality) but showed 100% battery charge. I went to show my bf and realized an issue. If its not plugged into the wall adaptor, it wont turn on. I figured then that if i can get it plugged in and pull it up on itunes maybe it would be fine. When plugged into the computer it wont hold enough power. It thrns on shows the apple for 30 seconds, shuts off. My ending conclusion on my own is that it needs a new battery in order to be revived. Anyone think this sounds like a reasonable conclusion? Or will i be wasting money? If i can get it restored to functional, cheaply i can give to my bf (his pos lg phone is almost toast) or sell it.

  • I just put some music into itunes, and it wont transfer into my phone. i never had this problem before.

    I just put some music into itunes, and it wont transfer into my phone. i never had this problem before.

    Sounds like you synced your new phone to his backup, not yours.  Reset the phone and try again. Or maybe Restore will let you resync it, I'm not going to try it on my phone to find out.

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

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

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

  • Photoshop cs5, Opening Tiff into Raw. Some open and others don't.

    I have installed cs5 onto my Windows Envy laptop. I want to open my tiff into raw. I can do that with some of the tiff files and others I cannot, the option is greyed out. Then the pic. next to it works and the one after does not, so forth and so on. I have gone back and forth in changing the camera raw preferences settings to try and get something going to no avail.
    Any answers ??
    BK

    Thank you for your willingness to help. I have since discovered that if I have layers on that particular tiff file I would have to flatten it first to open in raw. Thanks again

  • Problem downloading some movies & videos into New 60G Video Ipod

    Our 60G seems to have a problem with some of the videos and movies. It has downloaded many videos fine, but some has been downloaded without sound. Everything plays in itunes fine though. Help?

    did you convert the movie to mp4 first here is what i use.
    www.winavi.vom

  • Problem converting a batch of RAW's into jpg's

    I want to convert 200 RAW's into jpg's. been doing that for years but recently upgraded to Photoshop CC.
    When I run the imageprocessor it opens the first photo in Camera RAW and that's all, nothing happens...

    Moving to Photoshop forum.

Maybe you are looking for

  • Final Cut Pro: Ingested AVCHD clips are sometimes distorted

    Apple has released this support info: Last Modified: February 03, 2009 Article: TS2572 Symptoms AVCHD clips you transcode to ProRes from the Log and Transfer window are sometimes jumpy or distorted. Products Affected Final Cut Pro 6.x, Perian Quickti

  • Average Row length in a table

    Hi All, I am new to oracle and I have to find the average row length for all tables in a schema. Could anyone please help me. What is the difference between data length and row length. Thanks in advance Anu Message was edited by: user448373

  • Photo Booth: Photos Missing

    Is there a way to get photos back into photobooth? It seems that all my photos I took with it are no longer viewable on it, and are now just jpegs. I know its kinda picky but I liked having them all in there. I know there is a recent.plist which seem

  • Ipod  touch has white screen and not responding

    screen is white and not responding

  • Help needed for User-Defined Datatype

    Hi All, I have one table which has User-defined Column Datatype. Now Client wants us to rename the User-Defined Datatype for some Standardization process. How to do rename of it, coz Rename old to new doesnt work in Oracle 10.2.0.4G for TYPES. So we