ImageIO problem

I have the following lines in my program :
if (new File(Item_Image_Path).exists())
BufferedImage Buffered_Image=ImageIO.read(new File(Item_Image_Path)); // "C:/01_Pictures/GX910120.JPG"
Image_Width=Buffered_Image.getWidth();
I got an error message, because I got a null for the Buffered_Image, how can this ever happen ? I looked at the value for : Item_Image_Path, which is : "C:/01_Pictures/GX910120.JPG"
This image exists on my PC and I can double click and open it.
There is a twist though, it was working correctly until I packed all my programs into a Jar file, and in my program I let it load all classes and delete the jar when it executes, I thought since all the classes are loaded, there shouldn't be any problem, all other classes seems to wok fine, it just can't load images, does anyone know why this happened ?
Frank

Thanks for replying, I'll try that, does that work with absolute path, such as : "C:/Dir_Image/..." ?
But I still don't know why it went wrong only after I forced it to load all classes and then delete the jar ? That means there was no problem in finding the images with my code, even after I packed all classes into a jar and run from that jar it was working fine. It went wrong only after I deleted the jar, so there must be some classes that didn't get loaded before the jar was deleted, I went through the jar file and called Class.forName() on all the classes in the jar, what could be missing that caused it to be unable to load the resources ?
Frank

