Large tiff file in Photoshop CS6

I have been working on a large tiff file in Photoshop CS 6 for several hours now and it has grown to over 3 GB.  I was able to save it and exit but when I tried to reopen it I got an error that said that the version of Photoshop that I was running would not recognize the file.  I downloaded CC2014 but it does not recognize it either.  Any suggestions?

If Photoshop does not recognize the file as being in a known image format you may want to search for a file recovery program to see if what you have can be processed at all.
https://www.google.com/search?num=100&newwindow=1&safe=off&rlz=1C1CHFX_enUS546US546&q=Tiff +Image+File+repair+software&oq…
Make a copy of the bad file before trying to repair it.

Similar Messages

  • Automatically Slicing Large TIFF Files with Photoshop 5.1

    I am trying to automatically slice a very large TIFF file (800 MB) into 28 equally-sized rectangles using Actions (it is a scanned image of 28 scientific slides and reducing the resolution is not an option). My goal is to start with the TIFF file and end up with a folder that contains 28 separate files. I'll do this on many such TIFF files, so it needs to be coded into an action.
    So far I have an action that creates guides in a grid pattern and then converts the guides to 28 individual rectangular user slices that together cover the entire screen. Unfortunately the file is far too large  to use with the "Save for Web & Devices" tool and I also can't export to TIFF from that tool. So I made an action that individually selects each slice (using the slice select tool), copies it, creates a new file, pastes the image, saves it as a flattened, non-compressed TIFF into a new folder, then closes the file. When I try to run this I get the following error:
    The command "Select" is not currently available
              -- Continue --       -- Stop --
    If I press Continue the action is not carried out. If I press Stop and select the slice manually there is no problem (but then my action will not be fully automated). The image is in 8-bit RGB mode, and I've also tried converting the locked Background layer into a standard layer. I don't see any reason why the select command shouldn't be available! There is only one layer and there are user slices available for selection. I tried separating the slicing and select/import jobs into 2 different actions but it still didn't work.
    Any help you can give me would be greatly appreciated! Thank you!
    Photoshop CS 5.1 Extended, v. 12.1 x64 - I have installed the recent update
    Windows 7 64-bit
    6 GB RAM

    This might do it...
    It will save the individual files in a folder called filechop off the files path.
    #target photoshop
    function main(){
    if(!documents.length) return;
    var dlg=
    "dialog{text:'Script Interface',bounds:[100,100,380,290],"+
    "panel0:Panel{bounds:[10,10,270,180] , text:'' ,properties:{borderStyle:'etched',su1PanelCoordinates:true},"+
    "title:StaticText{bounds:[60,10,220,40] , text:'File Chop' ,properties:{scrolling:undefined,multiline:undefined}},"+
    "panel1:Panel{bounds:[10,40,250,130] , text:'' ,properties:{borderStyle:'etched',su1PanelCoordinates:true},"+
    "statictext1:StaticText{bounds:[10,10,111,30] , text:'Accross' ,properties:{scrolling:undefined,multiline:undefined}},"+
    "statictext2:StaticText{bounds:[140,10,230,27] , text:'Down' ,properties:{scrolling:undefined,multiline:undefined}},"+
    "across:DropDownList{bounds:[10,30,100,50]},"+
    "down:DropDownList{bounds:[140,30,230,50]},"+
    "saveFiles:Checkbox{bounds:[10,60,230,80] , text:'Save and Close new files?'}},"+
    "button0:Button{bounds:[10,140,110,160] , text:'Ok' },"+
    "button1:Button{bounds:[150,140,250,160] , text:'Cancel' }}};"
    var win = new Window(dlg,'File Chop');
    if(version.substr(0,version.indexOf('.'))>9){
    win.panel0.title.graphics.font = ScriptUI.newFont("Georgia","BOLD",20);
    g = win.graphics;
    var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [1.00, 1.00, 1.00, 1]);
    g.backgroundColor = myBrush;
    var myPen =g.newPen (g.PenType.SOLID_COLOR, [1.00, 0.00, 0.00, 1],lineWidth=1);
    win.center();
      for(var i=1;i<31;i++){
       win.panel0.panel1.across.add ('item', i);    
       win.panel0.panel1.down.add ('item', i);    
    win.panel0.panel1.across.selection=0;
    win.panel0.panel1.down.selection=0;
    var done = false;
        while (!done) {
          var x = win.show();
          if (x == 0 || x == 2) {
            win.canceled = true;
            done = true;
          } else if (x == 1) {
            done = true;
    if(!documents.length)return;
    var startRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    doc = app.activeDocument;
    app.displayDialogs = DialogModes.NO;
    doc.flatten();
    var tilesAcross = parseInt(win.panel0.panel1.across.selection.index)+1;
    var tilesDown =parseInt(win.panel0.panel1.down.selection.index)+1;
    var tileWidth = parseInt(doc.width/tilesAcross);
    var tileHeight = parseInt(doc.height/tilesDown);
    var SaveFiles = win.panel0.panel1.saveFiles.value;
    ProcessFiles(tilesDown,tilesAcross,tileWidth,tileHeight,SaveFiles);
    app.preferences.rulerUnits = startRulerUnits;     
    main();
    function ProcessFiles(Down,Across,offsetX,offsetY,SaveFiles){
    try{
    var newName = activeDocument.name.match(/(.*)\.[^\.]+$/)[1];
    }catch(e){var newName="UntitledChop"}
    var Path='';
    try{
    Path =  activeDocument.path;
    }catch(e){Path = "~/Desktop";}
    if(SaveFiles){
    Path = Folder(decodeURI(Path) +"/FileChop");
    if(!Path.exists) Path.create();
    TLX = 0; TLY = 0; TRX = offsetX; TRY = 0;
    BRX = offsetX; BRY = offsetY; BLX = 0; BLY = offsetY;
    for(var a = 0; a < Down; a++){
      for(var i = 0;i <Across; i++){
                var NewFileName = newName +"#"+a+"-"+i;
       app.activeDocument.duplicate (NewFileName, true);
        activeDocument.selection.select([[TLX,TLY],[TRX,TRY],[BRX,BRY],[BLX,BLY]], SelectionType.REPLACE, 0, false);
        executeAction( charIDToTypeID( "Crop" ), undefined, DialogModes.NO );
        app.activeDocument.selection.deselect();
    if(SaveFiles){
    var saveFile = File(decodeURI(Path+"/"+NewFileName+".jpg"));
    SaveJPEG(saveFile, 10);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
        activeDocument = documents[0];
    TLX = offsetX * (i+1) ; TRX  = TLX + offsetX; BRX = TRX; BLX = TLX; 
    TLX = 0; TLY = offsetY * (a +1); TRX = offsetX; TRY = offsetY * (a +1);
    BRX = offsetX; BRY = TRY + offsetY; BLX = 0; BLY = (offsetY * (a +1)+offsetY);
    if(SaveFiles){
    Path.execute()
    function SaveJPEG(saveFile, jpegQuality){
    jpgSaveOptions = new JPEGSaveOptions();
    jpgSaveOptions.embedColorProfile = true;
    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgSaveOptions.matte = MatteType.NONE;
    jpgSaveOptions.quality = jpegQuality;
    activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);

  • I would like to work with DICOM files so I may buy Photoshop CS6 Extended. Can a TIFF be exported from a DICOM file in Photoshop CS6 Extended?

    I would like to work with DICOM files so I may buy Photoshop CS6 Extended. Can a TIFF be exported from a DICOM file in Photoshop CS6 Extended?

    Also, I am looking through the Adobe website, and I can't find any place where Photoshop CS6 Extended is even offered for purchase. Is it extremely well hidden, or is it not available?

  • Can Photoshop open large TIFF files?

    Hi,
    Windows 32-bit OS cannot open TIFF files bigger than 4GB. I need to work on TIFF files that have a size up to 10GB. Does Photoshop support this?
    Thanks,

    The scanned files come from a big Roche cells scanner. Computers which have the Roche utility software can open it and those computer are in 32-bit or 64bit. I have even downloaded a TIFF image, from the nasa site, of 25GB and i could open it on my 32bit Windows OS.
    After doing some research, I found the following site http://www.remotesensing.org/libtiff/document.html . From there, I went to the following site : http://www.awaresystems.be/imaging/tiff/tifftags/extension.html and it seems that some tags within the tiff files are not recognized by some viewers.
    I also installed Microsoft KB2635500 http://support.microsoft.com/kb/2635500, which solves issues when we try to display a large TIFF file that contains multiple pages, althought this is not the case as we speak of a single file. I also should have tried before installing this KB.
    The tiff file (9GB) the user obtained when scanning with a Roche cell scanner is a TIFF file extension. The file I downloaded from the NASA website is also a TIFF file (25GB). I have a 32-bit OS and I could open the NASA tiff file without any problem but another user with a 32-bit OS cannot open any tiff file bigger than 4GB. That user gets the error message stating the file is corrupted or not supported.
    I will check later on in the morning when this user arrives.

  • Saving large tiff files we see a lot of times the lines in the saved file that have either missing ( white) pixels or they appear as a black line across entire file or portion of it

    saving large tiff files we see a lot of times the lines in the saved file that have either missing ( white) pixels or they appear as a black line across entire file or portion of it

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

  • Cannot open my NEF files in Photoshop CS6 from my new Nikon D800 camera.

    That's it, I Cannot open my NEF files in Photoshop CS6 Camera Raw from my new Nikon D800 camera. What am I doing wrong or what is wrong? I have the plug-in Camera Raw 7. and can open TIFF files but not the NEF files.
    Peace,
    Charles Fennen

    Hi ssprengel,
    to explain the scenario, i am basically a D7000 user and I do post production with Windows computer. But for an assignment I have hired D800, they have provided me their SD memory card. I have used the same memory card while shooting.
    I have transferred the NEF files from the camera using Nikon software. The transfer was successful but i am not able to open the Raw NEF file with ACR. Even my plugins are updated till date.
    The NEF thumbnails are having small lock logo in the bottom left corner. I do not know what does that mean. Like this.
    Kindly let me know what would be the prob? if my RAW files are corrupted kindly let me know how will I recover them?
    Thank you.

  • Opening files in Photoshop CS6

    Yesterday, before closing down, I uninstalled P/S 7, CS2 and CS3 to gain space, but do not know whether that action is relevant to my problem. Today I find that Jpegs will not open in Photoshop, and in Bridge only by going through Camera Raw. Photoshop will open tiffs, while Bridge will open some, but not all tiffs, through Camera Raw only. This problem follows many months of trouble-free operation of CS6.
    My operating system is Windows 7 Ultimate. I have downloaded the latest patches for CS6, and have set the Bridge Preferences item on File Associations to Default.
    Please, can someone throw light on this mystery?

    Thank you, Curt Y, I will certainly investigate your solution
    Best wishes, 
    John Rivers
    >-- Original Message --
    >Date: Tue, 09 Apr 2013 07:23:36 -0700
    >From: Curt Y <[email protected]>
    >Reply-To: [email protected]
    >To: sigint27 <[email protected]>
    >Subject: opening files in Photoshop CS6
    >
    >Curt Y http://forums.adobe.com/people/Curt+Y created the discussion
    >"Re: opening files in Photoshop CS6"
    >To view the discussion, visit: http://forums.adobe.com/message/5219186#5219186

  • Large Tiff files

    In our digital print department, all of our techs use PC's, we are seeing really large tiff file sizes. Our techs are opening pdf files in Photoshop, flattening them, and saving as tiff's. The file size of the tiffs are much, much larger than the pdf files before flattening. Our techs just started seeing this recently. Can someone tell me how they usually make tiffs (settings used) or if there is a hidden setting that might need to be changed?

    This is entirely normal. A TIFF will almost always be larger than a PDF, unless the PDF was raster; most are vector. However, if the files are larger than before, you probably have a different resolution than before.

  • How do I save an install file for Photoshop CS6

    I need to get an install file for Photoshop CS6 (not CR) that I can use on a Windows PC that, due to security reasons, does
    not have access to the internet.  In the past I have been able to save the install file for Photoshop and/or Lightroom on my internet connected PC and then move it to the the target PC on a thumb drive or CD.  But now with the CC and the new "Adobe Installer" I can't seem to see how to capture the install file. 
    Please let me know how to do this.
    dan

    Refer to this:
    Direct Download Links for Adobe Software
    Mylenium

  • Unable to open AVI files in Photoshop CS6

    Unable to open AVI files in Photoshop CS6
    I am running PS6 and want to open and edit AVI files. When I try to do that I get an error message saying "the video file cannot be opened" . This seems to apply to ALL avis - yet I can open and edit MP4, MMV etc. I installed Gspot to track whether it was a codec issue and when I try to open ANY file I get this error message : "Warning: DirectShow crashed while GSpot was attempting to obtain information about a codec.  This is usually due to damaged, misconfigured, conflicting, or poorly written codec drivers.  It is possible, perhaps even likely, that other media players will crash when they attempt to play this file as well, as most of them will also use DirectShow.  GSpot was able to intercept the crash, and has attempted to identify the codec or filter involved; uninstalling or reinstalling this codec or filter may solve the problem.  The codec was tentatively identified as:  C:\Windows\system32\imaadp32.acm Unknown video codec #11" I have NO idea where to go from here. I see a site to download the "imaadp32.acm"  codec but what about the "Unknown video codec #11". What the heck is that and what do I do about it. Any help would be appreciate, Cliff
    ps I should add that the avi files DO open and play in Bridge. I have the latest Quicktime. Everything is up to date and PS and the computer is otherwise working perfectly !

    Thanks Curt and 'Mylenium'
    I did re-set the prefs - but to no avail
    I checked and my graphics driver and audio is all up to date.
    No sure how to verify Windows Media Player's hardware acceleration options. I opened WMP Options /Perfformance tab and under Cd the DirX tab is checked.
    Running Windows Vista - so does the same caution apply regarding a re-install of Windows Media Components and DirectX ?
    Appreciate your help with this somewhat frustrating issue. I am converting some old 8mm film to avi with the hope of doing some edits then burning to DVD.
    Cliff

  • Unable to open Canon 7D CR2 raw files in Photoshop CS6

    Hi Folks,
    I have been trying to open Canon 7D CR2 raw files in Photoshop CS6 (Extended) (Windows 8.1) but I'm always getting the error "Could not complete your request because the file format module cannot parse your file".
    I installed the Camera Raw plugin ver 8.8.0.397 today. Did this initially by downloading and running the CameraRaw_8_8.zip available here Camera Raw plug-in installer. Still got the error.
    Went and did the Check Updates in Photoshop and updated the Camera Raw (and other components) but STILL cannot open the CR2 files.
    I can see the thumbnails in Bridge but when I double click to open them in Photoshop, same error.
    Cannot seem to get past the "Could not complete your request..." error.
    Any ideas?
    Cheers,
    Doug...

    Hi Folks,
    Thanks for your replies and assistance so far, very much appreciated. Its a very frustrating problem... this should be one of those things that just work.
    I have uploaded two sample pics taken with my canon 7d. If you get a chance, could you please try opening these images to see if they work on your machine.
    http://www.bespoke-gems.com/images/gemstones/misc/rawtest1_canon7d.cr2
    http://www.bespoke-gems.com/images/gemstones/misc/rawtest2_canon7d.cr2
    I have tried opening them on both my office and home computer but neither of them work.
    Hmmm... could it have anything to do with the lens (Canon Macro Lens EF  100mm1:2.8 USM)
    Many thanks!

  • How to save file in photoshop cs6 extended

    hi, i started using photoshop cs6 extended yesterday. i have no problem on tools but i have problem on saving my files in photoshop cs6 extended. i've tried to save my files like being shown in tutorials but when i click on the 'save' or 'save as' button, nothing appear on my screen. i've searching the tutorials on youtube but i didn't find the solution to my problem.please, do help me.

    http://forums.adobe.com/thread/375816?tstart=0
    Could you please post a screenshot with the pertinent Panels visible?
    Boilerplate-text:
    Are Photoshop and OS fully updated and have you performed the usual trouble-shooting routines (trashing prefs by keeping command-alt-shift/ctrl-alt-shift pressed while starting Photoshop after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed, 3rd party plug-ins deactivation, system maintenance, cleaning caches, font validation, etc.)?

  • I am trying to open a .tiff file in photoshop by using bridge and it opens it as a photo in windows. If I go to file open it says could not complete request because it is not the right type of document. It is a file from a lesson folder from school. Can a

    I am trying to open a .tiff file in photoshop by using bridge and it opens it as a photo in windows. If I go to file<open it says could not complete request because it is not the right type of document. It is a file from a lesson folder from school. Can anyone help me?

    Hi,
    The D810 requires Camera Raw 8.6 or later - the latest version that is compatible with Photoshop Elements 12 is Camera Raw 8.5 as far as I can see.
    You need to either buy a new version of Photoshop Elements or use the free Adobe DNG converter.
    DNG  Converter 8.8
    Win – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5888
    Mac – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5887
    Useful Tutorial
    http://www.youtube.com/watch?v=0bqGovpuihw
    Brian

  • No local help files for Photoshop CS6 extended

    Hi
    I wish to use local help files for Photoshop CS6 but only online support is available. Local files are not listed under the Adobe Help preferences. The option to search only local rather than online help is greyed out. I found and downloaded a PDF with of the help files but don't know where to install it or if this is possible. I have CS 5 Creative Suite and this works fine giving the option of local or online help when accessed.
    Is there a way to install and use local help files in photoshop CS6?
    Thank you.

    Hi and thanks for directing me to that article, it should have done the trick. I am using mac mountain lion 10.8.5.
    The help system has always operated oddly - I have Photoshop cs6 but also the cs5 master suite installed. CS5 works fine but Photoshop cs6 only gives the option for online help and then directs me to the CC site. There is no simple listing for just Photoshop help in the help menu - presumably as it is not seeing it installed
    I tried various configurations in the article, having to set up the folders they suggested. In my case, in a variety of alternative places as I have a boot up volume with the documents folder moved onto a RAID array so the Shared folder is not in the documents folder but in Users on the boot drive. So - confusing - but tried all the likely candidates and folder configurations/locations while following the instructions as closely as possible. Even tried an documents folder alias to redirect the program to the alternative path way.
    At least now I have the PDFs and can look through them outside the adobe interface. The problem with the community site being questions regarding photoshop alone, yield answers for all sort of other issues and programs.
    Thanks for your help though, which should have worked, appreciated.

  • Bridge Problem opening files in Photoshop CS6

    CS6 Bridge appears to work fine, however when I try to open a file into Photoshop CS6 I get a flag saying it cannot find Photoshop CS4? Any ideas?
    TIA Keith

    PhotoGene47 wrote:
    You can open Bridge and change the file associations in Edit>File Type Associations to change to PS CS6.  That is the easiest way.  Another way would be to open Control Panel>Programs>Default Programs to change the file association for .jpeg, .psd., .tif, et cetera. 
    For your info, and others, this does not work in situations were the file associations become corrupted by uninstalling a previous version.  The mechanism for corruption is not quite clear to Adobe, but somehow the registry for file associations gets reset to the version that was deleted.  Since the normal methods of changing file associations, that you mention, do not affect the registry file in question, the problem still remains.  Therefore one needs to wipe files with the Adobe Script Cleaner or go in and change the registry.

Maybe you are looking for

  • ERROR while adding summary field in group footer

    Hi all, i am using CR Server XI R2 i am trying to a subtotal in a group header using the code below fieldobjCls = new CrystalDecisions.ReportAppServer.ReportDefModel.FieldObjectClass();             fieldobjCls.Kind = CrystalDecisions.ReportAppServer.

  • Creating an epub file from a Framemaker 10 document

    Are there special tools I have to have to turn a Framemaker document into an epub file format? Thank you.

  • Scrubbing Audio in Sample Editor-Icons missing

    My Sample Editor's toolbox is missing both the Solo button and pencil tool. As I don't have access to the solo tool, I can't scrub audio. I do have the arrow, hand and zoom icons..just no icons for solo and pencil that are supposed to show up underne

  • Finding errors in a PDF

    I am generating some PDFs from scratch. One of the files opens fine in Acroba but it still clearly has a structural problem because if I check the file with the preflight in Acrobat it says thet the file is damaged and needs repair, and if I close th

  • Developing Flex outside of Eclipse plugin environment?

    I'm curious to know how many of those doing actual Flex development are working with the SDK directly and not using the Flash Builder Eclipse platform? While the design view aspect of the plugin is nice, I'm finding that I'm spending most of my time