Strange, red, pixelated images

Hi,
I recently purchased Lightroom 5 and I've been really enjoying it so far.
One issue I've found however is that occasionally Lightroom creates a weird, red pixelated effect on edited images in library module.  I've posted a develop view, and library (loupe) view example below.  It tends to occur on under exposed images that I've used noise reduction on.  Sometimes, this persists in develop module too.
Develop module: http://i.imgur.com/G7hROKv.jpg
Library module: http://i.imgur.com/nSmp72T.png
Any ideas about what is causing this or how to fix it?
FYI, it exports fine.
Thanks!
M

Frank,
Actually, they were all similar enough to be able to crop, lift and stamp, so the viewable versions are all in working order. Problem solved. At this point, I'm just seeing if there are any other answers as far as fixing the Masters? I do not have any known backups of the originals before they were corrupted. The only thing that comes to my mind is to export all of the cropped versions and then to reimport them as Masters, but I really don't know what I would be doing. I mean, I know how to do that, but don't know if doing it somehow diminishes the image quality. The strange thing is, when I export the version, it is almost 4 times the size in MB of the Master (after exporting the Master). I don't fully understand image size as it relates to image quality, but I was always under the impression that the larger the file size, the more data stored and the higher the quality of the image. Therefore, a 5MB JPEG is of higher quality than a 2.3MB JPEG for example. Since the originals were JPEGS, I would assume that by exporting versions of the Master, I would be compressing an already compressed image? I don't really know, so I am not going to do anything about this unless someone can shed some clear light on what it all means, and what the ramifications of these types of actions would be.
Mac

