Score export to PDF creating corrupt file

I have a three page score in the "guitar mix" format. Using the camera tool to export to a PDF, page 1 comes out fine, but pgs 2 and 3 won't open in Preview. It says the file is corrupt.
I have restarted the machine already. No change.

When you print to Pdf check the Page Setup box Scale does not say a tiny percentage like 2% or something. Check that it is 100%...
Hope this helps.

Similar Messages

  • InDesign cannot export to pdf after corrupt file crash. Mac 10.6.8, CS5 7.0.4

    Last Friday when opening an InDesign file that had become corrupt on the server, it crashed InDesign and since then hasn't been able to export to PDF. I've done a complete uninstall/reinstall of Creative Suite, ran Disk Utility on the MAC and still no luck. My next step is a complete wipe of the MAC and reinstall everything unless someone has another idea. Thanks, Ed

    see Adobe Forums: InDesign crashes at startup for John's list of additional user files you can delete. If that doesn't work, try renaming the Adobe folders inthe bad account, then copy the ones from the admin account that works.

  • Pdf creator is creating corrupt file on Mac with Mountain Lion

    pdf creator is creating corrupt file on Mac with Mountain Lion, how to rectify?

    Please say what PDF creator you have including version
    and how you know they are corrupt

  • AvAudioRecorder, create corrupted file on random check

    Hello,
    I face issue with AvAudioRecorder, create corrupted file on random check.
    below is complete functionality code.
    -(IBAction)btnRecordClick:(id)sender {
        [PlayingTimer invalidate];
        PlayingTimer = nil;
        if (isPaused==NO) {
            AVAudioSession *audioSession = [AVAudioSession sharedInstance];
            NSError *err = nil;
            [audioSession setCategory :AVAudioSessionCategoryPlayAndRecord error:&err];
            if(err){
                // NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                return;
            [audioSession setActive:YES error:&err];
            err = nil;
            if(err){
                // NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                return;
            //*******Working well with .wav,.caf and .mp4 files *****************
            recordSetting = [[NSMutableDictionary alloc] init];
            //this is for .wav and .caf file
            //this is for .mp4 file for iPhone 3GS/iPhone 4
            [recordSetting setValue: [NSNumber numberWithInt:kAudioFormatMPEG4AAC] forKey:AVFormatIDKey];
            [recordSetting setValue: [NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
            [recordSetting setValue: [NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];
            [recordSetting setValue:[NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey];
            [recordSetting setValue:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsBigEndianKey];
            [recordSetting setValue:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsFloatKey];
            self.strMessage = @"";
            self.strMessageType = [NSString stringWithFormat:@"Audio Message"];
            self.strFileName = [NSString stringWithFormat:@"%@.mp4", [_globalmodel stringUniqueID]];
            // NSLog(@"FileName :%@",self.strFileName);
            self.strUniqueRef = [NSString stringWithFormat:@"%@",[_globalmodel stringUniqueID]];
            NSString *soundPath;//=[NSString alloc];
            soundPath = [NSString stringWithFormat:@"%@/%@", DOCUMENTS_FOLDER,self.strFileName] ;
            NSURL *url1 = [NSURL fileURLWithPath:soundPath];
            // NSLog(@"Recording Path:%@",url1);
            err = nil;
            recorder = [[ AVAudioRecorder alloc] initWithURL:url1 settings:recordSetting error:&err];
            if(!recorder){
                // NSLog(@"recorder: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                UIAlertView *alert =[[UIAlertView alloc] initWithTitle: @"My Easy Media"
                                                               message: @"The Recording format is not supported on your device!"
                                                              delegate: nil
                                                     cancelButtonTitle:@"OK"
                                                     otherButtonTitles:nil];
                [alert show];
                [alert release];
                return;
            //prepare to record
            [recorder setDelegate:self];
            [recorder prepareToRecord];
            recorder.meteringEnabled = YES;
            BOOL audioHWAvailable = audioSession.inputIsAvailable;
            if (! audioHWAvailable) {
                UIAlertView *cantRecordAlert =
                [[UIAlertView alloc] initWithTitle: @"Warning"
                                           message: @"Audio input hardware not available"
                                          delegate: nil
                                 cancelButtonTitle:@"OK"
                                 otherButtonTitles:nil];
                [cantRecordAlert show];
                [cantRecordAlert release];
                return;
            // start recording
            [recorder record];
            _isRecordingStarted = YES;
            // SET TIMER // START TIMER
            timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(EndRecording:)
                                                   userInfo:nil repeats:YES];
            // END TO SETTING TIMER
            timerDisplayRight.hidden = NO;
            timerDisplayLeft.hidden = NO;
            timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", intMimute,-- intSecond];
            timerDisplayLeft.text = [NSString stringWithFormat:@"00:00"];
            progressView.progress = 0.0;
        else {
            isPaused=NO;
            [recorder record];
            _isRecordingStarted = YES;
            [btnReview setEnabled:NO];
            timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(EndRecording:)
                                                   userInfo:nil repeats:YES];
            timerDisplayRight.hidden = NO;
            timerDisplayLeft.hidden = NO;
        timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", intMimute,-- intSecond];
    -(IBAction)btnPauseClick:(id)sender {
        // NSLog(@"Pause Button of ActionSheet Clicked");
        [timer invalidate];
        timer = nil;
        isPaused=YES;
        [recorder pause];
        [btnPause setEnabled:NO];
        [btnRecord setEnabled:YES];
        [btnStop setEnabled:YES];
    -(IBAction)btnStopClick:(id)sender {
        // NSLog(@"Stop Button of ActionSheet Clicked");
        [recorder stop];
        progressView.progress = 1.0;
        // NSLog(@"Total Recording Secomd : %d", totalRecordingSecond);
        finalRecordingSecond = totalRecordingSecond;
        [btnStop setEnabled:NO];
        [btnReview setEnabled:YES];
        [btnRecord setEnabled:YES];
        [btnPause setEnabled:NO];
        timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", (totalRecordingSecond/60), (totalRecordingSecond % 60) ];
        timerDisplayLeft.text = [NSString stringWithFormat:@"00:00"];
        [timer invalidate];
        timer = nil;
        // REINITIALIZE TIMER VARIABLES...
        intMimute =  5;
        intTotalTime = (60 * intMimute);   
        intSecond = intTotalTime / intMimute;
        intMimute--;       
        // REINITIALIZE TIMER VARIABLES...       
        _isRecordingStarted = NO;
    Please help.
    once we start recored and after near about 10 to 15 second, tap on stop.
    It create file with length 24kb, which is not occured all time, but randomly found file is courrupted.

    I've been having the same problem for over a week for the Yankees @ Red Sox MLB's games of the year. I've reported the problem to apple by logging into my account in iTunes > purchase history > report problem. I know of several other people who have the same problems.

  • Will create PDF create the file as a high resolution without purchasing acrobat?

    will create PDF create the file as a high resolution without purchasing acrobat?

    Hi elizmonde,
    The Acrobat.com online services create the same quality PDF files as Acrobat.
    Please let us know if you have additional questions.
    Best,
    Sara

  • Cs5 InDesign crashing when exporting print pdf and markup file?

    We just did our upgrade yesterday from cs4 to cs5. Two things that I have discovered so far that I haven’t been able to figure out.
    I need to create a pdf from a file...I go to export — print pdf — this QUITS (if I do the interactive pdf it works okay but I need a print ready one. I had to print a postscript file  — then distill it in acrobat — so far, knock on wood that works but is time consuming.
    I tried to export a — InDesign MarkUp file (imdl), the new interchange to go from 5 to 4 — I was thinking okay...I will just take the cs5 file back to cs4 and make the pdf there but when making the imdl file to open in cs4 I also crash.
    any help would be appreciated!

    I had a major problem with exporting CS5 Indesign interactive PDF doc (270pgs) it would crash reasonbly consistently, other times behave OK?  After many hours reading forums, and Adobe help desk I found my own work-around which I want to share (as I couldn't believe it was so simple and worked!)
    OK..so the doc has navigation buttons and hyperlinks all the way through....I Exported half the doc.  Then the other half.  Then I combined in Acrobat. 
    There it is....simple and boy am I happy now!!

  • InDesign CS5 export to PDF created hyphens

    I exported a pdf from InDesign CS5 that created hyphens in a paragraph where none had existed. What gives?
    Thanks, Sidney
    Also using Acrobat Pro 9 and Windows 7 64-bit.

    emilydenaro wrote:
    Ah, sorry for the exporting misunderstanding. I thought it was implied that since you can't export using a product, it's through ID. The NitroPDF is what it is exporting to and thus where I thought there could potentially be a driver disconnect within the workflow.
    I'm confused. From ID you export to PDF (and get asked where to save the file). It sounds more like you are printing to PDF using Nitro PDF as a substitute for Distiller. Would you mind listing the commands you use to do that so I understand the workflow?
    And I guess things have changed with reader... the X version gives you a limited amount of printing, according to the download site? Never heard of that before.... Who knew? I was always steered towards Acrobat Distiller if using any printing where an Adobe product was accessible.
    What do you mean by a limited amount of printing? Distiller has no print function at all, nor any other fuction than to distill postscript into (flattened and primitive) PDF.

  • Hyperlink in pdf created with File/Print command

    I have a document with hyperlinks and convert them to pdf using the File/Print command
    The hyperlinks become inactive in the pdf file
    Does anybody know how to keep the hyperlinks in the pdf?

    Try a different printer driver to see if this has anythign to do with the .ppd used by epson 2200, try even adoeb pdf.
    Reset your preferences.
    Cmd-Opt-Ctrl-Shift when restarting AI on a Mac  to reset to the defaults.

  • Export PDF creates 0kb file and Print Error.

    By "Print Error", I mean a simple pop-up window with the pages logo and the sentence "Print. Error while printing" even though I haven't asked for anything to be printed. The resulting pdf file is zero k in size and useless.
    I had this problem in iW '06 and thought that '08 might fix it. No dice though.
    Deleating prefs did not fix the issue. ['06 or '08]
    Anyone? Thanks.
    CSK
    Burbank, CA

    I suspect that you've turned off a couple fonts with Font Book (or perhaps removed them from the Fonts folder). Pages expects certain fonts to exist - even if we don't use them or even want them.

  • Export to PDF from Book file is freezing

    I'm trying to export books to PDF from the ID CS6 book panel.
    Shorter books are exporting with no problem, but some of the longer ones are hanging up around page 380 or so. The Generating PDF dialog appears and shows that the export process is stalling; when I open the Force Quit Applications window, it shows "InDesign (not responding)".
    I have a brand new computer, and have no other applicaitons running when trying to export, so the processing power should not be an issue.
    Is there something I can do to solve this problem?
    I need to use the Export Book to PDF function to get the TOC links to function properly in the entire exported PDF.
    Thanks in advance, this is a huge problem, and has never happened in the past.

    Thakns Peter, I had seen this thread, but it doesn't really address my issue. I've exported individual chapters from the book file, all with success, so I know there isn't a file corruption issue.  The problem seems to do more with memory allocation/usage. 
    I have tried: quitting and then immediately exporting the file, and even rebooting and then relanuching and exporting.  Both of these allow me to get a few pages farther along, but still not through the entire book.
    I remember back in the day there used to be a setting for how much RAM/dis c space was allocated to a certain applicatino (I knowm it was a long time ago).  I didn't know if there might be something like this hidden somewhere

  • Exporting to PDF from rpt file and charts within not exported properly

    I am having issues when export .rpt file to pdf report using crystal report java. When exporting from Crystal Report, it displays the charts and boarders properly but when exporting using Java application the back ground colors and boarders disappears or fades. It makes the report look unprofessional. I am using version 2.0.
    Looking at this release note  at  the this link (http://www.businessobjects.com/products/dev_zone/eclipse/cr4e-updates-readme.pdf )  I see a reference to "JRC SDK RTF exporting is not consistent with CR RTF exporting" has been fixed in Release Update 8. I tried the latest release but it seems it has release update 4 only. So, my question is where do I get Release update 8? I am hoping that will fix my issue or if anybody has any suggestions that will help me resolve it. If you can reply at your earliest, I would really appreciate it.
    Thanks for your help in advance.
    Edited by: selomabebe on Jul 6, 2010 8:18 PM

    Here is snippet of code how I am exporting rpt file to pdf file. I didn't include every code here but I am hoping this will give you the idea. Please let me know if you need more info.
    public byte[] runReport(RPTParameters para) throws SQLException {
    byte[] reportData = null;
    ReportClientDocument reportClientDocument = null;
    try {               
         reportClientDocument = new ReportClientDocument();
         reportClientDocument.setReportAppServer(ReportClientDocument.inprocConnectionString);
         reportClientDocument.open(ReportDataConstants.CPS_RPT_FILE, OpenReportOptions._openAsReadOnly);
         ExportOptions exportOptions = new ExportOptions();               
         PDFExportFormatOptions pdfOptions = new PDFExportFormatOptions();
         exportOptions.setExportFormatType(ReportExportFormat.PDF);
         exportOptions.setFormatOptions(pdfOptions);
         ParameterFieldController paramFieldController = reportClientDocument.getDataDefController().getParameterFieldController();               
         paramFieldController.setCurrentValue("", "@ba", para.getBusinessAgreement());
         paramFieldController.setCurrentValue("", "ReportMonth", para.getMonth());
         paramFieldController.setCurrentValue("", "ReportYear", para.getYear());
         InputStream reportInputStream = reportClientDocument.getPrintOutputController().export(exportOptions);     
         reportData = new byte <reportInputStream.available()>;
         reportInputStream.read(reportData);
    catch (ReportSDKException e) {
    finally {
    return reportData;

  • Saving a PDF creates two files - one I named and one with a gibberish name

    I'm hoping someone can help me.  I got a new HP laptop (Windows 7) and downloaded Acrobat Standard 9 from the Adobe website when I couldn't find my install disc.  When I save a PDF, it saves correctly.  However, a second file is created with a gibberish name composed of three letters and five numbers (i.e. aab05176).  When I try to open the mystery file, my laptop asks what program it should use.  If I choose Adobe, it will open and the mystery file is a copy of the PDF that's also saved under the name I told it to Save As.  So, essentially, when I save, I get two copies every time, and always in the same destination folder. 
    Can anyone help me fix this?  When I'm working on a PDF, I like to save often, so my work won't be lost.  When I'm done, I have tons and tons of these gibberish files to delete.
    Thank you in advance!

    The filie with the funky name is a temp file that is created that is eventually made into the file you are saving as a pdf. You do not say where the file is being stored, the it should be in a temp folder that periodically gets cleaned out. However, sometimes one does have to manually cleanup the temp folder.

  • Exporting Interactive PDF with MP4 File

    I am trying to export a file from InDesign for work.  We send out daily email with PDFs from InDesign and would like to include from training videos.  How can we include the MP4 format video so we can watch them in the PDF we send out.  I've read through the Interactive PDF guides and forums.  A still image of the first frame of the video appears, we can't get it to play.
    Thanks!
    Adam

    While including an MP4 video is good if you know the recipient is using Acrobat/Reader on a desktop computer, the content may or may not work on a tablet or smartphone. I'd go with Wilhelm's suggestion of providing a link.

  • Numbers 3.5 export to PDF creates single page

    When I export a Numbers 3.5 sheet to PDF, the PDF shows up as a long single file. How do I break this up either in Number or in Adobe Acrobat? It seems very odd that there is no evident way to to do this in Numbers so that it will export this way? Is this impossible? A bug? I have searched everywhere for an answer. Thank you!

    Try using the menu item "File > Print" then from the Print format screen click the "Print..." button (bottom right) then from the print dialog select from the PDF button select "Save as PDF.."

  • Logic Pro 8: unable to print score.  saves pdf and print files as blank

    hi guys,
    i cannot print my score from logic pro 8. anyone else have this problem? i get nothing but blank pages when trying to print or save as pdf file. also blank in preview. all other programs print fine. i was on the phone with apple tech for an hour and he couldn't solve it. he had me uninstall and reinstall program and still same problem.

    It may be that in your page set up (under the file menu) you are not at 100% but some large number like 2,386. This has happened to me and all I got was a blank page.
    Dan

Maybe you are looking for

  • Third Party Preferences

    No third party preference files are showing up in my Library's Preferences folder - Graphic Converter, as an example. I've repaired permissions and all of that. Am I missing something?

  • ABAP Development standards for HR- ABAP

    Hi ALL Does any body has any document for Programming standards in HR ABAP programming. Thanking in advance for you support. cheers AJ

  • Problem with ScrollPanel

    Following is my code. I have created the components and added then to JPanel and then that JPanel is added the JScrollPanel. My scroll bars are not working. Please see my code and tell me how they will work. You have to enter an integer in the first

  • OC4J startup failed: java.util.zip.ZipException: error in opening zip file

    I am getting the following error. Can someone help me on how to fix this issue? Thanks E:\oracle\product\oas\10.1.3.1\j2ee\home>java -jar oc4j.jar OC4J startup failed org.xml.sax.SAXException: META-INF/boot.xml in E:\oracle\product\oas\10.1.3.1\j2 ee

  • How do you get the display message to appear only one for each case?

    Hi Friends, I am here with another question.... I have built a VI that should contain 6 checkboxes, when a particular checkbox is selected by the user it should display a message to the user of which checkbox is checked. My problem is:  when I select