Similar Messages

  • ImageIO, TIFF, and metadata problems

    I'm trying to set some metadata parameters for output of a TIFF image. The problem I had was, the API returns a W3C DOM Node, and since the DOM API is so disgusting, I didn't want to use it directly.
    And naturally, since XPath is supposed to work over a DOM, I thought I could use it as a shortcut.
    Sample program:
    import java.awt.image.BufferedImage;
    import java.awt.image.RenderedImage;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageTypeSpecifier;
    import javax.imageio.ImageWriteParam;
    import javax.imageio.ImageWriter;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import javax.xml.xpath.XPath;
    import javax.xml.xpath.XPathConstants;
    import javax.xml.xpath.XPathFactory;
    import org.w3c.dom.Node;
    public class TiffMetadataBug {
        public static void main(String[] args) throws Exception {
            // Test image
            RenderedImage image = new BufferedImage(8, 8, BufferedImage.TYPE_INT_ARGB);
            // Get the default metadata for this kind of image
            ImageWriter imageWriter = ImageIO.getImageWritersByFormatName("TIFF").next();
            ImageWriteParam writeParam = imageWriter.getDefaultWriteParam();
            IIOMetadata metadata = imageWriter.getDefaultImageMetadata(new ImageTypeSpecifier(image), writeParam);
            // The root metadata node is...
            Node metadataRoot = metadata.getAsTree(metadata.getNativeMetadataFormatName());
            // Output the metadata DOM as XML.
            Transformer identity = TransformerFactory.newInstance().newTransformer();
            System.out.print("XML:");
            identity.transform(new DOMSource(metadataRoot), new StreamResult(System.out));
            System.out.println();
            // Try to match a path into the DOM.
            XPath xPath = XPathFactory.newInstance().newXPath();
            Object result = xPath.evaluate("//TIFFField[@number='282']/TIFFRationals/TIFFRational", metadataRoot, XPathConstants.NODE);
            System.out.println("Result of XPath evaluation: " + result);
    }The first bit of the output was done to see what XPath to use. It contains XML like this:
        <TIFFField number="282" name="XResolution">
            <TIFFRationals>
                <TIFFRational value="1/1"/>
            </TIFFRationals>
        </TIFFField>So my XPath:
    //TIFFField[@number='282']/TIFFRationals/TIFFRationalshould work fine.
    I wonder if this is a bug in the ImageIO metadata code, or if I'm actually doing something wrong here.

    Hi!
    I try to get tiff tags together with their data out of a TIFF-file with the use of DOM. I get problems reading the metadata. How can I read metadata so I can output it like above?
    thanks in advanced.
    Errors I get:
    Exception in thread "main" javax.imageio.IIOException: I/O error reading image metadata!
    at com.sun.media.imageioimpl.plugins.tiff.TIFFImageReader.readMetadata(Unknown Source)
    at com.sun.media.imageioimpl.plugins.tiff.TIFFImageReader.seekToImage(Unknown Source)
    at com.sun.media.imageioimpl.plugins.tiff.TIFFImageReader.getImageMetadata(Unknown Source)
    at tiffmetadatabug.Main.main(Main.java:96)
    Caused by: java.io.EOFException
    at javax.imageio.stream.ImageInputStreamImpl.readShort(ImageInputStreamImpl.java:211)
    at javax.imageio.stream.ImageInputStreamImpl.readUnsignedShort(ImageInputStreamImpl.java:222)
    at com.sun.media.imageioimpl.plugins.tiff.TIFFIFD.initialize(Unknown Source)
    at com.sun.media.imageioimpl.plugins.tiff.TIFFIFD.initialize(Unknown Source)
    at com.sun.media.imageioimpl.plugins.tiff.TIFFImageMetadata.initializeFromStream(Unknown Source)
    ... 4 more
    Java Result: 1

  • Problem with ImageIO.read()

    I have a problem with loading picture from file to variable Image img. Function ImageIO.read(fileIn) return always null pointer (whereas fileIn!=null). I'm using j2sdk-1_4_2_0. The same problem problem is in WindowsXP SP2 and Fedora 3 64bit.
    Here is code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.*;
    import java.awt.image.*;
    import javax.imageio.*;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import java.io.*;
    public class Converter extends JPanel implements ActionListener {
    JPanel mainPanel, info1Panel,info2Panel,convertionPanel, fSizePanel,displayPanel;
    JCheckBox enableConvertion;
    JButton selectFile,doIt,close;
    JRadioButton size1,size2;
    ButtonGroup sizeGroup;
    ImageIcon imagePrev;
    JRadioButton[] convertion = new JRadioButton[2];
    Image img;
    JLabel previewLabel;
    JFileChooser fc;
    File fileIn = new File("10.jpg");
    File fileOut;
    public Converter() {
    // Tworzenie paneli
    mainPanel=new JPanel();
    mainPanel.setLayout(null);
    info1Panel=new JPanel();
    info2Panel=new JPanel();
    convertionPanel=new JPanel(new BorderLayout());
    fSizePanel=new JPanel();
    displayPanel= new JPanel();
    //Tworzenie pozostalych elementow
    enableConvertion = new JCheckBox("Enable JPG <-> PNG");
    selectFile = new JButton("Select File");
    doIt = new JButton("Do it!");
    close= new JButton("Close");
    fc = new JFileChooser();
    size1 = new JRadioButton("The same resolution");
    size2= new JRadioButton("Resize image to target size of file");
    JLabel previewLabel = new JLabel();
    ButtonGroup sizeGroup = new ButtonGroup();
    imagePrev= new ImageIcon();
    // proba ulozenia elementow na ramce
    Insets insets = mainPanel.getInsets();
    Dimension size = selectFile.getPreferredSize();
    selectFile.setBounds(15 + insets.left, 15 + insets.top,size.width, size.height);
    doIt.setBounds(15 + insets.left,15+5+ insets.top+size.height,size.width, size.height);
    close.setBounds(15+insets.left,15+2*(5+size.height)+insets.top,size.width,size.height);
    convertionPanel.setBounds(10,150,250,90);
    convertionPanel.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("Convertion"),
    BorderFactory.createEmptyBorder(0,5,5,5)));
    info1Panel.setBounds(150,10,200,140);
    info1Panel.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("Source File Information"),
    BorderFactory.createEmptyBorder(0,5,5,5)));
    info2Panel.setBounds(360,10,200,140);
    info2Panel.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("Target File Information"),
    BorderFactory.createEmptyBorder(0,5,5,5)));
    fSizePanel.setBounds(10, 250, 250, 90);
    fSizePanel.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("File size"),
    BorderFactory.createEmptyBorder(0,5,5,5)));
    fSizePanel.setLayout(new GridLayout(2,0));
    displayPanel.setBounds(270,150,290,190);
    displayPanel.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("Display"),
    BorderFactory.createEmptyBorder(0,5,5,5)));
    previewLabel.setHorizontalAlignment(JLabel.CENTER);
    previewLabel.setVerticalAlignment(JLabel.CENTER);
    previewLabel.setVerticalTextPosition(JLabel.CENTER);
    previewLabel.setHorizontalTextPosition(JLabel.CENTER);
    previewLabel.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createLoweredBevelBorder(),
    BorderFactory.createEmptyBorder(5,5,5,5)));
    previewLabel.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createEmptyBorder(0,0,10,0),
    previewLabel.getBorder()));
    size1.setSelected(true);
    mainPanel.add(info1Panel);
    mainPanel.add(info2Panel);
    mainPanel.add(convertionPanel);
    mainPanel.add(fSizePanel);
    mainPanel.add(displayPanel);
    //osadzamy w odpowiednich panelach elementy
    mainPanel.add(selectFile);
    mainPanel.add(doIt);
    mainPanel.add(close);
    sizeGroup.add(size1);
    sizeGroup.add(size2);
    fSizePanel.add(size1);
    fSizePanel.add(size2);
    displayPanel.add(previewLabel);
    convertionPanel.add(enableConvertion);
    selectFile.addActionListener(this);
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showOpenDialog(Converter.this);
    if (returnVal == JFileChooser.APPROVE_OPTION)
    File fileIn = fc.getSelectedFile();
    JFrame frame1=new JFrame();
    JOptionPane.showMessageDialog(frame1, fileIn.getName());
    if(fileIn==null)
    JFrame frame2 = new JFrame();
    JOptionPane.showMessageDialog(frame2,"FileIN==NULL");
    //############## PROBLEM IS HERE ###########################
    try
    Image img=ImageIO.read(fileIn); // HERE IS THE PROBLEM: img==NULL
    // WHERAS fileIn!=NULL
    }catch (IOException event){}
    if (img==null)
    JFrame frame2 = new JFrame();
    JOptionPane.showMessageDialog(frame2,"img==NULL");
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create a new instance of LunarPhases.
    Converter conv = new Converter();
    //Create and set up the window.
    JFrame convFrame = new JFrame("Conversion JPG <-> PNG");
    convFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    convFrame.setContentPane(conv.mainPanel);
    Insets insets = convFrame.getInsets();
    convFrame.setSize(600 + insets.left + insets.right,400+insets.top + insets.bottom);
    convFrame.setVisible(true);
    public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    //############## PROBLEM IS HERE ###########################
    try {
    Image img=ImageIO.read(fileIn); // HERE IS THE PROBLEM: img==NULL
    // WHERAS fileIn!=NULL
    } catch (IOException event){}
    if (img==null) {
        JFrame frame2 = new JFrame();
        JOptionPane.showMessageDialog(frame2,"img==NULL");
    }1. Please use [code] tags when posting code -- it makes the code more readable.
    2. When posting code, post a minimal example program. You could have filtered
    out all the extraneous GUI code, for example. Remember: the shorter the code, the
    more likely it is a forum member will read it! Posting long runs of code only
    hurts yourself.
    3. All that being said, your problem is a simple oversight: notice that the
    variable "img" in your try block is a local variable, not the field named "img"
    than you test after the try block.
    You should have written:
    try {
        img=ImageIO.read(fileIn);
    } catch (IOException event){
        e.printStackTrace();
    }

  • Slow getResource problem solved by ImageIO.scanForPlugins()

    Hi all,
    I have a big swing application starting with java web start. A lot of images are loaded during the frame construction using class.getResource(). This runs well with jdk1.4.2. However, in Java 5.0, each getResource takes 100ms to complete and it sometimes fails. I only get this behaviour with java web start (not as a standalone application).
    I noticed the getResource becomes quicker after I call ImageIO.scanForPlugins(). So I moved this line to the top of my constructor and now it executes in 6 sec instead of 85 (even quicker than in 1.4.2) !
    Now can someone explain why I get this slow getResource call, and why the scanForPlugin solves my problem ? I suspect this has something to do with loaded classes, but I don't now exactly.
    Finally, since this problem is only appearing in 5.0, isn't it a regression bug ?
    Thanks for the clarification,
    Maxime

    FiApO wrote:
    I got the same issue.  Don't know why.  Maybe trafic shaping?  I tested with my t-mobile phones and same videos are fine on phone but not on Fios(with 3 different computers at different times of day).   
    The video will start but it wont play all the way through. 
    Also try to change DNS and blocking IP's.  Still have the problem.
    Anyone got a answer for that?
    Thank you.
    Answer? Switch ISPs. This has been going on for months - it comes in waves. I'm having Comcast (gasp) installed here soon. I'm done with Verizon as a company. Ditching VZW as well.
    Also, you should know it's more than just YouTube. It's basically any streaming service that may compete with Verizon's Redbox Instant.

  • Jpeg encoding with imageio - pink distortion problem

    Hello, I am using the imageio classes to scale down jpg images (for thumbnails) and write them to a file. On most images, everything works perfectly. On some images, however, the resulting thumbnail image has a strange pink coloration to the whole picture. Does anyone have any ideas as to why this would happen? The code I am using is below. I thank anyone that takes the time to read this and hope someone can help.
    import java.awt.Graphics2D;
    import java.awt.geom.AffineTransform;
    import java.awt.image.AffineTransformOp;
    import java.awt.image.BufferedImage;
    import java.awt.image.IndexColorModel;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import javax.imageio.IIOImage;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageTypeSpecifier;
    import javax.imageio.ImageWriteParam;
    import javax.imageio.ImageWriter;
    import javax.imageio.plugins.jpeg.JPEGImageWriteParam;
    import javax.imageio.stream.ImageOutputStream;
    public class ImageResizer
         private static final int THUMBNAIL_MAX = 120;
         private static final int SMALL_MAX = 250;
         private static final int LARGE_MAX = 575;
         private static final int LARGE_THRESHOLD = 425;
         BufferedImage inImage;
         int width;
         int height;
         private static JPEGImageWriteParam params;
         static {
              JPEGImageWriteParam params = new JPEGImageWriteParam(null);
              params.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
              params.setCompressionQuality(0.8f);
              params.setProgressiveMode(ImageWriteParam.MODE_DISABLED);
              params.setDestinationType(
                   new ImageTypeSpecifier(IndexColorModel.getRGBdefault(),
                   IndexColorModel.getRGBdefault().createCompatibleSampleModel(16,16)));
         public ImageResizer(byte[] image, long id) throws IOException
              inImage = ImageIO.read(new ByteArrayInputStream(image));
              width = inImage.getWidth(null);
              height = inImage.getHeight(null);
         public void makeSmallImage (File outputFile) throws IOException {
              resizeImage(120, outputFile);
         private void resizeImage (int maxDim, File file) throws IOException {
              double scale = maxDim / (double) height;
              if (width > height) scale = maxDim / (double) width;
              int scaledWidth = (int)(scale * width);
              int scaledHeight = (int)(scale * height);
              BufferedImage outImage = new BufferedImage(scaledWidth, scaledHeight, BufferedImage.TYPE_INT_RGB);
              AffineTransform xform = AffineTransform.getScaleInstance(scale, scale);
              AffineTransformOp op = new AffineTransformOp(xform, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
              // Paint image.
              Graphics2D g2d = outImage.createGraphics();
              g2d.drawImage(inImage, op, 0, 0);
              g2d.dispose();
              // write the image out
              ImageOutputStream ios = null;
              try {
                   ios = ImageIO.createImageOutputStream(file);
                   ImageWriter writer = (ImageWriter) ImageIO.getImageWritersByFormatName("jpg").next();
                   writer.setOutput(ios);
                   writer.write(null, new IIOImage(outImage, null, null), params);
                   writer.dispose();
              catch (IOException e) {
                   System.out.println("cought IOException while writing " +
                   file.getPath());
              finally {
                   if (null != ios) ios.close();
    }

    I am having the same problem with jpegs.
    The strange thing is that this only happends with the same exact code on OS X, while it never happens on any windows machine.
    I have tried using the the ImageIO classes, and a class I got off of this board a while back; however when using this class on an OS X machine, encoding takes a really long time and gives the pink distortion.
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.swing.*;
    import com.sun.image.codec.jpeg.*;
    import java.awt.event.*;
    import java.util.*;
    import java.awt.geom.*;
    public class ImageUtils {
         private static JPEGImageEncoder encoder = null;
         private static FileOutputStream fileStream = null;
         public static BufferedImage createComponentImage(Component component)
              BufferedImage image = (BufferedImage)component.createImage(component.getWidth(),component.getHeight());
              Graphics graphics = image.getGraphics();
              if(graphics != null) { component.paintAll(graphics); }
              return image;
         public static void encodeImage(BufferedImage image, File file) throws IOException
              fileStream = new FileOutputStream(file);
              JPEGEncodeParam encodeParam = JPEGCodec.getDefaultJPEGEncodeParam(image);
              encoder = JPEGCodec.createJPEGEncoder(fileStream);
              encoder.encode(image,encodeParam);
    }use it like this:
    File file = new File("ImageTest.jpg");
    image = ImageUtils.createComponentImage(imageCanvas);
    ImageUtils.encodeImage(image,file);

  • Problems with javax.imageio.ImageIO (cannot be resolved) *Urgent*

    I was trying to import javax.imageio.ImageIO into my project but it cannot work... I am using Websphere Application 5.1.2 and using JDK 1.4.2_07... I try to import external jar containing javax.image but it still can't solve my problem... So can anyone help me... Thank alot...

    There is no exception, the javax.imageio.ImageIO.read(InputStream input) method simply returns null, indicating that the stream can't be decoded with any of the registered ImageReaders.
    BufferedImage bi = javax.imageio.ImageIO.read(new ByteArrayInputStream(wr2.getData()))
    wr2 is of a class that I have written myself, and the method getData() returns a byte[] array consisting of the bytes previously read from the .gif-file...
    there is nothing wrong with the data stored in the byte[] array, I have even compared it to the original file byte by byte... and it's all the same.
    this works though:
    BufferedImage bi = javax.imageio.ImageIO.read(new FileInputStream("img/iconOnlineDark.gif"))
    Strange problem, in my opinion... but I'm not an expert in streams... so it might not be as strange as it seems to me...? Anyway, I must find a solution to this.
    /erik

  • Problem with ImageIO.write

    Hello I am trying to write to file. Here is my code
        try
          File file = new File("C://images//queryX.gif");
        if (file.exists())
            {file.delete();}
          ImageIO.write(bi_new, "GIF", file);  // bi_new is my bufferedImage
        catch (IOException e)
          e.printStackTrace();
        }The file is being created but it is blank. The buffered image is fine because i am having it displayed to screen with an imageicon on a Jlabel.
    Any ideas why the file is blank?
    Cheers.

    The likely problem is that an encoder can not be found.
    First check the return value from the ImageIO.write() method. If it is false it means that an appropriate
    encoder could not be found. (This is quite likely as GIF encoders have some patenting problems and
    Im not sure if SUN has included a GIF encoder.
    Also it should not be necessary to delete the file if it already exists as the ImageIO.write method will
    overwrite it anyway.
    matfud

  • ImageIO and jar Problem

    Hi!
    I have this problem: I want to create a jar of my application. I use JBuilder2005. I create a jar and include all the dependencies for the required libraries. But I have a problem (NullPointerException) whenever I try to read with the method ImageIO.read()...
    But in my IDE (JBuilder2005) everything works fine...please help me!

                  File toDelete = new File(Client.getAcquirePath() + "/temp/" +
                                           ( (String) ris.get(1)).substring( ( (String)
                      ris.get(1)).lastIndexOf("\\") + 1)); // file to create
                  FileOutputStream fos = new FileOutputStream(toDelete);
                  fos.write(buffImg);
                  fos.close();
                  fos = null;
                  buffImg = null;
                  //HERE THE FILE IS CREATED
                  System.out.println(toDelete.exists()); // gives TRUE
                  BufferedImage bImage = ImageIO.read(toDelete);
                  bImage is null....the paths are correct. It is very strange...may you help me? As I told the same operation works fine with JBuilder but not in the JAR....

  • Problem with ImageIO.read and ImageReader GIF becomes dark

    I am having problems with certain GIF images loading completely dark. I previously had problems with certain JPGs colors being distorted http://forum.java.sun.com/thread.jspa?threadID=713164&tstart=0. This was a problem in an old JDK.
    Here is the code:
                java.awt.image.BufferedImage bufferedImage = javax.imageio.ImageIO.read( new java.io.File("javabug.gif") );
                System.out.println( bufferedImage );
                javax.imageio.ImageIO.write( bufferedImage, "jpg", new java.io.File("badcolors.jpg") );
                javax.imageio.ImageIO.write( bufferedImage, "png", new java.io.File("badcolors.png") );BufferedImage Read is:
    BufferedImage@337838: type = 5 ColorModel: #pixelBits = 24 numComponents = 3 color space = java.awt.color.ICC_ColorSpace@119cca4 transparency = 1 has alpha = false isAlphaPre = false ByteInterleavedRaster: width = 1536 height = 1152 #numDataElements 3 dataOff[0] = 2
    Here is the GIF
    http://www.alwaysvip.com/javabug.gif
    I am using jdk1.5.0_06
    If I use java.awt.Toolkit.getDefaultToolkit().getImage instead of ImageIO.read, the problem no longer exists.
            java.awt.Image image = java.awt.Toolkit.getDefaultToolkit().getImage( file.toURL() );
            java.awt.MediaTracker mediaTracker = new java.awt.MediaTracker( new java.awt.Container() );
            mediaTracker.addImage( image, 0 );
            mediaTracker.waitForID( 0 );
            java.awt.image.BufferedImage bufferedImage = new java.awt.image.BufferedImage( image.getWidth( null ), image.getHeight( null ), java.awt.image.BufferedImage.TYPE_INT_RGB );
            java.awt.Graphics g = bufferedImage.createGraphics();
            g.setColor( java.awt.Color.white );
            g.fillRect( 0, 0, image.getWidth( null ), image.getHeight( null ) );
            g.drawImage( image, 0, 0, null );
            g.dispose();
            javax.imageio.ImageIO.write( bufferedImage, "jpg", new java.io.File("goodcolors.jpg") );
            javax.imageio.ImageIO.write( bufferedImage, "png", new java.io.File("goodcolors.png") );BufferedImage Read is:
    BufferedImage@1bf216a: type = 1 DirectColorModel: rmask=ff0000 gmask=ff00 bmask=ff amask=0 IntegerInterleavedRaster: width = 1536 height = 1152 #Bands = 3 xOff = 0 yOff = 0 dataOffset[0] 0
    Is this another bug in the JDK? Is there a possible workaround where I can still use ImageIO.read?

    I figured out the problem. It was an actual BUG in the JDK!
    The code failed with the following JDKs:
    java version "1.5.0_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_01-b08)
    Java HotSpot(TM) Client VM (build 1.5.0_01-b08, mixed mode, sharing)
    java version "1.5.0_03"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_03-b07)
    Java HotSpot(TM) Client VM (build 1.5.0_03-b07, mixed mode)
    The code ran sucessful with this JDK:
    java version "1.5.0_06"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
    Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode, sharing)
    If you are using the ImageIO classes, I highly suggest you upgrade to the latest JDK.
    Best,
    Scott

  • Problem with ImageIO.read and ImageReader JPG colors are distorted/wrong

    (Using JDK 1.5)
    ImageIO incorrectly reads some jpg images.
    I have a jpg image that, when read by the ImageIO api, all the colors become reddish.
            try
                java.awt.image.BufferedImage bi = javax.imageio.ImageIO.read( new java.io.File("javabug.jpg") );
                javax.imageio.ImageIO.write( bi, "jpg", new java.io.File("badcolors.jpg") );
                javax.imageio.ImageIO.write( bi, "png", new java.io.File("badcolors.png") );
            catch ( java.io.IOException ioe )
                ioe.printStackTrace();
            }Why is this happening??? My guess is there is a problem with the ImageIO.read ?
    the jpg can be downloaded at http://www.alwaysvip.com/javabug.jpg
    <BufferedImage@11faace: type = 5 ColorModel: #pixelBits = 24 numComponents = 3 color space = java.awt.color.ICC_ColorSpace@1ebbfde transparency = 1 has alpha = false isAlphaPre = false ByteInterleavedRaster: width = 1691 height = 1269 #numDataElements 3 dataOff[0] = 2>
    I have even tried creating a new buffered image but still have the same problem:
    (suggested by http://forum.java.sun.com/thread.jspa?forumID=20&threadID=665585) "Java Forums - ImageIO: scaling and then saving to JPEG yields wrong colors"
            try
                java.awt.image.BufferedImage bi = javax.imageio.ImageIO.read( new java.io.File("javabug.jpg") );
                java.awt.image.BufferedImage out = new java.awt.image.BufferedImage( bi.getWidth(), bi.getHeight(), java.awt.image.BufferedImage.TYPE_INT_RGB );
                java.awt.Graphics2D g = out.createGraphics();
                g.drawRenderedImage(bi, null);
                g.dispose();
                javax.imageio.ImageIO.write( out, "jpg", new java.io.File("badcolors.jpg") );
            catch ( java.io.IOException ioe )
                ioe.printStackTrace();
            }I have used the following which works but does not use the ImageIO api. However, I tried using the ImageIO to write and it worked for writing which leads me to believe there is a problem with the reader.
    (suggested by http://developers.sun.com/solaris/tech_topics/java/articles/awt.html "Server-Side AWT")
            try
                java.awt.Image image = new javax.swing.ImageIcon(java.awt.Toolkit.getDefaultToolkit().getImage("javabug.jpg")).getImage();
                java.awt.image.BufferedImage bufferedImage = new java.awt.image.BufferedImage( image.getWidth( null ), image.getHeight( null ), java.awt.image.BufferedImage.TYPE_INT_RGB );
                java.awt.Graphics g = bufferedImage.createGraphics();
                g.setColor( java.awt.Color.white );
                g.fillRect( 0, 0, image.getWidth( null ), image.getHeight( null ) );
                g.drawImage( image, 0, 0, null );
                g.dispose();
                com.sun.image.codec.jpeg.JPEGImageEncoder encoder = com.sun.image.codec.jpeg.JPEGCodec.createJPEGEncoder( new java.io.FileOutputStream( "goodcolors.jpg" ) );
                encoder.encode( bufferedImage );
                javax.imageio.ImageIO.write( bufferedImage, "jpg", new java.io.File("goodiocolors.jpg") );
                javax.imageio.ImageIO.write( bufferedImage, "png", new java.io.File("goodiocolors.png") );
            catch ( java.io.IOException ioe )
                ioe.printStackTrace();
            }BTW, the following does not work either:
                java.util.Iterator readers = javax.imageio.ImageIO.getImageReadersByFormatName( "jpg" );
                javax.imageio.ImageReader reader = ( javax.imageio.ImageReader ) readers.next();
                javax.imageio.stream.ImageInputStream iis = javax.imageio.ImageIO.createImageInputStream( new java.io.File("javabug.jpg") );
                reader.setInput( iis, true );
                java.awt.image.BufferedImage bufferedImage = reader.read( 0 );

    I figured out the problem. It was an actual BUG in the JDK!
    The code failed with the following JDKs:
    java version "1.5.0_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_01-b08)
    Java HotSpot(TM) Client VM (build 1.5.0_01-b08, mixed mode, sharing)
    java version "1.5.0_03"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_03-b07)
    Java HotSpot(TM) Client VM (build 1.5.0_03-b07, mixed mode)
    The code ran sucessful with this JDK:
    java version "1.5.0_06"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
    Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode, sharing)
    If you are using the ImageIO classes, I highly suggest you upgrade to the latest JDK.
    Best,
    Scott

  • Problems with ImageIO.write()

    Well I am finding it very strange with ImageIO.write();
    Consider the following code snippet:
    BufferedImage img=ImageIO.read(new File("fw2.jpg"));
    BufferedImage img1=new BufferedImage(img.getWidth(),img.getHeight(),img.TYPE_INT_ARGB);
    for(int i=0;i<img.getHeight();i++)
    for(int j=0;j<img.getWidth();j++)
    img1.setRGB(j,i,img.getRGB(j,i));
    ImageIO.write(img1,"jpg",new File("fwinv.jpg"));
    So simply I am copying fw2.jpg to fwinv.jpg. fw2.jpg was also created
    using ImageIO.write().
    But the two files are having different pixel values.
    i.e If I read fwinv.jpg again I will get different pixel value that it was written.
    Why is this...Can any one please help me..

    Reading the written images back and displaying them in java works okay. The third image looks okay in RGB but wrong in ARGB when displayed by a native app. For more about this see reply 1 in Color problems and the linked bug report: Some Images written using JPEG Image Writer are not recognized by native applns.
    import java.awt.GridLayout;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class WriteTest {
        private JPanel getContent(BufferedImage src) throws IOException {
            File fileOne = new File("fileOne.jpg");
            ImageIO.write(src, "jpg", fileOne);
            BufferedImage image1 = ImageIO.read(fileOne);
            BufferedImage image2 = copy(image1);
            JPanel panel = new JPanel(new GridLayout(1,0));
            panel.add(new JLabel(new ImageIcon(src)));
            panel.add(new JLabel(new ImageIcon(image1)));
            panel.add(new JLabel(new ImageIcon(image2)));
            return panel;
        private BufferedImage copy(BufferedImage in) throws IOException {
            int w = in.getWidth();
            int h = in.getHeight();
            int type = BufferedImage.TYPE_INT_ARGB;   // problem in native apps
                       //BufferedImage.TYPE_INT_RGB;  // this one works okay
            BufferedImage out = new BufferedImage(w, h, type);
            for(int y = 0; y < h; y++) {
                for(int x = 0; x < w; x++) {
                    out.setRGB(x, y, in.getRGB(x, y));
            File fileTwo = new File("fileTwo.jpg");
            ImageIO.write(out, "jpg", fileTwo);
            return ImageIO.read(fileTwo);
        public static void main(String[] args) throws IOException {
            BufferedImage image = ImageIO.read(new File("images/cougar.jpg"));
            WriteTest test = new WriteTest();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(test.getContent(image));
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • Problems with imageio

    hi,
    I'm trying to make an openGL application. I'm trying to read an image in so I can bind a texture to some quads. Here's my program.
    public BufferedImage getPNGImage(String filename)
    File f = new File(filename);
    BufferedImage img = ImageIO.read(f);
    if(img == null)System.out.println("it's null");
    return img;
    }I have all the necessary libraries and I know for a fact that the filepath is correct. however, img is null after this code. Is there something I'm missing?

    Are you using a fully qualified path?

  • Intermittent problem with ImageIO reading BMP: Empty Region

    I am using imageIO to read in a bmp file, like this:
          ImageInputStream is = ImageIO.createImageInputStream(imgURL.openStream());
          Iterator<ImageReader> rdrs = ImageIO.getImageReaders(is);
          if (rdrs.hasNext()) {
            ImageReader r = rdrs.next();
            r.setInput(is);
            result = r.read(0);
          }(I use the same code to read in a whole bunch of images of various kinds.) In development, I got an empty image, so I added a wait:
    MediaTracker mt = new MediaTracker(new MyObserver());
        mt.addImage(iconImage, 0);
        try {
          mt.waitForID(0);
        } catch (InterruptedException e) {
        }which seemed to work fine. Except that sometimes, not always, I got a crash:
    java.lang.IllegalArgumentException: Empty region!
         at javax.imageio.ImageReader.computeRegions(Unknown Source)
         at com.sun.imageio.plugins.wbmp.WBMPImageReader.read(Unknown Source)
         at javax.imageio.ImageReader.read(Unknown Source)I got that sometimes in development, but once I produced the production version it started happening all the time!
    Anyone have an idea what's going on??

    That was very close to correct. It seems that the WBMP reader mucks up the input stream before the .ico reader can get to it. The .ico plugin, which is available at [http://www.vdburgh.net/2/f/files/ICOReader/ ] puts out a very nice error message to that effect and suggest using a fresh input stream. So this:
          ImageInputStream is = ImageIO.createImageInputStream(imgURL.openStream());
          Iterator<ImageReader> rdrs = ImageIO.getImageReaders(is);
          while (rdrs.hasNext()) {
            ImageReader r = rdrs.next();
            try {
              r.setInput(is);
              result = r.read(0);
              return result;
            } catch (IllegalArgumentException e) {
              System.out.printf("Bad Image:%s%n", e.getMessage());
              is = ImageIO.createImageInputStream(imgURL.openStream());
          }Does the trick! (So far :)

  • Spinning cursor. iCal + Mail problems

    Hello!
    I have a problem that shows itself in two ways. Nr 1 and the first problem was:
    Aprox 20 seconds after i start iCal i get the "spinning wheel" and the whole computer start acting slow. I can't even go to other programs or check activity.
    I have tried:
    • Deleting preferences. - no change
    • Repairing diskpermissions - no change
    • Using iCal with a different account - works
    Now all of a sudden i get the same behaviour with Mail. I have a couple of IMAP accounts with quite alot of mail. When i start Mail the whole computer gets slow and after a while Mail crashes. I attached the crash report.
    I have tried:
    • Stop Growl - no change
    Best regards
    **********CRASH REPORT************
    +Process: Mail [3175]+
    +Path: /Applications/Mail.app/Contents/MacOS/Mail+
    +Identifier: com.apple.mail+
    +Version: 3.6 (936)+
    +Build Info: Mail-9360000~1+
    +Code Type: X86 (Native)+
    +Parent Process: launchd [109]+
    +Interval Since Last Report: 456685 sec+
    +Crashes Since Last Report: 10+
    +Per-App Interval Since Last Report: 1925061 sec+
    +Per-App Crashes Since Last Report: 1+
    +Date/Time: 2010-06-08 11:57:48.823 0200
    +OS Version: Mac OS X 10.5.8 (9L30)+
    +Report Version: 6+
    +Anonymous UUID: A09D0B65-6F2C-4493-A927-A814E183CF04+
    +Exception Type: EXCBADACCESS (SIGBUS)+
    +Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000008+
    +Crashed Thread: 0+
    +Application Specific Information:+
    +-[IMAPAccount _fetchUnreadCountsCheckForNewMessages:]+
    +-[IMAPGateway _allowClientOperationThrough:]+
    +-[IMAPGateway _allowClientOperationThrough:]+
    +-[LibraryIMAPStore openSynchronouslyUpdatingMetadata:]+
    +-[IMAPAccount _synchronizeAccountWithServerWithUserInput:]+
    ++[IMAPAccount _deleteQueuedMailboxes:]+
    +-[IMAPAccount _synchronizeAccountWithServerWithUserInput:]+
    +-[IMAPAccount fetchSynchronouslyIsAuto:]+
    +-[IMAPAccount fetchSynchronouslyIsAuto:]+
    +Thread 0 Crashed:+
    +0 com.apple.AppKit 0x94b61e5d -[NSOutlineView _expandItemEntryChildren:atStartLevel:expandChildren:andInvalidate:] + 408+
    +1 com.apple.AppKit 0x94cb7f73 -[NSOutlineView _expandItemEntry:expandChildren:startLevel:] + 1439+
    +2 com.apple.AppKit 0x94b62026 -[NSOutlineView _expandItemEntryChildren:atStartLevel:expandChildren:andInvalidate:] + 865+
    +3 com.apple.AppKit 0x94cb7f73 -[NSOutlineView _expandItemEntry:expandChildren:startLevel:] + 1439+
    +4 com.apple.AppKit 0x94cb79ce -[NSOutlineView _expandItemEntry:expandChildren:] + 66+
    +5 com.apple.AppKit 0x94cb78ec -[NSOutlineView numberOfRows] + 189+
    +6 com.apple.AppKit 0x94badfc6 -[NSTableView _verifySelectionIsOK] + 95+
    +7 com.apple.AppKit 0x94bade83 -[NSTableView _tileAndRedisplayAll] + 263+
    +8 com.apple.AppKit 0x94b60bbb -[NSOutlineView reloadData] + 220+
    +9 com.apple.mail 0x0002b6bc 0x1000 + 173756+
    +10 com.apple.mail 0x0002d2f5 0x1000 + 180981+
    +11 com.apple.Foundation 0x924b242a nsnotecallback + 106+
    +12 com.apple.CoreFoundation 0x9746347a __CFXNotificationPost + 362+
    +13 com.apple.CoreFoundation 0x97463753 _CFXNotificationPostNotification + 179+
    +14 com.apple.Foundation 0x924df9bc -[NSNotificationCenter postNotification:] + 124+
    +15 com.apple.mail 0x0000601a 0x1000 + 20506+
    +16 com.apple.Foundation 0x924b39ac __NSThreadPerformPerform + 476+
    +17 com.apple.CoreFoundation 0x974823c5 CFRunLoopRunSpecific + 3141+
    +18 com.apple.CoreFoundation 0x97482aa8 CFRunLoopRunInMode + 88+
    +19 com.apple.HIToolbox 0x912422ac RunCurrentEventLoopInMode + 283+
    +20 com.apple.HIToolbox 0x912420c5 ReceiveNextEventCommon + 374+
    +21 com.apple.HIToolbox 0x91241f39 BlockUntilNextEventMatchingListInMode + 106+
    +22 com.apple.AppKit 0x94ad06d5 _DPSNextEvent + 657+
    +23 com.apple.AppKit 0x94acff88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128+
    +24 com.apple.AppKit 0x94ac8f9f -[NSApplication run] + 795+
    +25 com.apple.AppKit 0x94a961d8 NSApplicationMain + 574+
    +26 com.apple.mail 0x000fc0b2 0x1000 + 1028274+
    +Thread 1:+
    +0 libSystem.B.dylib 0x95ddc44e _semwaitsignal + 10+
    +1 libSystem.B.dylib 0x95e06dcd pthreadcondwait$UNIX2003 + 73+
    +2 com.apple.JavaScriptCore 0x93dad952 ***::TCMalloc_PageHeap::scavengerThread() + 578+
    +3 com.apple.JavaScriptCore 0x93dad97f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15+
    +4 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +5 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 2:+
    +0 libSystem.B.dylib 0x95dd5266 machmsgtrap + 10+
    +1 libSystem.B.dylib 0x95ddca5c mach_msg + 72+
    +2 com.apple.CoreFoundation 0x97481e7e CFRunLoopRunSpecific + 1790+
    +3 com.apple.CoreFoundation 0x97482aa8 CFRunLoopRunInMode + 88+
    +4 com.apple.Foundation 0x924e73d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213+
    +5 com.apple.Foundation 0x924f34f4 -[NSRunLoop(NSRunLoop) run] + 84+
    +6 com.apple.MessageFramework 0x003d8dc5 -[RSSInterchange _runManager] + 2140+
    +7 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +8 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +9 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +10 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 3:+
    +0 libSystem.B.dylib 0x95e3e292 _workqops + 10+
    +1 libSystem.B.dylib 0x95e3e2c2 start_wqthread + 30+
    +Thread 4:+
    +0 libSystem.B.dylib 0x95e3e292 _workqops + 10+
    +1 libSystem.B.dylib 0x95e3e2c2 start_wqthread + 30+
    +Thread 5:+
    +0 libSystem.B.dylib 0x95ddc44e _semwaitsignal + 10+
    +1 libSystem.B.dylib 0x95e06dcd pthreadcondwait$UNIX2003 + 73+
    +2 com.apple.QuartzCore 0x95ad4a09 fefragmentthread + 54+
    +3 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +4 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 6:+
    +0 libSystem.B.dylib 0x95dd52c6 semaphoretimedwait_signaltrap + 10+
    +1 libSystem.B.dylib 0x95e072af pthread_condwait + 1244+
    +2 libSystem.B.dylib 0x95e08b33 pthreadcond_timedwait_relativenp + 47+
    +3 com.apple.Foundation 0x924f8dbc -[NSCondition waitUntilDate:] + 236+
    +4 com.apple.MessageFramework 0x0032212b -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 470+
    +5 com.apple.MessageFramework 0x00321f0b -[IMAPGateway waitUntilClientOperationIsFinished:] + 500+
    +6 com.apple.MessageFramework 0x0031d471 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 268+
    +7 com.apple.MessageFramework 0x00358ac7 -[IMAPCommandPipeline failureResponsesFromSendingCommandsWithGateway:responseHandler:highPriority:] + 1084+
    +8 com.apple.MessageFramework 0x00340bb7 -[IMAPMailboxSyncEngine _unlockIfDidCacheMessagesWithMonitor:] + 2688+
    +9 com.apple.MessageFramework 0x00329f0c -[IMAPMailboxSyncEngine _goWithMessages:] + 651+
    +10 com.apple.MessageFramework 0x002f3e0b -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 227+
    +11 com.apple.MessageFramework 0x002f3d22 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:] + 50+
    +12 com.apple.CoreFoundation 0x9750191d _invoking__ + 29+
    +13 com.apple.CoreFoundation 0x97501308 -[NSInvocation invoke] + 136+
    +14 com.apple.MessageFramework 0x003db26c -[MonitoredInvocation invoke] + 409+
    +15 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +16 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +17 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +18 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +19 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 7:+
    +0 libSystem.B.dylib 0x95dd5266 machmsgtrap + 10+
    +1 libSystem.B.dylib 0x95ddca5c mach_msg + 72+
    +2 com.apple.CoreFoundation 0x97481e7e CFRunLoopRunSpecific + 1790+
    +3 com.apple.CoreFoundation 0x97482aa8 CFRunLoopRunInMode + 88+
    +4 com.apple.Foundation 0x924e73d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213+
    +5 com.apple.Foundation 0x924f34f4 -[NSRunLoop(NSRunLoop) run] + 84+
    +6 com.apple.MessageFramework 0x002fc9fd +[_NSSocket _runIOThread] + 98+
    +7 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +8 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +9 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +10 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 8:+
    +0 libSystem.B.dylib 0x95e246fa select$DARWIN_EXTSN + 10+
    +1 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +2 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 9:+
    +0 libSystem.B.dylib 0x95dd52c6 semaphoretimedwait_signaltrap + 10+
    +1 libSystem.B.dylib 0x95e072af pthread_condwait + 1244+
    +2 libSystem.B.dylib 0x95e08b33 pthreadcond_timedwait_relativenp + 47+
    +3 com.apple.Foundation 0x924f8dbc -[NSCondition waitUntilDate:] + 236+
    +4 com.apple.MessageFramework 0x0032212b -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 470+
    +5 com.apple.MessageFramework 0x00321f0b -[IMAPGateway waitUntilClientOperationIsFinished:] + 500+
    +6 com.apple.MessageFramework 0x0031d471 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 268+
    +7 com.apple.MessageFramework 0x0033548f -[IMAPGateway subscribedListingForMailbox:options:listingInfo:] + 124+
    +8 com.apple.MessageFramework 0x003162b0 -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:] + 408+
    +9 com.apple.MessageFramework 0x00315cb8 -[IMAPAccount _listingForMailboxUid:listAllChildren:] + 62+
    +10 com.apple.MessageFramework 0x0031555c -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 482+
    +11 com.apple.CoreFoundation 0x9750191d _invoking__ + 29+
    +12 com.apple.CoreFoundation 0x97501308 -[NSInvocation invoke] + 136+
    +13 com.apple.MessageFramework 0x003db26c -[MonitoredInvocation invoke] + 409+
    +14 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +15 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +16 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +17 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +18 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 10:+
    +0 libSystem.B.dylib 0x95e171fa pread$UNIX2003 + 10+
    +1 libsqlite3.0.dylib 0x9275d210 sqlite3PagerAcquire + 3888+
    +2 libsqlite3.0.dylib 0x927678c5 sqlite3BtreeMoveto + 581+
    +3 libsqlite3.0.dylib 0x9276b526 sqlite3BtreeInsert + 374+
    +4 libsqlite3.0.dylib 0x927b0f23 sqlite3VdbeExec + 8835+
    +5 libsqlite3.0.dylib 0x927baea2 sqlite3Step + 386+
    +6 libsqlite3.0.dylib 0x9279b624 sqlite3_exec + 260+
    +7 com.apple.MessageFramework 0x003c3027 sqlite3execprintf + 67+
    +8 com.apple.MessageFramework 0x003e7059 +[Library setAttachmentNames:forMessage:] + 449+
    +9 com.apple.MessageFramework 0x003992ea -[LibraryMessage _calculateAttachmentInfoFromBody:] + 150+
    +10 com.apple.MessageFramework 0x0041cb33 -[Message calculateAttachmentInfoFromBody:numberOfAttachments:isSigned:isEncrypted:force: ] + 174+
    +11 com.apple.MessageFramework 0x0041c360 -[Message setAttachmentInfoFromBody:forced:] + 86+
    +12 com.apple.MessageFramework 0x0041c301 -[Message forceSetAttachmentInfoFromBody:] + 49+
    +13 com.apple.MessageFramework 0x0034203b -[IMAPMailboxSyncEngine _unlockIfDidCacheAttachmentsWithMonitor:] + 3151+
    +14 com.apple.MessageFramework 0x00329f26 -[IMAPMailboxSyncEngine _goWithMessages:] + 677+
    +15 com.apple.MessageFramework 0x002f3e0b -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 227+
    +16 com.apple.MessageFramework 0x002f3d22 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:] + 50+
    +17 com.apple.MessageFramework 0x00312af4 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 71+
    +18 com.apple.MessageFramework 0x00312aa7 -[LibraryIMAPStore checkNewMail] + 42+
    +19 com.apple.MessageFramework 0x0043cba9 -[IMAPAccount fetchSynchronouslyIsAuto:] + 166+
    +20 com.apple.CoreFoundation 0x9750191d _invoking__ + 29+
    +21 com.apple.CoreFoundation 0x97501308 -[NSInvocation invoke] + 136+
    +22 com.apple.MessageFramework 0x003db26c -[MonitoredInvocation invoke] + 409+
    +23 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +24 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +25 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +26 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +27 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 11:+
    +0 com.apple.Foundation 0x924ac547 __NSAutoreleaseObject + 87+
    +1 com.apple.Foundation 0x924ac432 -[NSObject(NSObject) autorelease] + 18+
    +2 com.apple.MessageFramework 0x0043a62b _objectForAccountInfoKey + 207+
    +3 com.apple.MessageFramework 0x003d29af _isItemStoredOnServer + 34+
    +4 com.apple.MessageFramework 0x003d2955 -[IMAPAccount _isMailboxTypeStoredLocally:] + 143+
    +5 com.apple.MessageFramework 0x003d2895 -[IMAPAccount _specialMailboxUidWithType:create:] + 53+
    +6 com.apple.MessageFramework 0x003c9779 -[MailAccount sentMessagesMailboxUidCreateIfNeeded:] + 50+
    +7 com.apple.MessageFramework 0x003c91d2 -[MailAccount _resetSpecialMailboxes] + 347+
    +8 com.apple.MessageFramework 0x003d16cb -[IMAPAccount _setChildren:forMailboxUid:] + 121+
    +9 com.apple.MessageFramework 0x003caeae -[MailAccount(Internal) _loadMailboxListingIntoCache:attributes:parent:] + 2301+
    +10 com.apple.MessageFramework 0x0043e1ef -[IMAPAccount refreshMailboxListingRootedAtUid:] + 266+
    +11 com.apple.MessageFramework 0x0043ba85 -[IMAPAccount synchronizeAllMailboxes] + 96+
    +12 com.apple.MessageFramework 0x00315843 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 1225+
    +13 com.apple.CoreFoundation 0x9750191d _invoking__ + 29+
    +14 com.apple.CoreFoundation 0x97501308 -[NSInvocation invoke] + 136+
    +15 com.apple.MessageFramework 0x003db26c -[MonitoredInvocation invoke] + 409+
    +16 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +17 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +18 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +19 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +20 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 12:+
    +0 com.apple.CoreFoundation 0x97482ec1 __CFSetLastAllocationEventName + 1+
    +1 com.apple.Foundation 0x924aa675 NSAllocateObject + 117+
    +2 com.apple.Foundation 0x924df73e +[NSNotification notificationWithName:object:userInfo:] + 62+
    +3 com.apple.mail 0x00005e9c 0x1000 + 20124+
    +4 com.apple.mail 0x00003811 0x1000 + 10257+
    +5 com.apple.Foundation 0x924b8ed8 -[NSNotificationCenter postNotificationName:object:] + 56+
    +6 com.apple.MessageFramework 0x003dbe2c -[ActivityMonitor postActivityFinished] + 363+
    +7 com.apple.MessageFramework 0x003db2a3 -[MonitoredInvocation invoke] + 464+
    +8 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +9 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +10 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +11 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +12 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 13:+
    +0 libSystem.B.dylib 0x95dd5266 machmsgtrap + 10+
    +1 libSystem.B.dylib 0x95ddca5c mach_msg + 72+
    +2 libSystem.B.dylib 0x95dfb4d8 libinfoDSmig_Query + 222+
    +3 libSystem.B.dylib 0x95dfb1f3 LI_DSLookupQuery + 353+
    +4 libSystem.B.dylib 0x95e3d87d ds_getaddrinfo + 2674+
    +5 libSystem.B.dylib 0x95e3b80b getaddrinfo + 504+
    +6 com.apple.SystemConfiguration 0x9280a7ae __SCNetworkReachabilityGetFlags + 1357+
    +7 com.apple.SystemConfiguration 0x9280f432 SCNetworkReachabilityGetFlags + 118+
    +8 com.apple.SystemConfiguration 0x9280faa1 SCNetworkCheckReachabilityByName + 74+
    +9 com.apple.MessageFramework 0x002fc84c -[NetworkController isHostReachable:] + 138+
    +10 com.apple.MessageFramework 0x002fc227 -[_NSSocket connectToHost:withPort:protocol:] + 206+
    +11 com.apple.MessageFramework 0x002fb6ac -[Connection _connectUsingHostname:onPort:securityLayerType:accountClass:] + 797+
    +12 com.apple.MessageFramework 0x002fb373 -[Connection _connectUsingAccount:securityLayerType:] + 488+
    +13 com.apple.MessageFramework 0x002fada9 -[Connection connectAndSetSecurityLayerUsingAccount:] + 196+
    +14 com.apple.MessageFramework 0x003e397c -[Connection connectUsingAccount:] + 101+
    +15 com.apple.MessageFramework 0x002fa43c -[IMAPAccount _connectAndAuthenticate:] + 292+
    +16 com.apple.MessageFramework 0x002f8ad7 -[IMAPAccount _recoverFromConnectionlessState] + 177+
    +17 com.apple.MessageFramework 0x002f8725 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 171+
    +18 com.apple.MessageFramework 0x002f83f2 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 160+
    +19 com.apple.MessageFramework 0x002f8294 -[IMAPAccount gatewayForStore:options:] + 159+
    +20 com.apple.MessageFramework 0x0033bd9a -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:] + 218+
    +21 com.apple.CoreFoundation 0x9750191d _invoking__ + 29+
    +22 com.apple.CoreFoundation 0x97501308 -[NSInvocation invoke] + 136+
    +23 com.apple.MessageFramework 0x003db26c -[MonitoredInvocation invoke] + 409+
    +24 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +25 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +26 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +27 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +28 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 14:+
    +0 libSystem.B.dylib 0x95ddc44e _semwaitsignal + 10+
    +1 libSystem.B.dylib 0x95ddc216 usleep$UNIX2003 + 61+
    +2 com.apple.AppKit 0x94b36bf1 -[NSUIHeartBeat _heartBeatThread:] + 2042+
    +3 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +4 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +5 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +6 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 15:+
    +0 libSystem.B.dylib 0x95dd5266 machmsgtrap + 10+
    +1 libSystem.B.dylib 0x95ddca5c mach_msg + 72+
    +2 com.apple.CoreFoundation 0x97481e7e CFRunLoopRunSpecific + 1790+
    +3 com.apple.CoreFoundation 0x97482aa8 CFRunLoopRunInMode + 88+
    +4 com.apple.CFNetwork 0x9572c264 CFURLCacheWorkerThread(void*) + 388+
    +5 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +6 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 16:+
    +0 libSystem.B.dylib 0x95ddc44e _semwaitsignal + 10+
    +1 libSystem.B.dylib 0x95e06dcd pthreadcondwait$UNIX2003 + 73+
    +2 com.apple.MessageFramework 0x002e309c _MFAcquireObjectLock + 66+
    +3 com.apple.MessageFramework 0x003c3e4d +[MailAccount mailAccounts] + 42+
    +4 com.apple.MessageFramework 0x002f6b7f +[MailAccount _accountForURL:includeInactiveAccounts:] + 166+
    +5 com.apple.MessageFramework 0x002f6abb +[MailAccount infoForURL:] + 54+
    +6 com.apple.MessageFramework 0x002f69be +[MailAccount mailboxUidForURL:forceCreation:] + 299+
    +7 com.apple.MessageFramework 0x002f688b +[MailAccount mailboxUidForURL:] + 49+
    +8 com.apple.MessageFramework 0x0043e616 +[IMAPAccount _deleteQueuedMailboxes:] + 180+
    +9 com.apple.CoreFoundation 0x9750191d _invoking__ + 29+
    +10 com.apple.CoreFoundation 0x97501308 -[NSInvocation invoke] + 136+
    +11 com.apple.MessageFramework 0x003db26c -[MonitoredInvocation invoke] + 409+
    +12 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +13 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +14 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +15 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +16 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 17:+
    +0 libSystem.B.dylib 0x95dd52c6 semaphoretimedwait_signaltrap + 10+
    +1 libSystem.B.dylib 0x95e072af pthread_condwait + 1244+
    +2 libSystem.B.dylib 0x95e08b33 pthreadcond_timedwait_relativenp + 47+
    +3 com.apple.Foundation 0x924f8dbc -[NSCondition waitUntilDate:] + 236+
    +4 com.apple.Foundation 0x924f8bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144+
    +5 com.apple.MessageFramework 0x003dac87 -[InvocationQueue _drainQueue] + 317+
    +6 com.apple.MessageFramework 0x0031e360 -[MonitoredInvocationQueue _drainQueue] + 261+
    +7 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +8 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +9 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +10 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 18:+
    +0 libSystem.B.dylib 0x95dd5266 machmsgtrap + 10+
    +1 libSystem.B.dylib 0x95ddca5c mach_msg + 72+
    +2 com.apple.CoreFoundation 0x97481e7e CFRunLoopRunSpecific + 1790+
    +3 com.apple.CoreFoundation 0x97482aa8 CFRunLoopRunInMode + 88+
    +4 com.apple.MessageFramework 0x002ffb52 _handleRequestWithTimeout + 2163+
    +5 com.apple.MessageFramework 0x0030457d -[_NSSocket readBytes:length:error:] + 154+
    +6 com.apple.MessageFramework 0x00304107 -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 89+
    +7 com.apple.MessageFramework 0x00303fc2 -[Connection _fillBuffer:] + 853+
    +8 com.apple.MessageFramework 0x00303b88 -[Connection _readLineIntoData:error:] + 70+
    +9 com.apple.MessageFramework 0x00303b00 -[IMAPConnection _readLineIntoData:error:] + 71+
    +10 com.apple.MessageFramework 0x00303988 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 155+
    +11 com.apple.MessageFramework 0x003034d6 -[IMAPResponse initWithConnection:error:] + 370+
    +12 com.apple.MessageFramework 0x00303323 -[IMAPConnection _copyNextServerResponse:] + 79+
    +13 com.apple.MessageFramework 0x003fe953 -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 201+
    +14 com.apple.MessageFramework 0x0031fb00 -[IMAPConnection(MFPrivate) _responseFromSendingOperation:] + 1126+
    +15 com.apple.MessageFramework 0x003270c0 -[IMAPConnection executeClientOperation:] + 49+
    +16 com.apple.MessageFramework 0x0031e919 -[IMAPGateway _allowClientOperationThrough:] + 1256+
    +17 com.apple.CoreFoundation 0x9750191d _invoking__ + 29+
    +18 com.apple.CoreFoundation 0x97501308 -[NSInvocation invoke] + 136+
    +19 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +20 com.apple.MessageFramework 0x0031e360 -[MonitoredInvocationQueue _drainQueue] + 261+
    +21 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +22 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +23 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +24 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 19:+
    +0 libSystem.B.dylib 0x95dd52c6 semaphoretimedwait_signaltrap + 10+
    +1 libSystem.B.dylib 0x95e072af pthread_condwait + 1244+
    +2 libSystem.B.dylib 0x95e08b33 pthreadcond_timedwait_relativenp + 47+
    +3 com.apple.Foundation 0x924f8dbc -[NSCondition waitUntilDate:] + 236+
    +4 com.apple.Foundation 0x924f8bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144+
    +5 com.apple.MessageFramework 0x003dac87 -[InvocationQueue _drainQueue] + 317+
    +6 com.apple.MessageFramework 0x0031e360 -[MonitoredInvocationQueue _drainQueue] + 261+
    +7 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +8 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +9 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +10 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 20:+
    +0 libSystem.B.dylib 0x95dd52c6 semaphoretimedwait_signaltrap + 10+
    +1 libSystem.B.dylib 0x95e072af pthread_condwait + 1244+
    +2 libSystem.B.dylib 0x95e08b33 pthreadcond_timedwait_relativenp + 47+
    +3 com.apple.Foundation 0x924f8dbc -[NSCondition waitUntilDate:] + 236+
    +4 com.apple.Foundation 0x924f8bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144+
    +5 com.apple.MessageFramework 0x003dac87 -[InvocationQueue _drainQueue] + 317+
    +6 com.apple.MessageFramework 0x0031e360 -[MonitoredInvocationQueue _drainQueue] + 261+
    +7 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +8 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +9 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +10 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 21:+
    +0 libSystem.B.dylib 0x95dd5266 machmsgtrap + 10+
    +1 libSystem.B.dylib 0x95ddca5c mach_msg + 72+
    +2 com.apple.CoreFoundation 0x97481e7e CFRunLoopRunSpecific + 1790+
    +3 com.apple.CoreFoundation 0x97482aa8 CFRunLoopRunInMode + 88+
    +4 com.apple.MessageFramework 0x002ffb52 _handleRequestWithTimeout + 2163+
    +5 com.apple.MessageFramework 0x0030457d -[_NSSocket readBytes:length:error:] + 154+
    +6 com.apple.MessageFramework 0x00304107 -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 89+
    +7 com.apple.MessageFramework 0x00303fc2 -[Connection _fillBuffer:] + 853+
    +8 com.apple.MessageFramework 0x00303b88 -[Connection _readLineIntoData:error:] + 70+
    +9 com.apple.MessageFramework 0x00303b00 -[IMAPConnection _readLineIntoData:error:] + 71+
    +10 com.apple.MessageFramework 0x00303988 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 155+
    +11 com.apple.MessageFramework 0x003034d6 -[IMAPResponse initWithConnection:error:] + 370+
    +12 com.apple.MessageFramework 0x00303323 -[IMAPConnection _copyNextServerResponse:] + 79+
    +13 com.apple.MessageFramework 0x003fe953 -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 201+
    +14 com.apple.MessageFramework 0x0031fb00 -[IMAPConnection(MFPrivate) _responseFromSendingOperation:] + 1126+
    +15 com.apple.MessageFramework 0x003231fa -[IMAPConnection executeListOrLSub:] + 214+
    +16 com.apple.MessageFramework 0x0031e919 -[IMAPGateway _allowClientOperationThrough:] + 1256+
    +17 com.apple.CoreFoundation 0x9750191d _invoking__ + 29+
    +18 com.apple.CoreFoundation 0x97501308 -[NSInvocation invoke] + 136+
    +19 com.apple.MessageFramework 0x003dae4e -[InvocationQueue _drainQueue] + 772+
    +20 com.apple.MessageFramework 0x0031e360 -[MonitoredInvocationQueue _drainQueue] + 261+
    +21 com.apple.Foundation 0x924b2dfd -[NSThread main] + 45+
    +22 com.apple.Foundation 0x924b29a4 _NSThread__main_ + 308+
    +23 libSystem.B.dylib 0x95e06155 pthreadstart + 321+
    +24 libSystem.B.dylib 0x95e06012 thread_start + 34+
    +Thread 0 crashed with X86 Thread State (32-bit):+
    +eax: 0x00000000 ebx: 0x94b61cdc ecx: 0x00000000 edx: 0x00000008+
    +edi: 0x00000000 esi: 0x15d491f0 ebp: 0xbfffe6a8 esp: 0xbfffe620+
    +ss: 0x0000001f efl: 0x00010246 eip: 0x94b61e5d cs: 0x00000017+
    +ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037+
    +cr2: 0x00000008+
    +Binary Images:+
    +0x1000 - 0x272ff3 com.apple.mail 3.6 (936) <02de10795176b4e702af977cb8428f1c> /Applications/Mail.app/Contents/MacOS/Mail+
    +0x2e1000 - 0x53affb com.apple.MessageFramework 3.6 (936) <d7a6e5f6721cbab99ed3e83137dba11a> /System/Library/Frameworks/Message.framework/Versions/B/Message+
    +0x691000 - 0x693fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling+
    +0x69a000 - 0x6befe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <32045add5f408ba4193bfaf296908bd2> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping+
    +0x11b08000 - 0x11b0afff +net.culater.SIMBL 0.8.2 (8) /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL+
    +0x15794000 - 0x15a8dff3 com.apple.RawCamera.bundle 2.3.0 (505) <1c7cea30ffe2b4de98ced6518df1e54b> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera+
    +0x16eac000 - 0x16eb1ff3 libCGXCoreImage.A.dylib ??? (???) <ebbf9ab0f700c881f7e2f94ffedc1bdf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib+
    +0x16eda000 - 0x16efafff com.apple.Mail.Syncer 3.6 (936) <3e6943e7ab57e8b89e4ae4f540223433> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer+
    +0x16f0e000 - 0x16f21fff com.apple.syncservices.syncservicesui 4.3 (389.20) <6356d458bbafd6d6901f38a4c43e00ff> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI+
    +0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld+
    +0x90003000 - 0x9003dffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation+
    +0x9003e000 - 0x90056fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting+
    +0x90057000 - 0x9006cffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture+
    +0x9006d000 - 0x900c7ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText+
    +0x900c8000 - 0x900c8ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver+
    +0x900c9000 - 0x904d9fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib+
    +0x904da000 - 0x904dffff com.apple.CommonPanels 1.2.4 (85) <3b64ef0de184d09c6f99a1a7e77e42be> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels+
    +0x904e0000 - 0x90509fff libcups.2.dylib ??? (???) <56606d10ebe7748522786218d3954586> /usr/lib/libcups.2.dylib+
    +0x905ff000 - 0x9060afe7 libCSync.A.dylib ??? (???) <d88c20c9a2fd0676dec62fddfa74979f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib+
    +0x9060b000 - 0x90610ffc com.apple.KerberosHelper 1.1 (1.0) <c6b942d705fa0460ace11af01f316db1> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper+
    +0x90611000 - 0x90684fff com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser+
    +0x90685000 - 0x906bffe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI+
    +0x906c0000 - 0x9074dff7 com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit+
    +0x9074e000 - 0x907cbfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib+
    +0x907cc000 - 0x908d2ff7 com.apple.PubSub 1.0.4 (65.12.1) <1d04e332a1590cdee4f108042c805e8b> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub+
    +0x908d3000 - 0x90aa4ff3 com.apple.security 5.0.6 (37592) <5d7ae92f2e52ee7ba5ae658399770602> /System/Library/Frameworks/Security.framework/Versions/A/Security+
    +0x90c35000 - 0x90c60fe7 libauto.dylib ??? (???) <2072d673706bbe463ed2426af57a28d7> /usr/lib/libauto.dylib+
    +0x90c61000 - 0x90c6fffd libz.1.dylib ??? (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib+
    +0x90c70000 - 0x90d03fff com.apple.ink.framework 101.3 (86) <dfa9debcd7537849d228021d1d9c0f63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink+
    +0x90d04000 - 0x90d4fff7 com.apple.CoreMediaIOServices 130.0 (935) <4ee695edd53f5aa200021a2f69d24f76> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices+
    +0x90d50000 - 0x90dcfff5 com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit+
    +0x90dd0000 - 0x90e2cff7 com.apple.htmlrendering 68 (1.1.3) <a9f65fa1c4668dc7c49af5bf7d5287ad> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering+
    +0x90e2d000 - 0x90e86ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib+
    +0x90e87000 - 0x90e8bffd com.apple.AOSNotification 1.0.0 (68.13) <d2a1f7c6e054d7451b17c7301e4dadd5> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication+
    +0x90e8c000 - 0x90e8cffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate+
    +0x90e8d000 - 0x90f34feb com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD+
    +0x90f35000 - 0x90f4cfff com.apple.datadetectors 1.0.1 (66.2) <d26db7f4a936da54d09cea812663b5ea> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors+
    +0x90f4d000 - 0x90f8bfff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib+
    +0x90f8c000 - 0x90ffefff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit+
    +0x90fff000 - 0x9101cff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook+
    +0x91022000 - 0x91102fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib+
    +0x911a8000 - 0x911c6fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib+
    +0x911c7000 - 0x911ccfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices+
    +0x911cd000 - 0x911f1fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib+
    +0x911f2000 - 0x91210ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <062b391cc6becb098d8e5f4b32e50c4a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce+
    +0x91211000 - 0x91211ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib+
    +0x91212000 - 0x9151afe7 com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox+
    +0x9151b000 - 0x9151ffff libGIF.dylib ??? (???) <e7d550bda10018f52e61bb499dcf445f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib+
    +0x92420000 - 0x92427ff7 libCGATS.A.dylib ??? (???) <1339abfb67318d65c0130f76bc8c4da6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib+
    +0x92428000 - 0x92455feb libvDSP.dylib ??? (???) <2ee4eb005babc90eaa352b33eb09226e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib+
    +0x92456000 - 0x9245ffff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <6a6518b392d3d41ace3dcea69d6809d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition+
    +0x92463000 - 0x924a7feb com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver+
    +0x924a8000 - 0x92724fe7 com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation+
    +0x92725000 - 0x92732fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL+
    +0x92733000 - 0x9273affe libbsm.dylib ??? (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib+
    +0x9273b000 - 0x927c2ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib+
    +0x927c3000 - 0x92805fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices+
    +0x92806000 - 0x9283dfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration+
    +0x9283e000 - 0x9283effe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1bce4a22b6a5cc7055d0938ddad269b2> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l+
    +0x9283f000 - 0x92867ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut+
    +0x92868000 - 0x9289cfef com.apple.bom 9.0.1 (136.1.1) <e1f64b0dae30d560a1204c69c14751a0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom+
    +0x9289d000 - 0x928a1fff com.apple.OpenDirectory 10.5 (10.5) <29f7b10aad34ba8eb15b55d69dff6ddf> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory+
    +0x928aa000 - 0x928acff5 libRadiance.dylib ??? (???) <3561a7a6405223a1737f41352f1fd8c8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib+
    +0x928ad000 - 0x92995ff3 com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData+
    +0x92996000 - 0x929d7fe7 libRIP.A.dylib ??? (???) <e9c5df8bd574b71e55ac60c910b929ce> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib+
    +0x929d8000 - 0x929e8ffc com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis+
    +0x929e9000 - 0x929f3feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <caa41909dcb5a18a94bc68cd13999bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound+
    +0x929f4000 - 0x92b78fef com.apple.MediaToolbox 0.484.2 (484.2) <a5110a7d3bcb02c45ad8fca1f4957917> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x+
    +0x92b79000 - 0x92b79ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib+
    +0x92b7a000 - 0x92bcbfeb com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols+
    +0x92bcc000 - 0x92bf0feb libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib+
    +0x92bf1000 - 0x92cd2ff7 libxml2.2.dylib ??? (???) <b3bc0b280c36aa17ac477b4da56cd038> /usr/lib/libxml2.2.dylib+
    +0x92cfd000 - 0x92d2effb com.apple.quartzfilters 1.5.0 (1.5.0) <01090d7204c55b32a6a11199fa0d2e2b> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters+
    +0x92d2f000 - 0x930ebff4 com.apple.VideoToolbox 0.484.2 (484.2) <35f2d177796ebb3b61f9d06593d1787a> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x+
    +0x930ec000 - 0x9312bfef libTIFF.dylib ??? (???) <cd2e392973a1fa35f23a0f37f55c579c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib+
    +0x9312c000 - 0x9312cffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit+
    +0x9312d000 - 0x9319affb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages+
    +0x9319b000 - 0x9319bff8 com.apple.Cocoa 6.5 (???) <e9318c93615b27231498bbe585b8da98> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa+
    +0x931cc000 - 0x931d4fff com.apple.DiskArbitration 2.2.1 (2.2.1) <42908e7ecc17a83cec4afef2850ec79e> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration +
    +0x931d5000 - 0x931e1ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData+
    +0x931e2000 - 0x93248ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport+
    +0x93249000 - 0x932d3fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <a6edef2d49ffdee3b01010b7e6edac1f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv+
    +0x932de000 - 0x932edfff libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib+
    +0x932ee000 - 0x9330aff3 com.apple.CoreVideo 1.6.1 (48.6) <f1837beeefc81964abf7b58075edea2f> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo+
    +0x9330e000 - 0x9334afff com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit+
    +0x9334b000 - 0x9334bff8 com.apple.ApplicationServices 34 (34) <e9cd7c823062c4382d89e3c9997f4739> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services+
    +0x935b5000 - 0x935b5fff com.apple.Carbon 136 (136) <ec1d4184925e652dbe1b9200a5a552ec> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon+
    +0x935b6000 - 0x93c56feb com.apple.CoreGraphics 1.409.5 (???) <a40644ccdbdc76e3a0ab4d468b2f9bdd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics+
    +0x93c57000 - 0x93c86fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE+
    +0x93c87000 - 0x93e27fff com.apple.JavaScriptCore 5531.22 (5531.22.5) <f79bbf2262a1a1a7f4c1109886d4b7de> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore+
    +0x93e28000 - 0x93e28ffe com.apple.quartzframework 1.5 (1.5) <49afd7e7e3b2cad89cfaf2ac8c67c8a4> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz+
    +0x93e29000 - 0x94103ff3 com.apple.CoreServices.CarbonCore 786.11 (786.14) <d5cceb2fe9551d345d40dd1ecf409ec2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore+
    +0x94104000 - 0x942c0ff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer+
    +0x9438b000 - 0x94396fff com.apple.dotMacLegacy 3.1 (246) <d335114af509bf38a7ead5274a93dfb1> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y+
    +0x94397000 - 0x943c9fff com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP+
    +0x943ca000 - 0x943d1fe9 libgcc_s.1.dylib ??? (???) <28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib+
    +0x943d2000 - 0x948a3fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib+
    +0x948a4000 - 0x948b5ffe com.apple.CFOpenDirectory 10.5 (10.5) <01a0034b48d63524057b5f57dfc0605c> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory+
    +0x948b6000 - 0x948fffef com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata+
    +0x94900000 - 0x94902fff com.apple.securityhi 3.0 (30817) <020419ad33b8638b174e1a472728a894> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI+
    +0x94903000 - 0x94904ffc libffi.dylib ??? (???) <596e0dbf626b211741cecaa9698f271b> /usr/lib/libffi.dylib+
    +0x94905000 - 0x94924ffa libJPEG.dylib ??? (???) <37050c2a8d6f7026c94b4bf07c4d8a80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib+
    +0x94925000 - 0x94925ffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices+
    +0x94926000 - 0x949edff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage+
    +0x949ee000 - 0x94a7bff7 com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices+
    +0x94a7c000 - 0x94a8ffff com.apple.IMUtils 4.0.8 (584) <2105663d09d2bee0d8742159d0581a3e> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils+
    +0x94a90000 - 0x9528efef com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit+
    +0x9528f000 - 0x953c8ff7 libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib+
    +0x953c9000 - 0x95417fe3 com.apple.AppleVAFramework 4.1.16 (4.1.16) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA+
    +0x95418000 - 0x95560ff7 com.apple.ImageIO.framework 2.0.7 (2.0.7) <cf45179ee2de2d46a6ced2ed147a454c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO+
    +0x95561000 - 0x955a1fef com.apple.CoreMedia 0.484.2 (484.2) <37461ff47cb25ad434a8544c97271d28> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia+
    +0x955a2000 - 0x955b8fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices+
    +0x955b9000 - 0x9570bff3 com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox+
    +0x9570c000 - 0x95728ff3 libPng.dylib ??? (???) <df60749fd50bcfa0da5b4cac899e09df> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib+
    +0x95729000 - 0x957d0fec com.apple.CFNetwork 438.14 (438.14) <5f9ee0430b5f6319f18d9b23e777e0d2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork+
    +0x957d1000 - 0x95883ffb libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib+
    +0x95884000 - 0x95893ffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <43c5b91223501f917392f59fbf9d7ace> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers+
    +0x95894000 - 0x95970fef com.apple.WebKit 5531.22 (5531.22.7) <901f5cd530528e9ade7e56758ed06347> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit+
    +0x95971000 - 0x959ceffb libstdc++.6.dylib ??? (???) <6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc+.6.dylib
    +0x959cf000 - 0x959dffff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis+
    +0x959e0000 - 0x95d7dfef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore+
    +0x95d7e000 - 0x95d84fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print+
    +0x95d85000 - 0x95dd3ff3 com.apple.datadetectorscore 1.0.2 (52.14) <bd3bfe061091be75ce6a27172b988702> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore+
    +0x95dd4000 - 0x95f3bff3 libSystem.B.dylib ??? (???) <c8f52e158bf540cc000146ca8a705958> /usr/lib/libSystem.B.dylib+
    +0x95f3c000 - 0x95f48fff libbz2.1.0.dylib ??? (???) <887bb6f73d23088fe42946cd9f134876> /usr/lib/libbz2.1.0.dylib+
    +0x95f49000 - 0x95fc6feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio+
    +0x95fc7000 - 0x96016fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI+
    +0x96017000 - 0x9617aff2 com.apple.CalendarStore 3.0.8 (860) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore+
    +0x9617b000 - 0x9617ffff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib+
    +0x96180000 - 0x9619cfff com.apple.IMFramework 4.0.8 (584) <49551f914cd1c3ba154f15f3765803a9> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage+
    +0x9619d000 - 0x96217ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore+
    +0x96218000 - 0x962e3fef com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync+
    +0x962e4000 - 0x962e9fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup+
    +0x962ea000 - 0x96422fe7 com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit+
    +0x96423000 - 0x964b6ff3 com.apple.ApplicationServices.ATS 3.8.1 (???) <56f6d9c6f0ae8dccb3b6def46d4ae3f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS+
    +0x964b7000 - 0x96601feb com.apple.QTKit 7.6.6 (1674) <ff784c2169c4214493a2b5153d80bd25> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit+
    +0x96602000 - 0x96edcfff com.apple.WebCore 5531.22 (5531.22.7) <65b7168457a1cfe674aab9a0f2275509> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore+
    +0x96edd000 - 0x96f28fe1 com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face+
    +0x96f29000 - 0x96f5bff7 com.apple.DotMacSyncManager 1.2.4 (308) <99bb01aa2cdb0d860a11a1097ffe421d> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager+
    +0x96f5c000 - 0x9703efff com.apple.syncservices 3.3 (389.20) <bfedc8cbb3754652e13d67a45791fac9> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices+
    +0x9703f000 - 0x97042fff com.apple.help 1.1 (36) <175489f8adf287b3ebd259362b0292c0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help+
    +0x97043000 - 0x97401fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib+
    +0x97402000 - 0x9740effe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib+
    +0x9740f000 - 0x97542fe7 com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation+
    +0x97543000 - 0x97579fef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib+
    +0x9757a000 - 0x975cbff7 com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices+
    +0x975cc000 - 0x9767cfff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos+
    +0x9767d000 - 0x979a8ff6 com.apple.QuickTime 7.6.6 (1674) <3ebc05dcaf5857bc3d33a04ebabf5c1a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime+
    +0x979a9000 - 0x97b29fff com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook+
    +0x97b2a000 - 0x97be5fe3 com.apple.CoreServices.OSServices 228.1 (228.1) <ebdde14b3ea5db5fcacf39fcfda81294> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices+
    +0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib+
    +0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib+

    Yellow pages widget? Did I miss an iPhone update or are you in the wrong forum?

  • Problem with IconImage for JFrame

    If I create an BufferedImage by ImageIO.read for example and then call getScaledInstance on this image and set the scaled Image to a JFrame as the IconImage (via setIconImage(Image image)), the application hangs.
    Has anyone else this problem?

    ok ok, i read it and now think that this is a sscce:
    import java.awt.Image;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    public class Start
         public static void main(String[] args)
              final JFrame frame = new JFrame();
              final Image image, imageScaled;
              try
                   image = ImageIO.read(new File("test.png"));
                   imageScaled = image.getScaledInstance(8, 8, Image.SCALE_DEFAULT);
                   frame.add(new JLabel(new ImageIcon(image)));
                   //frame.setIconImage(image); works
                   frame.setIconImage(imageScaled); // works not
                   frame.pack();
                   frame.setVisible(true);
              catch (IOException e)
                   System.err.println(e.getMessage());
                   e.printStackTrace(System.err);
    }

Maybe you are looking for

  • Anyone else having trouble with Verizon Webmail?

    Yesterday morning I found that I could not log into Verizon Webmail using Safari. I called Verizon FIOS Tech Support and they said there was  a system-wide e-mail problem which would take 4-10 hours to fix. I noted that I was able to access Webmail u

  • Add Lightroom 2.0 HTML Gallery to iWeb

    When I create a slideshow in Lightroom it produces an HTML Gallery, not a .swf file. Files are created and I do not get an HTML code that I can copy and paste into the iWeb snippet. Where do I upload this folders' contents to MobileMe's iDisk and how

  • Default value for a table field?

    Hi, I have a table which contains the fields USER_NAME and DATE_CHANGED_AT. here's what i want to do: When we use se16 to enter data into the table, i want these fields to have default values . user_name should contain the currently logged in user. d

  • LG TV / Monitor resolution

    Hi - I have a mid 2010 MBPro connected to an LG M2232D TV/Monitor via the mini dvi / RGB connection. The resolution on the TV is poor / blurry, and I cant find a way to improve it. Any ideas?

  • Error at the time of Collective billing

    I am getting an error message "TE507_05    does not exist" at the time of create collective bill using Tcode "EA10_COLL" Please advice. Satya