Problem with PDFBox-0.7.3 library - Runtime Error

Hello,
The problem is inside the method "chamaConversor".
" conversor.pdfToText(arquivoPdf,arquivoTxt);" make a file.txt from one file.pdf. After that it don?t return the control to "ConstrutorDeTemplate2.java", and show the following error message:
Exception in thread "AWT-EventQueue-O" java.lang.NoClassDefFoundError : org/fontbox/afm/FontMetric
at org.pdfbox.pdmodel.font.PDFont.getAFM (PDFont.java:334)
I am using the NetBeans IDE 5.5.
I have added all of these libraries below to my project from c:\Program Files\netbeans-5.5\PDFBox-0.7.3\external:
* FontBox-0.1.0-dev.jar
* ant.jar
* bcmail-jdk14-132.jar
* junit.jar
* bcprov-jdk14-132.jar
* lucene-core-2.0.0.jar
* checkstyle-all-4.2.jar
* lucene-demos-2.0.0.jar
and PDFBox-0.7.3.jar from c:\Program Files\netbeans-5.5\PDFBox-0.7.3\lib.
There are no more jar from PDFBox-0.7.3 directory.
All of these libraries are in "Compile-time Libraries" option in Project Properties. Should I add they to "Run-time Libraries" option?
What is going on?
Thank you!
  * ConstrutorDeTemplate2.java
  * Created on 11 de Agosto de 2007, 14:54
  * @author