Similar Messages

  • Looking for the brighter red pixel of an image

    Hi, I need to find the brighter red pixel of an image. I tried this code, but the value of each pixel seemed to be the same (zero).
    public static void findBrighterRedPoint(Image i, ImageObserver o){
         int redMax = 0; //0 to 255
         int xMax = 0;
         int yMax = 0;
         PixelGrabber pg = new PixelGrabber(i,0,0,i.getWidth(o),i.getHeight(o),true);
         ColorModel cm = pg.getColorModel();
         for(int a=0;a<pg.getHeight();a++){
              for(int c=0;c<pg.getWidth();c++){
                   if(cm.getRed(((a-1)*pg.getWidth()+c)) > redMax){
                        redMax = cm.getRed(((a-1)*pg.getWidth()+c));
                        xMax=c;
                        yMax=a;
                   if(f==(pg.getHeight()-1) && c==(pg.getWidth()-1)){
                   System.out.println("Red bound max value: "+cm.getRed(((a-1)*pg.getWidth()+c))+" Arrow: "+a+" Collumn: "+c);
    }//method endThanks for some help...
    Edited by: juanma268 on Jul 25, 2008 5:45 PM

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class LookingForRed extends MouseMotionAdapter {
        JLabel red, green, blue;
        BufferedImage image;
        public void mouseMoved(MouseEvent e) {
            Point p = e.getPoint();
            int rgb = image.getRGB(p.x, p.y);
            red.setText(String.valueOf(  (rgb >> 16)&0xff));
            green.setText(String.valueOf((rgb >>  8)&0xff));
            blue.setText(String.valueOf( (rgb >>  0)&0xff));
        public static void findBrighterRedPoint(Image i, ImageObserver o){
            int redMax = 0; //0 to 255
            int xMax = 0;
            int yMax = 0;
            int w = i.getWidth(o);
            int h = i.getHeight(o);
            int[] pixels = new int[w*h];
            PixelGrabber pg = new PixelGrabber(i,0,0,w,h,pixels,0,w);
            try {
                pg.grabPixels();
            } catch(InterruptedException e) {
                System.out.println("interrupt");
            ColorModel cm = pg.getColorModel();
            for(int a=0;a<pg.getHeight();a++){
                for(int c=0;c<pg.getWidth();c++){
                    int index = a*pg.getWidth()+c;
                    int pixel = pixels[index];
                    if(cm.getRed(pixel) > redMax){
                        redMax = cm.getRed(pixel);
                        xMax=c;
                        yMax=a;
                    if(a==(pg.getHeight()-1) && c==(pg.getWidth()-1)){
                        System.out.println("Red bound max value: "+redMax+
                                   " Arrow: "+yMax+" Collumn: "+xMax);
        private void showGUI(BufferedImage image) {
            this.image = image;
            ImageIcon icon = new ImageIcon(image);
            JLabel label = new JLabel(icon, JLabel.CENTER);
            label.addMouseMotionListener(this);
            JPanel panel = new JPanel(new GridBagLayout());
            panel.add(label, new GridBagConstraints());
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(panel);
            f.add(getLabelPanel(), "Last");
            f.setSize(300,300);
            f.setLocation(200,200);
            f.setVisible(true);
            findBrighterRedPoint(image, label);
        private JPanel getLabelPanel() {
            red = new JLabel();
            green = new JLabel();
            blue = new JLabel();
            Dimension d = new Dimension(45, 25);
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(2,2,2,2);
            gbc.weightx = 1.0;
            addComponents("r =", red,   panel, gbc, d);
            addComponents("g =", green, panel, gbc, d);
            addComponents("b =", blue,  panel, gbc, d);
            return panel;
        private void addComponents(String s, JLabel jl, Container c,
                                   GridBagConstraints gbc, Dimension d) {
            gbc.anchor = GridBagConstraints.EAST;
            c.add(new JLabel(s), gbc);
            jl.setPreferredSize(d);
            gbc.anchor = GridBagConstraints.WEST;
            c.add(jl, gbc);
        public static void main(String[] args) {
            LookingForRed test = new LookingForRed();
            BufferedImage image = test.makeImage();
            test.showGUI(image);
        private BufferedImage makeImage() {
            int w = 200, h = 200;
            int type = BufferedImage.TYPE_INT_RGB;
            BufferedImage image = new BufferedImage(w, h, type);
            int[] data = new int[w*h];
            int x = 3*w/4;
            int y = 3*h/4;
            System.out.println("Max red value should appear at " +
                               "x = " + x + "  y = " + y);
            int a = 255;
            for(int j = 0; j < h; j++) {
                int b = j*255/(h-1);
                for(int k = 0; k < w; k++) {
                    int r = (j == y && k == x) ? 255 : 127;
                    int g = k*255/(w-1);
                    data[j*w + k] = ((a & 0xff) << 24) |
                                    ((r & 0xff) << 16) |
                                    ((g & 0xff) <<  8) |
                                    ((b & 0xff) <<  0);
            image.setRGB(0,0,w,h,data,0,w);
            return image;
    }

  • I get red pixels in the dark areas when converting duotone images to RGB

    Hi, I have been using Duotone with my photos, but since the other day, everytime that I process a photo this way, when I convert then back to RGB mode, the dark (black) areas of the photo become a kind of bitmap of red pixels. I have tried with many different photos from RAW or JPEG files and I get the same result with all of them. This is an example of the issue. The original is on the left.
    What may cause this? The photo looks good in duo tone. It is when converting to RGB when the corruption happens.
    Thanks

    Not following you:  why are you converting from Duotone back to RGB?

  • Strange RED HIGHLIGHTS appears in my print documents

    Strange RED HIGHLIGHTS appears in my print documents, but in the preview dont been showed, whats happens.
    OS: Windows XP
    Acrobat Reader Version: 8.1
    Printer: HP2605dn
    Ram: 512 mb
    Processor: 1.4 Ghz P4

    Eliezer...go to the Print dialog box and click on the Advanced button on the bottom left of the dialog. When the Advanced window comes up go to the lower left corner and put a check in the Print As Image box. Then click OK and then try printing. This is a print driver issue and hopefully checking the Print as Image box will let you print without the red highlights. Good Luck!

  • Strange black pixels appearing in photoshop but not in bridge, help?

    First Photo is viewed in Adobe Bridge (Print Screen Image)
    Second Photo is viewed in Photoshop (Print Screen Image)
    Third Photo is saved as JPEG in Photoshop (Print Screen Image) - Notice no strange black pixels
    Sorry there's no consistency in crop but why am I seeing these strange black pixels and why do they disappear when saved as jpeg  or same photo viewed in different viewing software? Please help.
    Thanks in advance for all your time and understanding.

    A bug in AMD/ATI graphics driver. Update to Catalyst 13.2 beta 5. See thread:  Black pixels on certain colours

  • Red Pixels in Black Areas

    I just purchased my MBP last week, and so far things have been pretty good. Just one minor issue that I can't seem to figure out; at times when I am viewing black areas, they have a bunch of little red pixels inside them. It's not that the pixels get stuck, I can scroll the images and the red pixels stay in the same area of the picture.
    Has anyone else had a similar situation or a solution?
    http://h.imagehost.org/0620/Screenshot_2010-08-04_at_12_10_52AM.png

    When I look at it, there are little red pixels all over cat's paw. I will have to actually take a picture of my screen with a camera. The red areas sometimes flicker, but it's never a big botch of red, just a lot of nearby pixels. It is not the image, I can see the image clearly on my PC, on here there are red pixels on it.
    I will take a photo and post it ASAP.
    Message was edited by: kk2438

  • Disturbing red pixel mosaic in dark areas.

    In PowerMac G4 MDD with ATI radeon 9800, the LCD display shows red or blue pixels in a places which should be dark.
    If there should be black in the video, in the screen, there is some kind of cubical fractal pattern of red pixels in opacity of 15 %.
    Like this:
    http://koti.welho.com/tsuonio1/LCD-DISPLAY-PROBLM.jpg
    When the same displays is connected to old B&W G3 black shows out black, and if the display is connected to be a PowerBooks external display, the image is fine.
    So my suppose is that the problem is in graphic card...
    ...any idea what might be the problem and how to fix it?
    Message was edited by: TRST

    I have very similar issues with red and green pixels, dots and lines that seem to halo any change from light to darker areas of the screen, often fringing those gradations. It is especially bad in any movie that I play. I have a PMG4 dual 1.25Ghz with an upgraded ati radeon 9600 pc & mac edition card running a dell 30" lcd. I've done all the usual suggested, but I am seeing this online as a widespread ati/30" phenomenon as well on ACD 30" and Dells both. About every report I've seen about this is about an ATI card. The only "cure" is to reduce colors to thousands which I don't like and won't allow me to run iPhoto slideshows etc.
    I hope someone has an answer, I have a few days before returning these two items and coming up with a new solution.
    JoeL

  • Line of red pixels

    I got a MacBook Pro 15" less than a month ago and today a streak of red pixels appeared in the middle of the screen. Anyone else has had this problem on the new Mac? I have an appointment for next Monday at the Genius Bar, I would like to have some feedback, perhaps is a defectous line of screens?
    Cheers
    PS

    I sent it in for repair once already. I don't remember what they did; something with software. Nothing huge, because when I got it back my invisibleSHIELD case was still completely intact. I guess I should just send it in again? Think they'll just give me a new one?

  • Is there a dark-red pixel in the middle of my ipad 2 screen, Apple Staff ignored it with rude manner.

    Is there a dark-red pixel in the middle of my ipad 2 screen, I 've just it for 6 days. After that I went the store (Thailand) to turn it, they told me that it's a dead pixel and Apple won't replace it to the new one - there must be more than 3 to claim.  How can I do?
    The store guy told me I should go Apple Service Center. The Center's staff kept my ipad and told that replacement depends on Regional office at Singapore.
    She also blame me that "Why don't you look for dead pixel before you brought?"
    What !!! Dead Pixel is the fault of Apple Factory, but she said like I'm so stupid to brought a dead-pixel ipad.
    "If you want me to do something on your case call to Singapore by yourself" she said.
    After I called to Singapore, I found myself the staff there treated me so bad and confuse.
    1. The first guy at Singapore said  "Because you 've just brought it for 6 week you can choose between replacement or refund, but leave me your numbers we will call you back."
    2. Shortly, a rude guy called me - said to me about Bright and Dead Pixel - then said "It's not our authority to replace ipad for you, you paid your money for our dealer (Store in Thailand), so you must ask for resposibility from them. "
    What !!!!! He treated me like I'm not a customer. Store and Care Center in Thailand told me it ups to Singapore, but Singapore told me not.
    Who lied? However, I'm still Apple Customer. Whatever country I brought it, I paid for Apple product. Where are thier responsibilities?
    I hope, Apple U.S. is my last resort.
    Yuttasak Konboon (Thailand)
    64 GB 3G

    Given that you can return/exchange it for any reason within the 14-day window after you bought it, you shouldn't have any problems.
    Do you live near an Apple retail store? That may be your best bet. It certainly worked for me: I ordered mine online and when I noticed an air bubble embedded in the glass, I brought it to my local Apple Store and 15 minutes later walked out with a replacement. No fuss whatsoever.

  • Graphics2D.scale() producing pixelated images from vectors

    I have a set of JPanels that I am using in my game to display the interface. Each one overrides paintComponent() and draws itself using Java2D. That all works great -- you can zoom in, move around, etc. and it all looks very nice and uses affine transformations.
    I'm trying to produce very high resolution images from this interface (for use on a poster) and using scale() is creating pixelated images rather than nice, high res images of the vector data.
    My code works as follows:
    1.) Create an instance of the interface using some saved game state data.
    2.) Create a Graphics2D object from a BufferedImage object.
    3.) Scale the Graphics2D object so that the interface will fill the entire image (in my test cases, the interface is running at 800x600 normally, and the resulting image is going to be 3200x1600, so a 4x scale).
    4.) Call the interface's paint method on the Graphics2D object. Note that all of the paint methods are using calls to fill... and draw...; nothing is getting rasterized in my code.
    5.) Write out the image object to a file (PNG).
    A sample of the output is here:
    http://i176.photobucket.com/albums/w174/toupsz/ScreenShot2007-04-24_11-45-35_-0500.png
    The white circle in the upper left hand corner is drawn in between steps 4 and 5. It actually looks correct.
    Is there something I'm doing wrong? Is it a deficiency in Java itself? Is there some way to fix it?
    Any help would be most appreciated!
    Thanks!
    -Zach
    Message was edited by:
    aaasdf

    Try setting a few hints on your Graphics2D:
    g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC);
    g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);

  • IPhone 6 Pixelated images on instagram, pinterest and the icons on the app store

    Hi!!! I have an iPhone 6, 64GB capacity. All the iOS updates are the latest ones. I'm getting pixelated images on instagram, pinterest and even the icons on the app store, I have tried to turn it of and off but it doesn't seems to work... any idea??.

    Hi alex_h1!!!
    i'm posting some of the images that are pixelated, I haven't  noticed but that includes safari too... Here are some screenshots! I thought maybe it was the internet speed but the same thing happens even on wi-fi .
    Thanks!!!

  • IPhone 5 pixelated images in various apps problem- occurred within last 2 months and must be a result of apple network driver update

    iPhone 5 pixelated images in various apps problem- occurred within last 2 months and must be a result of apple network driver update
    What's the fix?
    Tried reset, restart, reboot, reopen of apps same problem

    What do you mean by reboot? Do you mean restore? Because if you haven't restored, then that's the next step. You'll need a computer with the latest version of iTunes and a USB connector.
    For Mac:
    http://support.apple.com/kb/PH12124
    For PC:
    http://support.apple.com/kb/PH12324

  • Pixelated images while playing back a video shot on my iPhone4s

    Shot a video of my kid playing soccer and when watching on playback mode on either iphoto or imovie it comes out all pixelated images...

    The size of the hard drive that the OS resides upon is not of concern as long as it has enough space for you operating system, the applications and a swap file.
    The reason you NEED to keep you media files on a second drive is that it is TOO MUCH to ask of one drive to deal with all the system level read/writes AND to also seek, find and play all your audio AND video AND renders AND graphics and who knows what else you've got going.
    to get the best possible playback.
    1. Run Diskwarrior and Disk Utilities to make sure the files/directories are clean.
    2 Disconect the system from any network.
    3. Turn off any screen, power, disk power savers
    4.Make the file self-contained
    5. Have ONLY the external drive that the media resides upon connected through the firewire bus.
    6.Shut down and reboot the machine before you start.
    7. Pray.
    Cheers,
    x

  • Pixelated images in safari, please help.

    Hi everyone,
    Hoping someone can help me with a issue i have with my new macbook pro.
    When browsing the net, safari and firefox show really pixelated images. I thought it might be my internet connection compressing data or something, but i have tried other computers on the same internet connection and the images show perfect...
    So this makes me think its the macbook. I have upgraded snow leopard from 10.6 to 10.6.2 and updated safari, but unfortunately this didnt help my problem. So now i have ended up here, asking you people, coz im out of ideas.
    I will include some screen shots so you can see exactly what i mean.
    Notice the bad quality images and even on google's banner it is pixelated heaps...
    Please help if you can. Its very annoying. Cheers.
    screenshots
    http://i134.photobucket.com/albums/q93/Bonustokin/randon/Screenshot2010-02-13at1 00814PM.png
    http://i134.photobucket.com/albums/q93/Bonustokin/randon/Screenshot2010-02-13at1 00814PM.png

    Yes, I see the big ugly squares. They are what appears whenever extremely heavy JPEG compression is applied to a low-resolution image tht has relatively large areas of similar colors. Something somewhere is applying such compression to the pages, or portions of them, that you are viewing in your browser(s). Your MBP is not doing that: it can't. Either the page images (or parts of them) are being compressed by the website owners or, if every web page is affected, they are being compressed by your ISP in the process of being transmitted to you, as Gordito suggests. That would greatly increase the speed of page loading, but at the expense of image quality. You wouldn't see the image degradation on an iPhone or cell phone — the screen is too small — but on the MBP's high-resolution display it would be much more apparent, IF the MBP were receiving the signal in the same highly compressed form as the phone. If the MBP receives the same web pages through an ISP that doesn't over-compress them, they'll look the way they ought to look. So if you are receiving these web pages through a cellular ISP rather than through a broadband connection, take the MBP to a wifi hotspot and connect through wifi instead. I bet things will look different then.
    Compressing images is something a web browser can't do: a browser just displays the signal that comes to it.

  • Strange red boxes!

    Strange red boxes appear around my ap icons on safari and firefox when looking at iCloud and also in some aps like iPhoto. It does not appear in Chrome...
    Can anyone help?

    I see you have damaged both your hardrive(hardware) and your operating sytem (corrupted too, software)
    You may want to run an diagonstic test of your hard drive complete before trying to reinstall windows.
    Press ESC right after power button and repeatdley and look for Diagnostic test and start up test and hard drive test.
    Please report results.
    Sorry because of different timezone I might not be able to help/reply you right away.IF that happens I deeply apologize!
    **Click the White thumb if you like the answer.**
    **Please mark Accept As Solution if it solves your problem and only solves your problem, if you have any more questions please ask, this also helps others to solve related issues.**
    Feel yourself like home here, we are all happy to help, if you have an question reply or start a topic or pm me or an expert.

Maybe you are looking for

  • Macbook or iPhone does not see the internet on the Airport Extreme

    This morning I found my Macbook could not connect to the internet, no matter what I tried. I reset the cable modem. All lights are green. I reset Airport Extreme. The light is green. I connected my Macbook directly to the Airport Extreme: the diagnos

  • How to format and display xml file as displayed in IE

    I want to display the xml file as it is displayed in Internet Explorer. Which component I should use and how? Thanks in advance Sachin

  • Can't burn pictures to dvd

    I keep getting error messages when I attempt to burn pictures to a DVD-R.   I have seen communications errors and also "laser not aligned"

  • Download BPS Plan data to Excel

    Hello everyone, I am wondering if BPS plan data can be downloaded to an excel format and then upload to BCS?   We are currently using an R/3-based BCS and wants to feed the plan data from BPS to BCS.   I know that BCS will take excel formatted data l

  • Codebase in applet tag

    hi Here is my html file <html> <body> <applet codebase = "Coorclasses/" code = "CoordinateConverterApplet.class" archive = "FITSWCS.jar" width=380 height=400></applet> </body> </html> It works fine.In the above case my ".class" file (CoordinateConver