Small blue wavy lines on pictures taken with the iPhone

These blue wavy lines appeared when I take pictures with my front & rear in front of the camera of the iPhone 6. They have always been there and there doesn't seem to be any damage to one of the glasses. I know that they are small but are easily noticeable especially when zoomed in. How they are caused? apple can fix it? I have found no issue similar to this on the web.

Try to take a screenshot , while in the camera.  If the blue lines appear then its either something on or under your goal. You can try to clean it up, but if not, you will need to consider in or contact Apple for service.

Tags: iPhone

Similar Questions

  • I downloaded Adobe camera raw 8.4 so that I can open raw files with pictures taken with the camera Sony a6000.  However, it does not open images in camera raw.  What can I do?

    I downloaded Adobe camera raw 8.4 so that I can open raw files with pictures taken with the camera Sony a6000.  However, it does not open images in camera raw.  What can I do?

    I suggest you please update Camera Raw 9.1.1: Camera Raw of Adobe Photoshop CC and CS6 Installer

    Once done, launch Photoshop and click Help > about plug-in > Camera Raw.

    And check the version of Camera Raw, you see there, it should be the most recent.

  • Photos of ICloud loading only photos taken with the Iphone.

    Apple TV 3rd generation, does not load pictures that have been uploaded to Icloud Photos on PC.  They appear on all my other Ios devices, iPad 2 and Iphone. Have signed in and out of the Icloud several times, enabled and disabled photostream and photos of Icloud.  Only 12 recent photos taken on the Iphone appear.

    If you go to www.icloud.com are the pictures that you don't see on the appletv shown here?

    If they are not the ones you perhaps confusing iCloud photos and the watch on the computer

  • Link to pictures taken with the camera.

    Hello

    I am currently working with the Simulator and took a picture with the camera I want to display in the widget or even better access to try to send it to a web service.

    If I do the following Java script:

    var path = "file:///store/home/user/pictures/IMG00042-20110121-1222.jpg";

    Alert (BlackBerry.IO.file.Exists (Path));

    Result is an alert reading 'real' I expect so he can certainly see the file at this location. However when I try and set a value SRC tags local image for the above path I just get a broken showing image. If I try to read the file using:

    blackberry.io.file.readFile (path, handleOpenedFile);

    If you are wanting to use the image in a tag you will have to the white list of the original file in your config.xml file:

    
    
  • Picture taken with the camera...

    Hi all

    I am currently facing a lot of problems to use the camera. After days and days of trying to change/adapt my code, you are my last hope...

    What I want to do is:

    1. Departure from camera
    2. The take a snapshot
    3. Resizing in my application
    4. Store in the FET (don't cause me problems)

    Here is part of my code:

    1. Beginning camera & look the file system
        public CameraBlackBerry() {
    //            invoking camera
            UiApplication.getApplication().addFileSystemJournalListener(this);
            Invoke.invokeApplication(Invoke.APP_TYPE_CAMERA, new CameraArguments());
        }
    

    2 get path to the new image and transfer to another class

        public void fileJournalChanged() {
            AIDOO.debug(">>>>>>>> FS MODIFIED !!!");
            Application app = UiApplication.getApplication();
            app.removeFileSystemJournalListener(this);
            long USN = FileSystemJournal.getNextUSN();
            for (long i = USN - 1; i >= 0; i--) {
                System.out.println(">>>>>>>> FS MODIFIED !!! : " + i);
                FileSystemJournalEntry entry = FileSystemJournal.getEntry(i);
                if (entry.getEvent() == FileSystemJournalEntry.FILE_ADDED) {
                    path = entry.getPath();
                    if (path.endsWith(".jpg")) {// Try to kill camera app here by injecting esc. HAD to remove condition '&& path.indexOf("IMG") >= 0' because changed in OS6
                        //#ifdef DebugMode
                        AIDOO.debug(">>>>>>>> Found a file added ending with jpg @  :" + path);
                        //#endif
                        // Get out of camera app
                        EventInjector.KeyEvent inject = new EventInjector.KeyEvent(EventInjector.KeyEvent.KEY_DOWN, Characters.ESCAPE, 0);
                        inject.post();
                        inject.post();
                        app.requestForeground();
                        AIDOO.currentCameraBlackBerry = null;
                        new CameraBlackBerryFileHandler(path);
                        break;
                    }
                }
                if (entry == null) {
                    // we didn't find an entry.
                    break;
                }
            }
        }
    

    3. how to get a FileConnection

        private FileConnection openFile() {
            try {
                FileConnection file = (FileConnection) Connector.open("file://" + path);
                if (file != null) {
                    boolean fileExists = file.exists();
                    int existCount = 0;
                    while (!fileExists && existCount < 50) {
                        AIDOO.debug("fileExists sleeping for 100 msecond");
                        Thread.sleep(100);
                        fileExists = file.exists();
                        existCount++;
                    }
                    if (existCount < 50 && fileExists) {
                        return file;
                    } else {
                        return null;
                    }
                } else {
                    return null;
                }
            } catch (InterruptedException ex) {
                alerta = new Alert(Lng.getString(Lng.a_alert), "InterruptedException while opening picture connection : " + ex.getMessage() + "  " + ex.getClass() + " path :" + path, null, null);
                AIDOO.handleError("Exception while opening picture connection", ex);
                return null;
            } catch (IllegalArgumentException ex) {
                alerta = new Alert(Lng.getString(Lng.a_alert), "IllegalArgumentException while opening picture connection : " + ex.getMessage() + "  " + ex.getClass() + " path :" + path, null, null);
                AIDOO.handleError("Exception while opening picture connection", ex);
                return null;
            } catch (ConnectionNotFoundException ex) {
                alerta = new Alert(Lng.getString(Lng.a_alert), "ConnectionNotFoundException while opening picture connection : " + ex.getMessage() + "  " + ex.getClass() + " path :" + path, null, null);
                AIDOO.handleError("Exception while opening picture connection", ex);
                return null;
            } catch (IOException ex) {
                alerta = new Alert(Lng.getString(Lng.a_alert), "IOException while opening picture connection : " + ex.getMessage() + "  " + ex.getClass() + " path :" + path, null, null);
                AIDOO.handleError("Exception while opening picture connection", ex);
                return null;
            }
        }
    

    4 getting the stream

        private DataInputStream tryAccessingImage(FileConnection file) {
            DataInputStream is = null;
            nbBytes = 0;
            try {
                is = file.openDataInputStream();
            } catch (IOException ex) {
                return null;
            }
            if (is != null && file.canRead()) {
                try {
                    nbBytes = file.fileSize();
                    isAvailNbBytes = is.available();
                    int unreadableCount = 0;
                    while (nbBytes <= 0 && unreadableCount < 50) {
                        AIDOO.debug("fileSize problem, sleeping for 100 msecond");
                        Thread.sleep(100);
                        nbBytes = file.fileSize();
                        unreadableCount++;
                    }
                    if (unreadableCount < 50) {
                        return is;
                    } else {
                        return null;
                    }
                } catch (InterruptedException ex) {
                    String problem = Lng.getString(Lng.pic_couldnt_be_stored) + "(2) " + ex.getMessage() + "/ InterruptedException can read file : " + file.canRead() + " " + nbBytes + "bytes / " + path;
                    append(problem, imageProblem);
                    alerta = new Alert(Lng.getString(Lng.a_alert), problem, null, null);
                    return null;
                } catch (IOException ex) {
                    String problem = Lng.getString(Lng.pic_couldnt_be_stored) + "(2) " + ex.getMessage() + "/ IOException2 can read file : " + file.canRead() + " " + nbBytes + "bytes / " + path;
                    append(problem, imageProblem);
                    alerta = new Alert(Lng.getString(Lng.a_alert), problem, null, null);
                    return null;
                }
            } else {
                alerta = new Alert(Lng.getString(Lng.a_alert), Lng.getString(Lng.pic_couldnt_be_stored) + "(2) / InterruptedException can read file : " + file.canRead() + " " + nbBytes + "bytes / " + path, null, null);
                return null;
            }
        }
    

    5 reading the stream

        private byte[] readingImage(DataInputStream is) {
            byte[] raw = new byte[(int) nbBytes];
            isReadBytes = -2; // -2 to differ from eventual -1, 0 or n (positive) returned by read()
            try {
                isReadBytes = is.read(raw);
                return raw;
            } catch (IOException ex) {
                String problem = Lng.getString(Lng.pic_couldnt_be_stored) + "readingImage " + ex.getMessage() + "/ IOException1 can read file : " + nbBytes + "bytes / " + path;
                append(problem, imageProblem);
                alerta = new Alert(Lng.getString(Lng.a_alert), problem, null, null);
                return null;
            }
        }
    

    6 then I do the following

    try {
                            is.close();
                            screenWidth /= 4;
                            screenWidth *= 3;
                            screenHeight /= 4;
                            screenHeight *= 3;
                            append("resizing image", imageBlank16);
                            raw = resizeImage(raw, 640, 480);
                            append("resize for preview image", imageBlank16);
                            byte rawPreview[] = resizeImage(raw, screenWidth, screenHeight);
                            AIDOO.debug("ok here");
                            append("creating preview image", imageBlank16);
                            imagePreview = Image.createImage(rawPreview, 0, rawPreview.length);
                            AIDOO.debug("ok here2");
                            String devinceInfo = DeviceInfo.getSoftwareVersion();
                            AIDOO.debug(devinceInfo);
                            AIDOO.debug("ok here3");
                            //#if !BlackBerry_OS_46 && !BlackBerry_Older_than_46
                            //raw = resizeImage(raw);
                            nbBytes = raw.length;
                            //#endif
                            if (nbBytes > CAMERA_IMAGE_MAX_SIZE) {
                                alerta = new Alert(Lng.getString(Lng.a_alert), Lng.getString(Lng.pic_size_is_too_large) + " : " + nbBytes, null, null);
                                System.out.println("error 2 after insert");
                                returnValue = false;
                            }
                        } catch (IOException ioe) {
                            alerta = new Alert(Lng.getString(Lng.a_alert), "IOException : " + ioe.getMessage() + "available Bytes : " + nbBytes, null, null);
                            AIDOO.handleError("IO problem while saving picture 0", ioe);
                            System.out.println("error 2 after insert");
                            returnValue = false;
                        }
    

    7 Behold my image resizing function

        private byte[] resizeImage(byte[] image, int width, int height) {
            AIDOO.debug("Start of image resizing");
            Bitmap bmp1 = null, bmp2 = null;
            try {
                bmp1 = Bitmap.createBitmapFromBytes(image, 0, -1, 1);
                bmp2 = new Bitmap(width, height);
            } catch (IllegalArgumentException ex) {
                throw new IllegalArgumentException("exception while createBitmapFromBytes()" + ex.getMessage() + "isAvailNbBytes = " + isAvailNbBytes + " isReadBytes = " + isReadBytes + " length = " + image.length + " nbBytes = " + nbBytes + " image = " + image);
            }
            AIDOO.debug("Scale into");
            bmp1.scaleInto(bmp2, Bitmap.FILTER_BILINEAR, Bitmap.SCALE_TO_FIT);
            AIDOO.debug("End of Scale into");
            JPEGEncodedImage encoded = JPEGEncodedImage.encode(bmp2, 90);
            return encoded.getData();
        }
    

    My problems are:

    1. sometimes the image is cropped, this size (w/h) is OK, but for some strange reason it is not all the time. There is always a large black area at the bottom of the image. It seems that something has not been correctly readen.

    2. sometimes I had an IllegalArgumentException in createBitmapFromBytes() function.

    I read a lot of posts that talk about these problems, but I have found no solution.

    Is it so hard to take a picture of the camera and display it?

    Anyone have a good example/code example on how to handle this?

    Thank you for your support and for reading me

    (Sorry for my English )

    I suspect that these problems are caused by the fact that the earpiece of the paper you use is told on the file being written until the writing is actually completed.

    I think that Ihad this problem in an application that I wrote and to get around it, rather than process the image in the JournalListener, I actually got the JournalListener to save the file created in the method of invocation of the "onExposed" screen, I checked to see if the name of the file has been updated and if so , I would treat it then.  onExposed is not get leads until the camera application has closed at this time, according to me, that it is save saying that the file has been saved.

    I think that there are other options.  For example, you could start a thread check the size of the file and if it does not grow after a second or two, you might assume that the writing was completed.

    In all cases, this is where I would start looking for the problem.

  • How to print photos taken with the Iphone?

    I sent photos by e-mail to my pc (not a Mac) and keep told to load onenote.  I used to be able to print from pc?  Comments to onenote are not real positive and I prefer not to use it if there is another way

    It seems that your default printer is set to "Send to OneNote". Assuming that you have installed and configured your printer, you should be able to change the default printer to the correct by:

    -Open printers by clicking the Start button, clicking Control Panel, hardware and sound and then click Printers.
    -Right click on the printer that you want to use and then click on set as default printer.

  • Where are the location of metadata stored in pictures taken with an iOS device?

    I just follow me back from a trip with a lot of pictures taken with a couple of the iPhone as a digital camera.  Pictures taken with the iOS for most devices have locations associated with them, as evidenced by the dialog box 'Get Info' in Photos for Mac. They show well on a card and are correctly associated with keywords of the location (for example, "Sierra National Forest, northeast of Fresno County, United States of America"). But I can't know where the coordinates are stored. There is nowhere to search Photos for Mac that will give me the real coordinates. Also open images in preview does not display a GPS tab in the 'Détails' box how will be my camera equipped with GPS. And finally the search all metadata in Photoshop or Adobe Bridge also will not show all the details or any other type of geographic information.  I just checked my old version of iPhoto (9.6.1) and she won't show also all location information.

    Photos for Mac will display basic information, but I can't find where this happens. Any ideas?

    If you don't see any GPS information in the Inspector of Preview window, you are probably stripping while dragging or by exporting to office. Try dragging the image from Photos while pressing the Option key.

  • How can I sync the videos taken with an iPhone to an iPod nano

    I want to sync the videos taken with my iPhone to my children your iPod nano. The videos are stored on my iMac in the Photos app in a specific album.

    I tried using iTunes and synchronization of the picture with this particularly chosen album, but nothing has been synchronized. There is no error messages or warnings, just nothing is synchronized.

    I know I could manually importing the video into iTunes and sync as films, but there should be an easier way to do this, right?

    I think the method you mentioned is how you need to do.  In iTunes to sync iPod movies, you configure settings from iPod movies screen (to select the movies you want to synchronize).  Settings of the iPod screen photos is for photos (image files).  Movies do not appear on the screen of the parameters of the iPod movies , unless they are in your library of movies to iTunes.

  • How to shorten a movie taken with an iPhone?

    I have a film taken with an iPhone.  The film is 8 GB which is too large to burn it to a DVD.  How to shorten the movie in two parts each about 4 GB so I can burn it to a DVD?

    I'm not sure of the iOS, but, in general, you will need a film editing app such as:

    http://www.Apple.com/iOS/iMovie/

    This allows you to change/improve/part, but you still need to get it on your computer and it will take an app to burn to DVD. The new iMovie for Mac OS has a lot of stock options, but not an option of engraving. Roxio Toast done. So, in order to burn it to a DVD, you will need a computer, a burning application and a DVD reader/writer.

  • iPhone 5 s to connect with blue tooth in the car for hands-free calling does not connect to the speaker, it works very well with the iPhone 5. How to solve this problem?

    IPhone 5 IOS 9.2 (13 c 75) I can log in my car with Blue Tooth to make phone calls, but it does not connect to the speaker. To establish the connection with the car, the procedure has been completed correctly. With the iPhone 5 it works perfectly correct.

    How to solve this problem? Is there someone who has the same problem?

    Howdy,

    Thank you for using communities Support from Apple.

    I see you try to get your iPhone to interface with the stereo in your car via Bluetooth.  For setting this up, please follow the steps below.

    If you use Bluetooth

    1. Consult the user manual of your car stereo to get the procedure to a Bluetooth device.
    2. On your iOS device, drag up to open Control Center, then press ontwice to turn on Bluetooth and turn it back on.
    3. Restart your iOS device.
    4. On your iOS device, Cancel the twinning of your car radio. On the screen of your car désapparier your iOS device and any other device. Restart your car and your iOS device, then pair and connect again.
    5. Update your iOS device.
    6. Install the updates to the firmware of your car radio.
    7. If you still not connect, contact Apple technical support.

    Help to connect your iPhone, iPad or iPod touch with your car radio

    See you soon.

  • How can I upload videos taken with my iphone to my computer?

    How can I upload videos taken with my iphone to my computer?

    When the phone is connected to the PC via USB...
    If you go to... Start / my computer... is the phone
    listed as a removable drive?

    If_Yes_right click on the drive letter for the phone
    and choose... Open or explore... and should be
    display the directory of the memory card.

    You can copy and paste or drag and drop your files
    from there to a folder on your hard drive.

  • Add to catches taken with the cutting tool

    Original title:

    cutting tool options

    is it possible to add a date to the tinsmith shear taken with the cutting tool?

    UD

    Other than in the name no file properties.  When you save the file, it will be time and date of today.

  • Cannot see the preview of my photos taken with the Sony A7R II even after software update.

    Even after the the Lightroom update, I still don't see the preview of my photos taken with the Sony A7R II even after software update. Need help please.

    Captura de Tela 2016-02-29 às 12.57.43.pngCaptura de Tela 2016-02-29 às 12.57.21.png

    Hi Joas,

    Sony A7R II files are not supported in Lightroom 5.

    You need at least version 6.1.1 or CC2015.1.1 to access these files: supported by Adobe Camera Raw devices

    You can upgrade your program of Lightroom or Adobe DNG Converter allows you to convert raw files to DNG and import them into Lightroom.

    Kind regards

    Claes

  • I recently updated the Canon mark II to the mark iii, and the images taken of the mark iii will not make previews in bridge. Bridge will show previews for the images taken with the mark ii, but not the mark iii. I have adobe cc and use

    recently updated the Canon mark II, mark iii, and the images taken of the mark iii will not make previews in bridge. Bridge will show previews for the images taken with the mark ii, but not the mark iii. I have adobe cc and am using camera raw 9.2. I checked the updates and it is said that there is not. I also tried to purge the cache several times and that didn't work either. Any help with this would be so appreciated its driving me crazy!

    Take a look at this: generic icons | Files camera raw | Adobe Bridge

  • Hi - I am trying to draw an irregular shape (series of straight lines) and fill it with the color... How can I do this?

    I need to draw a shape irregular, closed, which is a series of joined lines and fill it with the color, etc., I can only see square, polygon, etc...

    Any suggestions?

    You can set the polygon tool to 3 sides, or use the pen tool.

Maybe you are looking for

  • Is it a master password hide saved usernames?

    I want to use Firefox for my banking info with names of user and password different than my normal accounts but I don't even want to automatically complete user names appears in or auto suggestion anywhere until I used the password. It works this way

  • disable the tabs and use windows instead

    Hello I'd rather have windows that open when I'm online rather than tabs. I had this and then lost somehow my firfeox was updated. Please can you tell me how to reset my settings so that when I go online, each page that I opened starts in a new windo

  • English... BONES and other stuff for my laptop?

    Hi all, there I am owner of a PSM35E-002EE-TR of Turkey and I am deeply satisfied with the capabilities of my laptop. However, my current language of software WindowsXP and Toshiba are all Turks. So I want, due to problems of compatibility, re - inst

  • problems with labview 2013 build specification

    I have a few screws of LV2010 I want to use to create an application to run with RTE2013. I have LV2013 on my computer. Without a massive compilation of the LV2010 screws, the element of selection of source files in the build specification has no pro

  • Can Windows 7 Home Premium Upgrade installed - be uninstalled and put on another PC?

    I bought and installed Windows 7 Home Premium update on my PC a few weeks ago...  The PC is old and performance is poor, so I bought a newer PC that has a licensed copy valid Vista.  Can I use my upgrade I bought on my new PC?  I don't want any more