package br.unifacs.dis2007.template2;
// Java core packages
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.text.*;
import java.util.*;
// Java extension packages
import javax.swing.*;
import org.pdfbox.*;
public class ConstrutorDeTemplate2 extends JFrame
    implements ActionListener {
    private JTextField enterField;
    private JTextArea outputArea;
    private BufferedWriter out;
    private String word;
    private PdfToText conversor = new PdfToText();
    // ajusta a interface do usu?rio
    public ConstrutorDeTemplate2()
       super( "Testing class File" );
       enterField = new JTextField("Digite aqui o nome do arquivo :" );
       enterField.addActionListener( this );
       outputArea = new JTextArea();
       ScrollPane scrollPane = new ScrollPane();
       scrollPane.add( outputArea );
       Container container = getContentPane();
       container.add( enterField, BorderLayout.NORTH );
       container.add( scrollPane, BorderLayout.CENTER );
       setSize( 400, 400 );
       show();
    // Exibe as informa??es sobre o arquivo especificado pelo usu?rio
    public void actionPerformed( ActionEvent actionEvent )
       File name = new File( actionEvent.getActionCommand() );
       // Se o arquivo existe, envia para a sa?da as informa??es sobre ele
       if ( name.exists() ) {
          outputArea.setText(
             name.getName() + " exists\n" +
             ( name.isFile () ?
                "is a file\n" : "is not a file\n" ) +
             ( name.isDirectory() ?
                "is a directory\n" : "is not a directory\n" ) +
             ( name.isAbsolute() ? "is absolute path\n" :
                "is not absolute path\n" ) +
             "Last modified: " + name.lastModified() +
             "\nLength: " + name.length () +
             "\nPath: " + name.getPath() +
             "\nAbsolute path: " + name.getAbsolutePath() +
             "\nParent: " + name.getParent() );
          // informa??o de sa?da se "name" ? um arquivo
          if ( name.isFile() ) {
             String nameString = String.valueOf(name.getPath());
             String nameTeste = new String(nameString);
             if (nameString.endsWith(".pdf"))
                 nameTeste = chamaConversor(nameString);
             else
                 if (nameString.endsWith(".doc"))
                     nameTeste = chamaConversorDoc(nameString); // chama conversor de arquivos DOC
                 else
                     if (nameString.endsWith(".txt"))
                         nameTeste = nameString;
             // se o arquivo termina com ".txt"           
             if (nameTeste.endsWith(".txt"))
                 // acrescenta conte?do do arquivo ? ?rea de sa?da
                 try {
                     // Create the tokenizer to read from a file
                     FileReader rd = new FileReader(nameTeste);
                     StreamTokenizer st = new StreamTokenizer(rd);
                     // Prepare the tokenizer for Java-style tokenizing rules
                     st.parseNumbers();
                     st.wordChars('_', '_');
                     st.eolIsSignificant (true);
                     // If whitespace is not to be discarded, make this call
                     st.ordinaryChars(0, ' ');
                     // These calls caused comments to be discarded
                     st.slashSlashComments(true);
                     st.slashStarComments(true);
                     // Parse the file
                     int token = st.nextToken();
                     String word_ant = "";
                     outputArea.append( " \n" );
                     out = new BufferedWriter(new FileWriter(nameTeste, true));
                     while (token != StreamTokenizer.TT_EOF) {
                         token = st.nextToken();
                         if (token == StreamTokenizer.TT_EOL){
                             //out.write(word);
                             out.flush();
                             out = new BufferedWriter(new FileWriter(nameTeste, true));
                             //outputArea.append( word + "\n" );
                             // out.append ( "\n" );
                         switch (token) {
                         case StreamTokenizer.TT_NUMBER:
                             // A number was found; the value is in nval
                             double num = st.nval;
                             break;
                         case StreamTokenizer.TT_WORD:
                             // A word was found; the value is in sval
                             word = st.sval;
                             //   if (word_ant.equals("a") || word_ant.equals("an") || word_ant.equals("the") || word_ant.equals("The") || word_ant.equals("An"))
                             outputArea.append( word.toString() + " \n " );
                            // out.append( word + "   " );
                             //     word_ant = word;
                             break;
                         case '"':
                             // A double-quoted string was found; sval contains the contents
                             String dquoteVal = st.sval;
                             break;
                         case '\'':
                             // A single-quoted string was found; sval contains the contents
                             String squoteVal = st.sval;
                             break;
                         case StreamTokenizer.TT_EOL:
                             // End of line character found
                             break;
                         case StreamTokenizer.TT_EOF:
                             // End of file has been reached
                             break;
                         default:
                             // A regular character was found; the value is the token itself
                             char ch = (char)st.ttype;
                             break;
                         } // fim do switch
                     } // fim do while
                     rd.close();
                     out.close();
                 } // fim do try
                 // process file processing problems
                 catch( IOException ioException ) {
                     JOptionPane.showMessageDialog( this,
                     "FILE ERROR",
                     "FILE ERROR", JOptionPane.ERROR_MESSAGE );
             } // fim do if da linha 92 - testa se o arquivo ? do tipo texto
          } // fim do if da linha 78 - testa se ? um arquivo
          // output directory listing
          else if ( name.isDirectory() ) {
                 String directory[] = name.list();
             outputArea.append( "\n\nDirectory contents:\n");
             for ( int i = 0; i < directory.length; i++ )
                outputArea.append( directory[ i ] + "\n" );
          } // fim do else if da linha 184 - testa se ? um diret?rio
       } // fim do if da linha 62 - testa se o arquivo existe
       // not file or directory, output error message
       else {
          JOptionPane.showMessageDialog( this,
             actionEvent.getActionCommand() + " Does Not Exist",
             "ERROR", JOptionPane.ERROR_MESSAGE );
    }  // fim do m?todo actionPerformed
    // m?todo que chama o conversor
    public String chamaConversor(String arquivoPdf){
        String arquivoTxt = new String(arquivoPdf);
        arquivoTxt = arquivoPdf.replace(".pdf", ".txt");
        try {
            conversor.pdfToText(arquivoPdf,arquivoTxt);
        catch (Exception ex) {
            ex.printStackTrace();
        return (arquivoTxt);
    // executa a aplica??o
    public static void main( String args[] )
       ConstrutorDeTemplate2 application = new ConstrutorDeTemplate2();
       application.setDefaultCloseOperation (
          JFrame.EXIT_ON_CLOSE );
    } // fim do m?todo main
}  // fim da classe ExtratorDeSubstantivos2
  * PdfToText.java
  * Created on 11 de Agosto de 2007, 10:57
  * To change this template, choose Tools | Template Manager
  * and open the template in the editor.
//package br.unifacs.dis2007.template2;
  * @author www
package br.unifacs.dis2007.template2;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.net.MalformedURLException;
import java.net.URL ;
import org.pdfbox.pdmodel.PDDocument;
import org.pdfbox.pdmodel.encryption.AccessPermission;
import org.pdfbox.pdmodel.encryption.StandardDecryptionMaterial;
import org.pdfbox.util.PDFText2HTML;
import org.pdfbox.pdmodel.font.PDFont.* ;
import org.pdfbox.util.PDFTextStripper;
import org.pdfbox.util.*;
import org.pdfbox.pdmodel.*;
public class PdfToText
    public void pdfToText( String pdfFile, String textFile) throws Exception
            Writer output = null;
            PDDocument document = null;
            try
                try
                    //basically try to load it from a url first and if the URL
                    //is not recognized then try to load it from the file system.
                    URL url = new URL( pdfFile );
                    document = PDDocument.load( url );
                    String fileName = url.getFile();
                    if( textFile == null && fileName.length () >4 )
                        File outputFile =
                            new File( fileName.substring( 0,fileName.length() -4 ) + ".txt" );
                        textFile = outputFile.getName();
                catch( MalformedURLException e )
                    document = PDDocument.load( pdfFile );
                    if( textFile == null && pdfFile.length() >4 )
                        textFile = pdfFile.substring( 0,pdfFile.length() -4 ) + ".txt";
                   //use default encoding
                  output = new OutputStreamWriter( new FileOutputStream( textFile ) );
                PDFTextStripper stripper = null;
                stripper = new PDFTextStripper();
                stripper.writeText( document, output );
            finally
                if( output != null )
                    output.close();
                if( document != null )
                    document.close();
            }//finally
        }//end funcao
 

All of these libraries are in "Compile-time
Libraries" option in Project Properties. Should I add
they to "Run-time Libraries" option?Yes

Similar Messages

  • Need fix for Microsoft Visual C++ Runtime Library Runtime Error

    Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program:C:/Program/Serato/ScratchLIVE/ScratchLIVE.exe
    This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
    I'm using 32 bit version of Vista and an external drive.
    I have also posted on the software manufacturer sight as well
    http://www.scratchlive.net/forum/discussion/?discussion_id=103045#1320814
    Any help anyone can give me is appreciated

    Hi,
    Mostly, this kinds of error can be caused by two factors:
    1.Runtime components of Visual C++ Libraries are missing.
    2.Software problem.
    If the issue is caused by #1, you can reinstall the Runtime components of Visual C++ Libraries to resolve the problem.
    Microsoft Visual C++ 2008 Redistributable Package (x86)
    http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en
    If the issue still persists after installing above package, the issue should be a software problem. I suggest you take a clean boot check whether it is a software conflict issue. If not, it is still recommended to address the problem with manufacturer support. Thank you for your understanding.
    For your convenience:
    Clean Boot
    =============================
    1. Click Start, type "MSCONFIG" (without the quotations) in the Search Bar and Press "Enter" to start the System Configuration Utility.
    2. Click the "Services" tab, check the "Hide All Microsoft Services" box and click "Disable All" (if it is not gray).
    3. Click the "Startup" tab, click "Disable All" and click "OK".
    4. Restart the computer and test the issue.
    Note: Clean Boot is a troubleshooting step. If some programs have been disabled, we can re-enable them later. If you see the System Configuration Utility, check the box of "Don't show this message" and then click "OK".
    Please monitor the system in the Clean Boot environment. If the problem does not occur, it indicates that the problem is related to one application or service we have disabled. You may use the MSCONFIG tool again to re-enable the disabled item one by one to find out the culprit.
    Hope it helps.
     

  • Adobe Acrobat 8 - MS Visual C ++ Runtime Library Runtime Error!

    ALl of a sudden as of yesterday I am getting the following error when opening Word 2003
    MS Visual C ++ Runtime Library Runtime Error!
    C:\Program Files\Microsoft Office\Office10\Winword.EXE
    I have disabled the Adobe PDF addin, which successfully has suppressed the error. The client would like to continue using this toolbar.
    I have done the following
    Deleted Normal.dot file
    Ran repair on Microsoft Office Basic 2003
    Ensured Office SP3 and all latest patches applie
    Restarted computer, looked for Adobe updates (none available)
    Ran Detect / Repair on Adobe Acrobat 8.1.3 which successfully re-installed AdobePDF Word Plugin
    Uninstalled all Adobe Products
    Restarted computer / reinstalled Adobe Acrobat Pro
    I have also tried renaming the .dll file.
    What are my next steps?
    Thanks in advance

    Oligarlicky,
    Have you sent PaulRB a private message with your crash logs and reports? Try that out and see if you can get a response (make sure you reference this thread).
    If you don't hear back, I would recommend reposting your issue in new thread with some more details specific to your application. This thread has been relatively inactive and you might get better exposure by starting fresh.
    Regards,
    Neil Dorsey
    Applications Engineering
    Neil
    Applications Engineering
    National Instruments
    www.ni.com/support

  • Visual C ++ Runtime Library, Runtime Error.. I keep getting this message can anybody help!

    Visual C ++ Runtime Library, Runtime error..I keep getting this message can anybody help please !!

    What is the /exact/ error?  What are your system details?  Are you running 32-bit or 64-bit version of the software (if your OS supports it)? 
    I assume the message you are getting is about the UI runtimes every application needs some version of, which is typically supplied by Visual Studio, though there are redist versions bundled with many apps.
    Unfortunately, Windows library management can be a bit of DLL hell (which Microsoft is making an effort to address in Windows 7.)  There are many, many references to this with potential fixes, in Microsoft KB articles.
    But the first step is good information so you can work from the known to the unknown.

  • MS Visual C++ Runtime Library Runtime Error

    Hi folks,
    I've recently come across the error message:
    "Microsoft Visual C++ Runtime Library Runtime Error!
    Program: Program: C:\...\LabVIEW.exe
    This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information."
    This occurs when I try to open the Interactive Test Panel from the project tree for a Softmotion axis. I'm using two 9514 modules using hardware and setup specified here: http://www.ni.com/pdf/manuals/375516b.pdf. This is only a recent issue as I have previously been able to use the Interactive Test Panel for this setup. The only actions I have taken recently were installing Xilinx 12.4 SP1 and configuring/running the 9514 Basic Move (FPGA) example for my setup. I have tried to reinstall the NI Visual C++ Redistributable Package (x86) to no avail. Any insight as to how I can resolve this issue would be greatly appreciated. I would really like to avoid a clean install of Labview and/or Windows.

    Oligarlicky,
    Have you sent PaulRB a private message with your crash logs and reports? Try that out and see if you can get a response (make sure you reference this thread).
    If you don't hear back, I would recommend reposting your issue in new thread with some more details specific to your application. This thread has been relatively inactive and you might get better exposure by starting fresh.
    Regards,
    Neil Dorsey
    Applications Engineering
    Neil
    Applications Engineering
    National Instruments
    www.ni.com/support

  • C++ library runtime error on dreamweaver cs3

    I´ve got this error while using Dreamweaver CS3.
    Microsoft C++ Library Runtime error on C:\Program Files\...
    this is the system log(the OS is in spanish):
    Aplicación con errores: dreamweaver.exe, versión:
    9.0.0.3481, módulo con error:
    fwlaunch.dll , versión 2.0.0.2, dirección de error
    0x00038036.
    The application hangs and I have to force quit.
    problems in
    fwlaunch.dll ??

    Hello meld80,
    1. Exit all programs, including Internet Explorer.
    2. From Start. Type the following command in the Start Search box, and then press ENTER: inetcpl.cpl
    3. The Internet Options dialog box appears. Click the Advanced tab.
    4. Under Reset Internet Explorer settings, click Reset. Then click Reset again. When Internet Explorer finishes resetting the settings, click Close in the Reset Internet Explorer Settings dialog box.
    5. Start Internet Explorer again.
    Need fix for Microsoft Visual C++ Runtime Library Runtime Error
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • I have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this?

    i have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this

    Try downloading the trial. It ought to detect that you have a 64-bit system.
    You aren't using Vista, are you? PSE 13 requires at least win 7 and I think a few folks with vista have gotten a similar error message on trying to install it.

  • Dreamweaver CS4, Microsoft Visual C ** Runtime Library, " Runtime Error"

    Hi, I got a runtime error while working in Dreamweaver CS4. I searched the forum for answers and tried the only solution I could find ( changing the name of the configuration folder)... it didn't work for me, are there any other solutions? My OS is Windows Vista Business Thankyou

    Thank you for your reply, I would have replied sooner but I couldn't sign in to Adobe. My issue was solved by trying another method:
    I got my first runtime error when  I opened a text document with Dreamweaver that I created from my desktop, at first the file extension was .css.txt,  I made it a .css file and if I right clicked  and "opened with" Dreamweaver I would get the runtime error.
    Since then I have created a site definition and created everything within Dreamweaver and had no issue with runtime errors.
    I was following a tutorial on Slicing and really wanted to carry it through but instead I resized each image and put into Dreamweaver's prebuilt template. I had to settle due to time sensitivity. 
    I will certainly try slicing on my own time from here on, lol
    Thanks Preran!

  • I have problems with the 'installation of creative cloud. Error Code: 205

    I have problems with the 'installation of creative cloud. Error Code: 205 What can I do to fix this?

    Errors 201 & 205 & 206 & 207 or several U43 errors
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html

  • Microsoft Visual C   Runtime Library Runtime Error! Program: C:\Program Files (x86)\iTunes\iTunes.exe R6034 An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information.

    Microsoft Visual C++ Runtime Library Runtime Error! Program: C:\Program Files (x86)\iTunes\iTunes.exe R6034 An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information.
    Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program: C:\Program Files (x86)...
    R6034
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    OK   

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components; this won't normally affect its library, but that should be backed up anyway.
    (99146)

  • Hyperion Microsoft Visual C++ Runtime Library - Runtime Error

    Hi,
    I've started to get the message 'Hyperion Microsoft Visual C++ Runtime Library - Runtime Error' when trying to run a Query. I'm not sure what caused this to start happening. Has anyone come across this issue and if so, how did you fix it?
    Thanks!

    Have a look at      
    Financial Reporting Error: "Error Connecting to Database Connection: Com/hyperion/ap/adm/HssConn" (Doc ID 1301030.1) in MOS.
    HTH-
    Jasmine.

  • Microsoft Visual C++ Library- Runtime Error

    Hi All:
    I developed some Oracle Forms using Oracle Builder on Oracle Application Server Containers for J2EE 10g (10.1.2.0.2). I am able to access the
    Welcome page by entering http://127.0.0.1:8889/j2ee/. However, I get a pop-up dialogBox "Microsoft Visual C++ Library- Runtime Error. Program : C:\Program Files\Internet Explorer\iexplorer.exe. The application has requested the runtime to
    terminate in an unusual way."
    when I enter http://localhost:8889/forms/frmservlet.Yet I have Forms.html = http://localhost:8889/forms/frmservlet in my Cauprefs.ora file.
    Does anyone know why. Can someone offer any suggestion?
    Thanks

    My operating system  is Windows Xp Sp3.The script  is JavaScript file.when the scripts execute finished,that dialog occured.
    The script contents is follow:
    var myFile = new File("\D:\\music\\Music.aepx");
    app.open(myFile);
    var oneDuration = app.project.item(2).duration;
    var twoDuration = app.project.item(3).duration;
    var threeDuration = app.project.item(4).duration;
    var comp  = app.project.item(1);
    var templateDuration = 500;
    comp.layer(1).startTime = 0;
    comp.layer(2).startTime = oneDuration-5;
    comp.layer(3).startTime = oneDuration + twoDuration-10;
    app.project.item(1).workAreaDuration = templateDuration;
    if (comp.layer(1)("audioLevels").numKeys > 0) {
    for (var i = comp.layer(1)("audioLevels").numKeys; i >0 ;  i--){
    comp.layer(1)("audioLevels").removeKey(i)}}
    if (comp.layer(2)("audioLevels").numKeys > 0) {
    for (var i = comp.layer(2)("audioLevels").numKeys; i >0 ;  i--){
    comp.layer(2)("audioLevels").removeKey(i)}}
    if (comp.layer(3)("audioLevels").numKeys > 0) {
    for (var i = comp.layer(3)("audioLevels").numKeys; i >0 ;  i--){
    comp.layer(3)("audioLevels").removeKey(i)}}
         comp.layer(1)("audioLevels").setValue([0,0]);
      comp.layer(2)("audioLevels").setValue([0,0]);
      comp.layer(3)("audioLevels").setValue([0,0]);
    if (oneDuration > templateDuration){
    comp.layer(1)("audioLevels").setValueAtTime(templateDuration-5,[0,0])
        comp.layer(1)("audioLevels").setValueAtTime(templateDuration,[-40,-40])
       }else if (oneDuration + twoDuration > templateDuration+5){
        comp.layer(2)("audioLevels").setValueAtTime(templateDuration-5,[0,0])
        comp.layer(2)("audioLevels").setValueAtTime(templateDuration,[-40,-40])
       }else{
        comp.layer(3)("audioLevels").setValueAtTime(templateDuration-5,[0,0])
        comp.layer(3)("audioLevels").setValueAtTime(templateDuration,[-40,-40])
    var myFile = new File("\D:\\music\\temp.aepx");
    app.project.save(myFile);
    app.quit();

  • When firefox opens it says microsoft visual c++ library runtime error program abnormal termination

    when i opens Firefox it takes some time and pop up a small window that shows Microsoft visual c++ library runtime error program need abnormal termination when press OK it get disappeared and causes Firefox termination without loading ,during this time Firefox uses maximum CPU space

    These are Screen Shots of what is happening.

  • Having a problem with eBooks in my iTunes library.

    As the title says, I'm having some problems with the iTunes library not reflecting what's actually on the disk.
    I add the ebook and it seems to add ok.  The file gets consolidated into /mymusic/books under the author correctly, but the book is missing from the library.  The book is in ePub format, and seems to have the right file extension and shows up as a file of "ePub" type in windows explorer.
    Any ideas?  Is there a way to re-build the library or a portion of it?

    Hi tony paine,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    iCloud: Keeping the Junk folder consistent between iCloud Mail and OS X Mail
    http://support.apple.com/kb/HT4911
    Cheers,
    - Judy

  • Problem with Export Project as New Library

    Getting some behavior from Aperture that I do not understand.
    I am running Aperture 3.5.1 on OSX 10.9.1 on both a MacPro and a MacBookPro(Retina). 
    Both machines are believed to be completely up-to-date software-wise (no indication in App store that software updates are available.  i don't know how else to look.).
    I imported (Nikon D800) raw images from an SD card to MacBookPro Aperture Library (which contains few images), performed adjustments (and "shared" some with my SmugMug account).
    Then I selected the Project that contained my images, chose File, Export, Project as New Library (in order to move the adjusted images to my MacPro, where my "real" Aperture Library resides).  (first time i have attempted such a workflow).  I selected all 3 options (Copy originals . . ., Copy previews . . ., Show alert) and clicked Export Library.
    I copied the resulting file to my MacPro.  After choosing File, Import, Library (in Aperture on the MacPro), I see it "Merging", and then the project in question appears in the Library on the MacPro.
    The problem is that each image has a message at the top of the Adjustments pane:  "This photo was adjusted using an earlier version of Apple's RAW processing", and they all come into the receiving library with no adjustments, and no previews - not even the built-in preview that a raw file should carry (the images show in the viewer as _really_ flat, gray - very strange, i have never seen this appearance before, though I routeinely use raw format).
    Trying to troubleshoot, I went back to the MacBookPro and closed Aperture, then double-clicked the Library on the desktop that had resulted from the export process (containing only one project).
    Same situation.  All of the images think they were processed on older raw processor (even though this library is being opened on the same computer that did the processing).
    Any ideas?  Is this a bug, or have I misunderstood the point of exporting Projects?

    There have been two problems, reported, when exporting projects as library:
    In earlier versions of Aperture the exported library did not include all images, if images had been imported from Photo Stream. I cannot reproduce this bug any longer with Aperture 3.5.1.
    The export could go wrong, if the aperture library needed repairing.
    Have you tried the Aperture Library First Aid Tools,to fix a possible library curruption?
    See this link:  Aperture 3 User Manual: Repairing and Rebuilding Your Aperture Library
    Before trying to rebuild, make sure, your backup of your Aperture library is current and in a working condition.
    I see a progress bar and the .exporting library is created in the desired location.
    Finally I decided to watch a project closely as it was being exported as a library and I noticed that the file size jumps up an down. I'm not an expert on how export works, but it would appear that each exported photo is overwriting the previous one.
    What is the desired location? Are you exporting to your internal system drive or to an external drive? If external, how is the drive formatted?  Such overwriting of files could be caused by incompatible filesystems creating conflicting pathnames. Make sure, the destination is a filesystem formatted MacOS X Extended (Journaled).
    -- Léonie

Maybe you are looking for

  • Adding new fields in SAP ECC 6.0

    Hi All, I have a requirement to add a couple of fields at the item level of ERP Quotation. I would like to know if SAP ECC 6.0 have some tools like EEWB/AET in SAP CRM. Please suggest a solution.. Any Help/Hint highly appreciated, Thanks, Sudeep..

  • Radeon troubles with window dragging

    Hey everyone, I'm running kdemod with a radeon mobility hd3650 w/radeonhd driver.  I'm definitely a semi-newb and really really confused about xorg/hal but here's a pic of what's happening: (sorry about imageshack :-P  ) http://img231.imageshack.us/m

  • CO delta extractors: How to delete single init uploads?

    Hi Gurus, i'm uploading COPA data with parallel initializations. I'm initializing data with different selections criteria, for example: init for SOCIETY X - EXERCIZE 2008 init for SOCIETY Y - EXERCIZE 2008 init for SOCIETY Z - EXERCIZE 2008 init for

  • Exporting iTunes tracks so WMP can read them...

    Hi I've just got a new car which has a USB input that recognises Windows Media Player files (.mp3, .mpa, .wav, .m3u, .wpl) but apparently won't recognise my Mac iTunes files - obviously .aac and .mp4. is there ANY way of getting my substantial iTunes

  • Navigator-view limitations: what if there are too many buttons to show?

    I have a page that is really bad design, but I use it to fire up various dialog-paths into my application. For that I've got for every dialog-path a button that is only there to get me to the first page of a series of one business process. This is wh