MBPro problems with image manipulation apps

My MBPro 15" 2011 never gave me any problem and I gotta say I am quite happy with it running any kind of app, recently, very recently, it often hangs up and requires many restarts to log in again, sometimes the grey screen stays still forever, some other times the screen shows stripes along the apple logo but most of all any time I open an image manipulation software it hangs up and fans start spinning a lot, it happens with PhotoShop and iPhoto but not with LightRoom (which is a 64bit app), tried to start a flight sim (the only game I have on the computer which also runs in 64bit) but same effect and it bothers me big time to have to backup it all and reinstall from scratch, any suggestion for problem source to look after?
thank you
Giovanni

Sounds like youre GPU is dead - symptoms match exactly. Check out the thread here - 2011 MacBook Pro and discrete graphics card.
https://discussions.apple.com/thread/4766577?tstart=0

Similar Messages

  • Problem with Image Manipulation

    I am trying to make two methods. One to give me a 2-dim array of Colors from an image so I can access the pixels with x, y coordinates. The other to take an array like that and give me an image. Following is my code:
    import java.awt.*;
    import java.awt.image.*;
    import java.util.*;
    import javax.swing.*;
    public class ImgManip extends Component
         public static void main(String args[]) {
              new ImgManip();
         public ImgManip() {
              Image image1;
              Image image2;
              Color colors[][];
              System.out.println("Initialized");
              image1 = getImg("city.gif", true);
              System.out.println("city.gif loaded");
              colors = getPixelColors(image1);
              System.out.println("Pixel Colors Retrieved");
              image2 = makeImage(colors);
              System.out.println("Pixel Colors made into Image");
              System.out.println("image1 equals image2 :");
              System.out.println(image1.equals(image2));
         public Image getImg(String img, boolean wait)
              Image retVal = createImage(100, 100);
              try {
              Toolkit toolkit = Toolkit.getDefaultToolkit();
              Image image = toolkit.getImage(img);
              MediaTracker m = new MediaTracker(this);
              m.addImage(image, 0);
              if(wait) m.waitForID(0);
              retVal = image;
              } catch (Exception e) {}
              return retVal;
         public Image getImg(String img)
              return getImg(img, true);
         public int[][] getPixels(Image image)
              int w = getWidth(image);
              int h = getHeight(image);
              int pixAr[] = new int[w * h];
              int coor[][] = new int[w][h];
              int i;
              int ii;
              try {
              new PixelGrabber(image, 0, 0, w, h, pixAr, 0, w).grabPixels();
              } catch (Exception e) {}
              for(i = 0; i < h; i++)
                   for(ii = 0; ii < w; ii++)
                        int pai = i * w + ii;
                        //System.out.println("w: " + w + " h: " + h + " i: " + i + " ii: " + ii + " pai: " + pai);
                        coor[ii] = pixAr[i * w + ii];
              return coor;
         public Color[][] getPixelColors(Image image)
              int coor[][] = getPixels(image);
              Color colors[][] = new Color[coor.length][coor[0].length];
              int i, ii;
              for(i = 0; i < coor.length; i++) {
                   for(ii = 0; ii < coor[0].length; ii++) {
                        colors[i][ii] = new Color(coor[i][ii]);
              return colors;
         public Image makeImage(Color colors[][])
              int w = colors.length;
              int h = colors[0].length;
              int pixArg[] = new int[w * h];
              int i;
              int ii;
              for(i = 0; i < h; i++) {
                   for(ii = 0; ii < w; ii++) {
                        pixArg[i * w + ii] = colors[ii][i].getRGB();
              return createImage(new MemoryImageSource(w, h, ColorModel.getRGBdefault(), pixArg, 0, w));
         public static int getWidth(Image image)
              return image.getWidth(null);
         public static int getHeight(Image image)
              return image.getHeight(null);
    makeImage() gives me the image from the array and getPixelColors gives me the array. It compiles and runs, but the test program won't work. In the constructor for ImgManip, it displays if image1 and image2 are equal. If the methods worked correctly, they would be, but I am getting that they are not. Can someone please tell me what I am doing wrong?

    A quick check will compare the properties of the two images such
    as width,height and any other simple property that you think is
    relevent.
    However, the only way to be sure they are the same is to first perform the
    quick check above then run through the images and compare the
    pixel values of both (effectivly find the difference between the two
    images).
    public static boolean areEqual(BufferedImage a, BufferedImage b)
      // same address so same image
      if((a!=null)&&(a==b)) return true;
      // perform fast check this can rapidly tell if the images are not the
      // same but cannot tell if they are the same
      if(!fastCheck(a,b))
        return false;
      }else
        //loop through the images comparing the values of each pixel
        for(int i=0;i<a.getWidth();i++)
          for(int j=0;j<a.getHeight();j++)
            if(a.getRGB(i,j)!=b.getRGB(i,j)) return false;
      return true;
    }where fastCheck is similar to
    protected static boolean fastCheck(BufferedImage a, BufferedImage b)
      if(a==null or b==null) return false;
      if(a.getWidth()!=b.getWidth()) return false;
      if(a.getHeight()!=b.getHeight()) return false;
      // put some other fast tests in here
      return true;
    }matfud

  • HT4009 Do you understand me ? I want money back.Because I have problem with LINE In App Purchase.And no one try to resolve this problem.And the answer of NEVER LINE JAPAN they don't have responsibility.I think it will be effect with APPLE image also.I wan

    Do you understand me ? I want money back.Because I have problem with LINE In App Purchase.And no one try to resolve this problem.And the answer of NEVER LINE JAPAN they don't have responsibility.I think it will be effect with APPLE image also.I want you to help me everyways to refound my monet back.Could you?

    Contact iTunes Store Support.

  • TS1702 I am having a problem with the apple app Numbers.  It has been waiting for a week.  I can not open it or delete it

    I am having a problem with the apple app Numbers.  It has been waiting for a week.  I can not open it or delete it

    I found the images here: https://support.mozilla.org/en-US/questions/977542#answer-501598

  • Problem with Image file

    Hi,
    Iam facing with one problem.I have one swing interface through which I can upload files(back end servlet programme).Now I can upload all types of file but problem with image file it uploading perfectly that means size of the uploaded file is ok but its format damaged.It can not be open.My backend servlet programme is ok coz i tested it with html form it is working perfectly.Problem with swing interface.Plz guide me where I done a mistake.Below r my codes:-
    ImageIcon Upload=new ImageIcon("images/Upload.gif");
         Button=new JButton(Upload);
         Button.setToolTipText("Upload");
    Button.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
              int returnVal = fc.showOpenDialog(ActionDemo4.this);
              if (returnVal == JFileChooser.APPROVE_OPTION) {
              File file = fc.getSelectedFile();
    String aa=file.getAbsolutePath();
              textArea3.append(aa);
                   textArea2.append("Local URL:");
    long l=file.length();
              try
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff);
              String str1=textArea10.getText();
    url = new URL ("http://127.0.0.1:7001/servletUpload?x="+str1);
         urlConn = url.openConnection();
         urlConn.setDoInput (true);
         urlConn.setDoOutput (true);
         urlConn.setUseCaches (false);
         urlConn.setRequestProperty("Content-Type","multipart/form-data;boundry=-----------------------------7d11e410e500f2");
         printout = new DataOutputStream (urlConn.getOutputStream ());
    String content ="-----------------------------7d11e410e500f2\r\n"+"Content-Disposition: form-data;"+"name=\"upload\"; filename=\""+aa+"\"\r\n"+"Content-Type: application/octet-strem\r\n\r\n\r\n"+conffile+"-----------------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);
    printout.flush ();
    printout.close ();
    Best Regards
    Bikash

    The errors are here:
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff); (conffile is a String object containing the image)
    and here:
    String content ="-----------------------------7d11e410e500f2\r\n"+"Con
    ent-Disposition: form-data;"+"name=\"upload\";
    filename=\""+aa+"\"\r\n"+"Content-Type:
    application/octet-strem\r\n\r\n\r\n"+conffile+"--------
    --------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);conffie is sent to the server but
    it's non possible to treat binary data as String!
    Image files must be sent as byte[] NOT as String ......

  • Hello Apple? How do i fixed my problem with my ipad apps every time i open that apps it takes 10min. to play the games ant its getting LOST MODE and the ipad system is crashing

    How do i fixed my problem with my ipad apps every time i open that apps it takes 10min. to play the games ant its getting LOST MODE and the ipad system is crashing

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    Have you tried closing all apps via the iPad's multitasking bar and then doing a soft-reset and seeing that helps ? To close all apps :
    iOS 7: double-click the home button to open the taskbar, and then swipe or drag each app's screen from there up and off the top of the screen to close it, and click the home button to close the taskbar.
    iOS 6 and below : from the home screen (i.e. not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    Soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Problem with images opened in Photoshop CS 5

    Hi, I have a problem with images that I open in Photoshop CS 5. F. ex. I opened
    the following image:
    The image appears with a purple color in Photoshop. If I hover over the image
    with a tool like lasso, it temporarily regains it´s original color. The image mode is RGB Color, 8 Bits/Channel.
    I resetted the start settings of Photoshop with the CTRL-Shift-Alt-combination, which had no effect.

    The confusion arises from the imprecise error message in the Preferences > Performance dialog box, to wit:
    OK, that seems to be open to misunderstanding indeed.
    The video card: Citrix Systems Inc. Display Driver.
    Could not find a list for CS6 specifically, but the card may fall short.
    http://helpx.adobe.com/photoshop/kb/tested-video-cards-photoshop-cs5.html
    If I invoke View > Proof Colors, the only thing that changes is that the text in the brackets
    Also if you set View > Proof Setup to something different?
    Boilerplate-text:
    Are Photoshop and OS fully updated and have you performed the usual trouble-shooting routines (trashing prefs by keeping command-alt-shift/ctrl-alt-shift pressed while starting Photoshop, 3rd party plug-ins deactivation, system maintenance, cleaning caches, font validation, etc.)?

  • Problem with image url

    Hello,
    today I have a problem with image url. I wanted Image to change when mouse dragged over it. But nothing happened. Any ideas?
    def maxIco: ImageView = ImageView{
    image: Image{
    url: "{__DIR__}ikony/max.png"
    onMouseDragged: function(event: MouseEvent){
    maxIco.image = Image{
    url: "{__DIR__}ikony/max2.png"
    }

    This is working for me:
    src/main/Main.fx
    src/main/icon/image1.bmp
    src/main/icon/image2.bmp
    //Main.fx
    package main;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.input.MouseEvent;
    var changed = false;
    def imgView: ImageView = ImageView {
        image: Image {
            url: "{__DIR__}icon/image1.bmp"
        onMouseDragged: function (e: MouseEvent): Void {
            if (not changed) {
                imgView.image = Image {
                    url: "{__DIR__}icon/image2.bmp"
                changed = true;
                println(imgView.image.url);
        onMouseReleased: function (e: MouseEvent): Void {
            imgView.image = Image {
                url: "{__DIR__}icon/image1.bmp"
            changed = false;
            println(imgView.image.url);
    Stage {
        title: "ImageTest"
        scene: Scene {
            width: 700
            height: 600
            content: [
                imgView
    }I've changed few things to switch image only one time on mouseDragged event.
    It print the image URL.

  • Problem with Image.createImage()

    Hi all!
    I'm writing a simple midlet just to display an image on the screen and I'm having some problems with Image.createImage()
    Here is my code
    Image bg_img;
    ImageItem imageItem1;
    imageItem1 = new ImageItem("", null,ImageItem.LAYOUT_DEFAULT, "");
    try{
    bg_img = Image.createImage("/image.png");
    imageItem1.setImage(bg_img);
    catch(java.io.IOException e){
    e.printStackTrace();
    I'm getting an exception on bg_img = Image.createImage("/image.png");
    I can't understand what is it...:(
    I know for sure that the problem is not "file not found"
    Any one can help me???

    If you are catching IOException, then u may have problem with ur image path. "image not found on the specified path." if ur image is not in the current directiry then put it into current directory. otherwise, If u are using resouce folder and it is already included into the resouce path, then put ur image in that folder..try this..
    Still not get, then please give some detail about ur development toolkit. and ur apllication packaging scheem. are you using ANT?
    Pranav

  • Problem with image gallery

    Hi to all.
    With ios 5.01 I have a little problem with image gallery. As you can see I have only 1 image, but there is always this **** message "download 0 of 46) (sorry, but I'm Italian )
    I've removed my icloud account from settings, but there is nothing to do, this message don't goes away. What I can do? Thanks in advance

    Hello,
    Just adding a gallery I want to do the same slideshow WoodWing's, but in InDesign, if anyone knows of?
    Thank you
    Link video slideshow WoodWing's: http://www.youtube.com/watch?v=Xt6gNaEZ0-M&feature=relmfu
    The first slideshow shown

  • Problems with image scaling

    I'm facing a real problem with image scaling
    I've used several algorithms but it all has defects but the most common thing is the out of memory error after several enlargments...
    does any one know a solution...
    note:
    I've used several packages to do so,but I'm looking for a solution from the jdk itself
    JAlexscorpio

    Did you take into account that the getScaledInstance() -method creates a completly new Image?
    So if you use it like in
    ImageIcon icon1=new ImageIcon("Blah.gif");
    ImageIcon icon2=new ImageIcon(icon1.getImage().getScaledInstance(400,400,SCALE_FAST);
    you will end up with 2 different Images which have their own data and memory requirements.
    even if you use something like
    ImageIcon icon1=new ImageIcon("Blah.gif");
    Image i=icon1.getImage();
    icon1.setImage(i.getScaledInstance(200,200,SCALE_FAST));
    You will need enough memory to store the data for the original image, as well as the data for the scaled
    version of the image, at least for the time that it take the JRE to create the scaled version. You never know when the garbage collector kicks in to delete you old data so it could be that this takes some time and until
    that moment your memory is not available. If your now doing several of the scaling operations, and there is no chance for the garbage collector to do its work, you will run out of memory.
    I hope that might help, if not feel free to post again

  • Problems with Image Variants

    I got two problems with Image Variants:
    1. catalogCache.GetImagePath("Images", id) doesn’t work for some id. The error message is “GetImageVariant error”.
    2. catalogCache.Preload("Images", “Original”)
        catalogCache.Preload("Images", “Thumbnails”)
        catalogCache.Preload("Images", null)
       catalogCache.Preload("Images", "")
    get failed, the status code is -2147483647
    Anyone know how to setup  image variants?
    Thanks.
    Forrest

    status code: -2147483647 is RC_BADPARAM.

  • Strange problem with the mail app on an iPad

    I've got a bit of a strange problem with the mail app on an iPad - it's sending and receiving mail ok but won't let you delete mail. If you keep at it, it appears as if you have deleted mail (though takes a very long time as you just have to keep deleting it over and over again) -  but the size of the app still keeps going up - reached 600mb so far, even though there is hardly any mail or attachments (goes up quite a lot each time you try to delete anything) - any idea what's causing this and how I can fix it?
    It occasionally comes up with a dialogue panel saying to check my account settings, but I have checked those and they are fine. The little 'loading' icon just keeps spinning constantly too.

    go to Settings > Mail > your account > Advanced > Move Discarded Messages Into 
    and make sure that Deleted Mailbox is ticked, and not Archive Mailbox
    You can also adjust how long the deleted mail stays in the trash immediately below that.
    If you are talking about a gmail account, you may also have to login to your account on the gmail server and update the settings there.  This is what Barney previously posted about that:

  • TS3960 same problem with mavericks server app....tried additional ino solution did not work..any suggestions?

    TS3960: Server App or Server Admin can't connect to a newly upgraded Lion server
    same problem with mavericks server app....tried additional info solution did not work..any suggestions?
    All log in info is correct. will not accept worked fine on 10.8 just upgraded to 10.9 and will not work. deleted and reinstalled server app 3.0.1

    Figured it out....went to server...settings...check allow remote administration using Server

  • Copy and Paste Problems with Images

    I'm having the strangest problems with images. I copy an image off of the web for one of my art history classes and I go to paste into another program but, whether it's Keynote, Powerpoint, Photoshop, or Graphic Converter, something always goes wrong: the images definitely lose some of their quality, become brighter in appearance, and get jagged on the edges. This is starting to drive me nuts, especially since it never happened in 10.4 on my iBook G4. Any suggestions?

    Make it an 8-bit file (Image menu > mode).

Maybe you are looking for

  • Problem with JSP and Java Servlet Web Application....

    Hi every body.... I av developed a web based application with java (jsp and Java Servlets).... that was working fine on Lane and Local Host.... But when i upload on internet with unix package my servlets and Java Beans are not working ..... also not

  • By seeing movement type can i know qty received or released

    hi   currently i am working on ER6 report , i am refering std. report T.Code MB5B like in that reoprt , <b>by seeing MOVEMENT TYPE can i come to know wether this material is relesed or received.</b>     Depending on that i have to filter data for fie

  • GWIA Relay Issue, maybe the SPAMmers authenticated...

    So I was greeted with a lovely issue this morning that is really driving me nuts. My mail system was relaying messages from [email protected] using a valid user on my system (MFouch). The IP address that was sending the messages appears to be in Lagos

  • Illustrator CS5 crashes on startup

    I re-installed my CS5 Illustrator, but it still crashes on startup. Before it crashes, there is an error window "The operation cannot complete because of an unknown error. [SExi]". I press OK and the software opens, but immediately crashes. The crash

  • Docking my hard drive and reading PC files on a Mac

    I just removed my PC hard drive and put it into a hard drive dock that connects to a PC via a USB plug.  I plugged it into a USB port on my new MacBook Pro.  I was surprised that the files seemed to be able to be read.  I thought that the formatting