Stripes across images!

Dear reader,
Recently I recognized a problem in Lightroom 4 (on my MacBook Pro, Early 2011 - newest version of OS X).
I went through my photos, when I suddenly realized stripes across them. They have definitely not been there before! And now the number of destroyed photos gets more all the time.
The issue is not just on my Mac. When I export photos and look at them at another Mac the stripes are still there.
Does anyone know what this might be or how to fix this.
Thanks in advance
Bernd
PS: An image with these stripes is attached.

This is most definitely a hardware problem. If the images were fine at a certain point in time, and the stripes appeared later, this would indicate a problem where your hard disk is going bad, or your computer memory is going bad. If the images had these issues on day 1, then it could be either of the previous or the camera card going bad or the card reader/USB cable and USB port going bad.

Similar Messages

  • Display a strip of images in a single keyPress?

    i am having a strip of images which contain 16 images .my problem is i jus want to show entire frames in a single keypress
    now i m getting each frame in a keypress
    ***********here is my code***************
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.game.*;
    public class ExampleGameCanvas extends GameCanvas implements Runnable
    private boolean isPlay; // Game Loop runs when isPlay is true
    private long delay=8; // To give thread consistency
    private int k;
    private int counter=0;
    private int xpos=50;
    private int ypos=60;
    private byte ROTATE_NONE = Sprite.TRANS_NONE;
    private byte ROTATE_90 = Sprite.TRANS_ROT90;
    private byte ROTATE_180= Sprite.TRANS_ROT180;
    private byte ROTATE_270= Sprite.TRANS_ROT270;          
    private byte CURRENT_ROTATE=ROTATE_NONE;
    private Image clwalk;
    private Image tilesImg,bottomboard,clownIdle;                     //Image varibale declaration-kris
    private int clwalkXstart;
    private int clnX=0;
    private int tileXPos = 0;
         private int tileYPos = 150;
         private byte tileWidth = 21;
         private byte tileHeight = 21;
         private int tileStartXPosition = 0;
         private int tileStartYPosition = 0;
         private int numberOfRows = 12;
         private int numberOfColumns = 11;
         private int tileStartY = 39;
    private boolean walk=false;
    private int count=0;
    private int p=0;
         private int sampleMap[][] = {
                   //1, 2, 3, 4, 5, 6, 7, 8, 9,10,11
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},                    //11x12
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
                   {-1,-1,-1,-1, 1,-1,-1,-1,-1,-1,-1},
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
                   {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},                //-1 for empty space
                   {0,0,0,0,0,0,0,0,0,0,0},
                   {0,0,0,0,0,0,0,0,0,0,0}                                   //0 for square tile
    private int current_Map[][] = new int[numberOfRows][numberOfColumns]; //this will store the current level
    // Constructor and initialization
    public ExampleGameCanvas()
    super(true);
    try
    tilesImg = Image.createImage("/tiles_240x320.png");
    bottomboard = Image.createImage("/bottomboard_240x320.png");
    clwalk = Image.createImage("/cl_walk_240x320.png");
    }catch(Exception ee){}
    // Automatically start thread for game loop
    public void start()
    isPlay = true;
    Thread t = new Thread(this);
    t.start();
    // Main Game Loop
    public void run()
    Graphics g = getGraphics();
    while (isPlay == true)
    input();
    drawMap(g);
    drawPlayer(g);
    try { Thread.sleep(delay); }
    catch (InterruptedException ie) {}
    // Method to Handle User Inputs
    private void input()
    int keyStates = getKeyStates();
    // Right
    if ((keyStates & RIGHT_PRESSED) !=0 )
    clwalkXstart +=26;
    if(clwalkXstart==416)
    clwalkXstart=0;
    clnX+=2;
    else if ((keyStates & LEFT_PRESSED) !=0 )
    walk=true;
    System.out.println("1111111111111111111111111111111111");
    clnX-=3;
    private void drawMap(Graphics g)
              System.out.println("jjjjjjjjjjjjjjjjjjjjjjj");
              System.out.println("oooooooooooooooooooo");
              g.setClip(0, 0, getWidth(), getHeight());
              g.drawImage(bottomboard, 0, getHeight()-bottomboard.getHeight(), 0);
    current_Map=sampleMap;     
              for(byte row = 0; row < numberOfRows; row++)
                   for(byte col =0; col < numberOfColumns; col++)
                        switch(current_Map[row][col])
                        case 0:                         
                             g.drawRegion(tilesImg, tileStartXPosition, tileStartYPosition, tileWidth, tileHeight, ROTATE_NONE, tileXPos,220, Graphics.TOP|Graphics.LEFT);
                             break;
                        if(tileXPos < 215)
                   tileXPos += tileWidth;
                   else
                   tileXPos = 5;
    if(row >= 11)
                        tileYPos = tileStartY;
                        else
    tileYPos += tileHeight;
              // repaint();
              // flushGraphics();
    private void drawPlayer(Graphics g)
    g.setColor(0xffffff);
    g.fillRect(0,0,getWidth(),179+clwalk.getHeight());
    g.drawRegion(clwalk,clwalkXstart, 0, 26, 41, ROTATE_NONE, clnX,180, Graphics.TOP|Graphics.LEFT);
    try {
    Thread.sleep(40);
    } catch (InterruptedException ex) {
    ex.printStackTrace();
    flushGraphics();
    repaint();
    }

    hi
    i solved the problem.now my problem is i have to move my player(actor) according to the map
    **********here is my code**************
    import java.io.IOException;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.Image;
    import javax.microedition.lcdui.game.GameCanvas;
    public class clsCanvas extends GameCanvas implements Runnable
    private boolean isRunning = true;
    private Graphics g;
    private midMain fParent;
    private Image clwalk;
    private int clwalkXstart;
    private int clnX=0;
    private boolean playerRunning = false;
    /*************FOR TILED MAP**************************/
    private Image tileMap,bottomboard;
    private int numberOfRows = 12;                                             //index of rows
    private int numberOfColumns = 11;                                        //index of cols
    private int tileStartXPosition= 0;
    private int tileStartYPosition= 0;
    private byte tileWidth = 21;
    private byte tileHeight = 21;
    private int tileXPos = 5;
    private int tileYPos = 0;
    private int tileStartY = 39;
    private int sampleMap[][] = {
              //1, 2, 3, 4, 5, 6, 7, 8, 9,10,11
              {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
              {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
              {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
              {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
              {-1,-1,-1,-1,-1, 0,-1,-1,-1,-1,-1},
              {-1,-1,-1,-1,-1, 0,-1,-1,-1,-1,-1},
              {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
              {-1,-1,-1,-1, 1, 0, 2,-1,-1,-1,-1},
              {-1,-1,-1, 1, 0, 0, 0, 2,-1,-1,-1},
              {-1,-1, 1, 0, 0, 0, 0, 0, 2,-1,-1},
              {-1, 1, 0, 0, 0, 0, 0, 0, 0, 2,-1},
              {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
    private int current_Map[][] = new int[numberOfRows][numberOfColumns]; //this will store the current level
    /***********MAP VARIABLES ENDS HERE*****************/
    public clsCanvas(midMain m) //constructor to initilization
    super(true);
    fParent=m;
    try {
    clwalk = Image.createImage("/cl_walk_240x320.png");
    tileMap = Image.createImage("/tiles_240x320.png");
    bottomboard = Image.createImage("/bottomboard_240x320.png");
    } catch (IOException ex) {
    ex.printStackTrace();
    public void start() //start game thread here
    Thread runner = new Thread(this);
    runner.start();
    public void run()
    {                                          //run method
    int iKey = 0;
    g = getGraphics();
    while(isRunning)
         drawMap(g);
    drawPlayer(g);
    iKey = getKeyStates();
    if ((iKey & GameCanvas.RIGHT_PRESSED) != 0) //keyPress_RIGHT
    playerRunning = true;
    System.out.println("right_key_pressed");
    if(playerRunning) {
    moveStrip();
    flushGraphics();
    try {
    Thread.sleep(30);
    } catch (Exception ex) { }
    }//while ends here
    g = null;
    fParent.destroyApp(false);
    fParent = null;
    }//run ends here
    private void drawMap(Graphics g)
         current_Map=sampleMap;
         g.setColor(0x000000);
    g.fillRect(0,0,getWidth(),getHeight());
         g.setClip(0, 0, getWidth(), getHeight());
              g.drawImage(bottomboard, 0, getHeight()-bottomboard.getHeight(), 0);
         for(byte row = 0; row < numberOfRows; row++)
                   for(byte col =0; col < numberOfColumns; col++)
                        switch(current_Map[row][col])
                        case 0:
                             g.drawRegion(tileMap, tileStartXPosition, tileStartYPosition, tileWidth, tileHeight, 0, tileXPos, tileYPos-55, Graphics.TOP|Graphics.LEFT);
                             System.out.println(tileYPos);
                             System.out.println("tileXpos-"+tileXPos);
                             break;
                        if(tileXPos < 215)
                             tileXPos += tileWidth;
                        else
                             tileXPos = 5;
                   if(row >= 11)
                        tileYPos = tileStartY;
                   else
                        tileYPos += tileHeight;
    private void drawPlayer(Graphics g) //drawPlayer() Method [called by run()]
    /* g.setColor(0x000000);
    g.fillRect(0,0,getWidth(),getHeight());*/
    g.drawRegion(clwalk,clwalkXstart, 0, 26, 41, 0, clnX,155, Graphics.TOP|Graphics.LEFT);
    try {
    Thread.sleep(40);
    } catch (InterruptedException ex) {
    ex.printStackTrace();
    }//DrawPlayer ends here
    private void moveStrip() //moveStrip() method [called by run()]
    clwalkXstart +=26; //clipX updating to 26
    if(clwalkXstart==390) {
    clwalkXstart=0;
    playerRunning = false;
    clnX +=2; //increasing the destinationX to 2
    }

  • The picture from my AppleTv on my Samsung LCD TV doesn't fill the entire screen.  It is only a strip across the screen

    The picture on the screen when viewing movies on Apple TV on a samsung lcd screen is only a strip across the screen and doesn't fill the entire screen.  Any settings suggestions?

    If you can get to the settings on the AppleTV attempt to adjust the resolution settings to something more appropriate.
    This may help
    https://www.apple.com/support/appletv/essentials/

  • I have 4 vertical stripes across the entire height of my monitor. Do I have to buy a new imac? e

    I have 4 vertical stripes across the entire height of my monitor, the stripes are there even before I log on. My 17" imac is 6 years old. Do I have to buy a new computer?

    Frequent problem on 2006 17" imac!
    Most of the time, it's a defective LCD panel.
    To validate if it is the LCD panel or the graphic card, you can take a screen shot (cmd+Shift+3) and see if the problem is visible on the screen shot.
    If it is not visible, then it's most likely the LCD panel.
    This can be confirmed by connecting an external display to your iMac.
    If it works well, then it's the LCD panel that is defective.
    Does it look like this?

  • Toolbar installed that has caused a blank strip across the top of my facebook page which i cannot click on

    I accidentally installed a toolbar i do not want. i think i successfully uninstalled it, but after it was installed, when i go into the facebook app, there is a strip across the top of the facebook page on which i cannot click on to . this strip includes my spot on which i click on to my wall or homepage in facebook. if i move the page down far enough, i can click on other things, but never can i get far enough down to click on these tabs. this only happens in firefox, which i prefer wayyy over google chrome for gaming. do i need to delete firefox and reinstall? please help!

    Recently, the Yahoo Toolbar and the Babylon extension have been reported to cause that problem. They seem to overlap invisibly over the top of the web page display. If you have either or both, uninstall or disable them/it, or see if an update is available that solves the problem.
    *See --> http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *See --> http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    *See --> http://kb.mozillazine.org/Uninstalling_toolbars
    If that does not solve the problem:
    *See --> [http://support.mozilla.org/en-US/kb/Troubleshooting+extensions+and+themes Troubleshooting extensions and themes]
    *See --> [http://support.mozilla.org/en-US/kb/Troubleshooting+plugins Troubleshooting plugins]
    *See --> [http://support.mozilla.org/en-US/kb/Basic+Troubleshooting Basic Troubleshooting]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *'''''Adobe Shockwave for Director Netscape plug-in''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Can images placed in a slideshow be zero spaced to appear as a rotating strip of images?

    I'd like to make a slideshow of images without spacing between the images to make a continuously rotating slideshow strip of images. Is that possible with Muse?

    Hi Kenneth,
    Use a basic slideshow with vertical transition. By default it has 0 spacing between the images.
    - Abhishek Maurya

  • Hi, in my asus memo pad hd 7 i have some problems whit the videos, they run but whit many stripes in image

    hi, in my asus memo pad hd 7 i have some problems whit the videos, they run but whit many stripes in image.
    what can a i do?
    the firefox is apdated.
    thank you

    Thank you for the update, the fix will be in the release version of Firefox on 2015-02-24.
    In the mean time if you want to continue using Firefox beta our Sync service may be helpful getting your Firefox release data into Firefox beta. https://support.mozilla.org/en-US/kb/how-do-i-set-up-firefox-sync

  • White infomation strips across the top

    White infomation strips across the top of the screen . . . I edited my clips in Final Cut . . . Made a Quick Time Movie and imported into iMovie to set the chapter markers for sharing with iDVD . . . Now when I play the clip the program inserts this white line at the top telling me where every Trasition, Cut . . . etc was made in FC and I can't find where to turn this line off so I can go to iDVD . . . Help!!!!!
    Shiner
    (Best Beer In Texas)

    Quit iMovie.
    Locate a file named com.apple.iMovie.plist and get rid of it. iMovie will create a new one the next time it runs. Empty the trash.
    The files are located here:
    -->/Users/YourName**/Library/Preferences/com.apple.iMovie.plist
    Then do the same for Quicktime:
    Quit QuickTime.
    Locate a file named com.apple.quicktime.plist and get rid of it. QuickTime will create a new one the next time it runs. Empty the trash
    The files are located here:
    -->/Users/YourName**/Library/Preferences/com.apple.QuickTime.plist
    Once that is done, (and this is most important) run a permissions repair from the Disk Utility folder. The re-boot.
    Sue

  • Gray stripe across screen

    I have an Ipad 3.  I bought this 2-3years ago and this was working great until yesterday.  All of the sudden, I noticed a flickering gray/white strip across the screen.  It did not go away despite turning off the Ipad and restarting and resetting. 
    Is this a hardware issue and shoudl I take this to my local Apple store or is there something else I can try.
    Thanks.

    Sounds like a hardware issue which can not be corrected by anything other than a trip to the store for a replacement.

  • Black spot and white stripe across screen

    Okay well it's my brothers ipod, and I have no idea what the heck he did to it. But he left it on his dresser and woke up with the black spot and white stripe across the screen. After reading one of the posts, is it possibily moisture or water? But I have no idea how the black blotch thingy got there. Any ideas on what it is? And how I can fix it?

    Hi,
    Is this the link you are looking for?
    http://www.apple.com/support/ipod/service/
    Regards,
    Colin R.

  • My MacBook Pro has been having difficulties at startup.  It sometimes locks and doesn't get past the white screen.  It has also locked up several times and gotten a green stripes across the entire screen.  What is causing this and how do I fix it?

    My MacBook Pro has been having difficulties at startup.  It sometimes locks and doesn't get past the white screen.  It has also locked up several times and gotten a green stripes across the entire screen.  What is causing this and how do I fix it?

    You don't, take it to Apple for repair.
    This might interest you if it's too old to fix.
    My computer is not working, is my personal data lost?

  • Pink stripes across bottom of image in LR4

    I have had pink stripes occur on four different downloads on LR4.  I have been an Aperture user for several years and was making the switch to LR4 but growing concerned with this issue and need to know what is causing it before I continue down this path.  I have never had this occur before in Aperture.  My hard drive is relatively new, my memory and storage is fine.  I did switch to a different card reader to see if it would help.

    When I view them in LR4 they have the stripes, but when I save them on my hard drive, the stripes are gone. very strange and very disturbing because I cannot do my any corrections on them in LR4.   Attached are photos of my computer screen when LR4 is open and you can see the stripes.  Not a great photo but it shows what is happening.  I have no idea why it rotated upside down either!

  • MacBook Pro only boots in safe mode with pink vertical stripes across screen.

    So on Friday night I was using Chrome on my MacBook Pro, when all of a sudden little squares of light flashed randomly across the whole screen and everything but the mouse froze. I thought that was weird, so after a few minutes I forced my computer to shutdown. I waited a little and then turned it back on, and opened Chrome again. The same thing happened again, so I forced shut down, backed up Time Machine and ran a virus scan. Nothing came up, so I put it to sleep and and went to bed.  Then Saturday morning I went to open my laptop and it was off, which was weird, so I went to turn it on. After the apple logo and spinning gear went away, it booted to a light blue screen and stayed there. Again I waited and nothing happened, so I held the power button down until it turned off. I tried again but the same thing happened, so I booted in Safe Mode.
    This time there were inch long vertical bars of horizontal lines, kind of confusing but here are two pictures I took of the screen that hopefully help. http://imgur.com/oj2WbZL and http://imgur.com/O1hwJ1B . When it finally loaded I had another issue, I had 6 pink vertical bars across the screen and a box of pink horizontal stripes around my pointer, http://imgur.com/BJBzu74 . I performed an extended Apple Hardware Test and after 17 minutes it found no issues, and as it performed the test the lines got whiter and made the screen harder to see http://imgur.com/XahBD3s .
    I got my laptop June 2011, so it's not that old. I just want to know what this problem could be. I don't know if it's the connection from the screen to the computer, the hard drive, the logic board or something else. I'm really worried that it's something major, so any help is greatly appreciated.
    Thank you in advance!

    This is a GPU problem. It's normal that you see that the problem is random, but the fact that your Mac is only starting up in safe mode indicates that your Mac can only start up if the VGA driver is used. Moreover, if you open Console, you should start seeing "GPU Debug Info Start", which indicates a GPU failure.
    As you have a backup, take the MacBook to an Apple Store or reseller. In the case of the MacBook Pro, the GPU is soldered onto the logic board, so the whole logic board has to be replaced, being a very expensive repair.
    If a post solved your question or helped you, mark it as solved or helpful before posting a reply. Doing this, you will avoid that your own post is marked as solved or helpful. You won’t receive any point if you mark your own post as solved or helpful. Also, you won’t be rewarding the user who solved your question and you will help other users find the answer if you mark the correct reply

  • Horizontal line across image

    Can anyone help me get rid of the horizontal line that runs all the way across the middle of the image from the camera. I have just installed a Live Pro and the line is on both a still image and a video image. I have updated the drivers from the website but I still have the line. Running on Windows XP

    <IMG alt=3265.jpg src="http://64.4.56.250/cgi-bin/getmsg/3265.jpg?&msg=960760B6-5AD-4B7D-BA6F-0CDDEEBC728&start=0&len=34486&mimepart=3&curmbox=0 0000000-0000-0000-0000-00000000000&b=650de2d4270bd3808d0b385fdbfc6&disk=0 ..06.203_d275&login=mdurbin47&domain=hotmail%2ecom &hm___sig=23a97f7a0c5d80e93b676fc8a98de287ab57c7c5 6805">
    The line is visible through the "NO SCHOOL" squares.

  • Print with Adobe PDF printer driver from Word: Stripes in images

    Hello,
    I use Acrobat 8 Professional (Version 8.1.3) on Windows XP SP3 (german version). I'd like to create a PDF out of a Word document by printing with the "Adobe PDF" printer driver. I have a problem with an image containing large unicolored areas: In the PDF there are recognizeable stripes in the colors of the image. This is when viewing the PDF with Acrobat 8 Professiona, when importing a page containung such an image into Photoshop, and when printing such an image.
    The image is an RGB TIF, but I tried it with a CMYK TIF as well as with an RGB BMP. The reault - when printed out of Word - is the same. If I print the same image to a PDF from InDesign, then everything is fine, no stripes.
    Does anybody know how to optimize this?
    Best regards,
    Christian

    Sorry, I should have mentioned this, of course. Well the document is a DOC (because it was prepared by co-workers with Word 2003). I use Word 2007, when I opened the DOC Word switched to "compatability mode" (not sure about the exact English term, I work with German versions). But even when saving the document under a new name, I kept it as a DOC, so my co-workers would be able to open it again at their computers with Word 2003.
    My Acrobat is already version 8.1.6 and because I always install Windows Updates that the automatic update service offers, I guess my Word 2007 is also up to date.
    But sure, if I can be of any other help, let me know...
    Best regards,
    Christian

Maybe you are looking for

  • HP LaserJet Pro MFP M435 – Help

    HP LaserJet Pro MFP M435 how to setup my prenter . eprinting email addres pls help me

  • Goods Receipt PO (Service Type) for generate accruals

    Hi, Just wonder that Service type of Goods Receipt PO possible write to the G/L or not? for item type of Goods Receipt PO, it can generated accruals. I want to generate accruals by Goods Receipt PO., else how am i going to generate accruals? Thanks.

  • How to download data from spool to excel file

    Hi, I have requirement like....i need to download data from spool to excel file. Please let me know the process how to download... <removed by moderator> <removed by moderator> Thanks, Khasimsa Moderator message: please (re)search yourself before ask

  • How can I print a page?

    Hi How can I print a page in Firefox for Android? (Edited) ToddeSwe

  • Why does Home Sharing require an active internet connection?

    I have noticed when my internet goes down I have real difficulty streaming content to my Apple TV from my iMac. I can see it but I get stuck on the spinning clock. Some audio works OK but video not. This makes no sense. I shouldn't need any internet