Image problems with my 6D...diagonal line

Hello, my name is Lindy and I'm new to this forum. I've been having a problem with my Canon 6D which results in some of my images appearing with a dark diagonal line across the upper left hand corner. I've seen this problem with both my 100mm L lens and my 16-35mm lens. Has anyone had this problem before or have any idea of what may be wrong?
Thanks!!
Solved!
Go to Solution.

Hi Lindy.  You've got a bit of "dust" on your sensor (only in your case it looks like a tiny hair).  
It's easily fixed.
See page 279 of your owner's manual which describges how to clean the sensor.  
I do, however, recommend that before doing an automatic cleaning cycle, you remove the lens and point it at the ground -- that way this little hair has someplace to go when it falls... other than finding itself another location inside your camera.
After cleaning, poing the camera a plain white wall (or ceiling) and snap a photo (it doesn't even have to be in focus).  The dust shows up better at high f-stops (it'll be fuzzier at low f-stops).
Sometimes automatic cleaning is not enough and you have to do something further.  If that's the case, then see page 283 for "manual sensor cleaning".  This simply causes the camera to power down the sensor, but open the shutter (and hold it open) so that you can inspect and clean it.  If you look inside, what you're REALLY seeing are the two filters in front of the sensor.  The front filter is the one that vibrates (using a piezoelectric effect) to "shake" dust loose.  
I use a variety of techniques... the simplest and safest is to use a simple hand-squeeze (bulb) blower such as a Giottos Rocket Blower.  I recommend you not use cans of compressed air because the liquid propellant in the cans can spray out if the can is either shaken or not held perfectly level and that leaves a residue on the filter (and the only way to get that off is to wet-clean the filter).  Even air-compressors spray water and oil.  A hand-squeezed blower is the safest option.
If that doesn't work, I use an extremely soft small paintbrush.  They actually do make brushes that plug in to release any static charge so that if something is sticking because of static cling it will hopefully release.
If that doesn't work, I use a sensor scope to inspect my sensor and get a better understanding of why it still wont come free (because generally it would have by now) and then wet-clean the sensor using Photographic Solutions brand "Sensor Swabs" and "Eclipse" cleaning solution.  The solution is nearly pure methenol which means it evaporates very quickly and leaves no residue behind.
My guess is a simple manual cleaning (with camera pointing at the ground) -or- a hand-squeezed blower will likely do the trick.  If you do resort to a brush, give that brush a couple of good solid whacks on the edge of a desk or table to throw off any dust that could be on the brush -- as you don't want to add dust on to the sensor as you are trying to brush that hair away.
Most "real" camera stores (stores in business primarily to sell and service camera gear -- not big box stores that also happen to sell cameras) offer sensor cleaning, but usually there's a charge associated with that.  It's fairly easy to learn to clean the sensor (which is why Canon has a section in the owner's manual) and it's something photographers have to do.... just occasionally.
Tim Campbell
5D II, 5D III, 60Da

Similar Messages

  • Error-1074396120 Not an image, problem with IMAQ Learn multiple geometric patterns

    Error-1074396120 Not an image, problem with IMAQ Learn multiple geometric patterns
    Hi!
    I've tried to modify the example of  "multiple geometric patterns matching" , and just use two patterns, but when I run the VI this error appear and I doon't know how to solve it! , the error appears in the "IMAQ Learn multiple geometric patterns" block.
    Running on:
    - labview 32 bits
    - windows 7 64 bits
    - usb camera 2.0
    Any sugestion would be helpful..... !  Regards
    Attachments:
    template_12.png ‏150 KB
    template_11.png ‏123 KB
    vision_multiple_pattern_matching.vi ‏127 KB

    thanks all for your replies, the problem was on my template images, I had to give them information about the pattern matching, and I did it with NI Vision Template Editor, within Vision utilities, and I chose template with Feature Based. 
    Thank you again and Regards!

  • Problem with creating a straight line with polygamo lasso

    I am having a problem with polygamo lasso. when i create a triangle or a rechtangle in straight line it is turn out the line become not straight. I don't what did i wrong, was always working fine till today. YOu can see the pic the top line lookslike a step.

    Ihope I did right, was not sure how to save as channel.

  • 10.4.10 image problem with Firefox and Photoshop on Intel and OD AFP server

    We are working on a new client image (perfect client image to deploy with Netboot) and our Intel machines, new and old, are throwing errors in CS2 Photoshop and refusing to launch Firefox when we log in to home folders from the OSXserver, local accounts run OK. The Intel Mac Pros we got last year ran Photoshop fine using last years image. Power Macs are running OK logged in on the server and local. The biggest variable is we are now running 10.4.10, the last image was 10.4.9. Anyone seen this, any thoughts, I have tried everything I can think of.
    Thanks!

    I haven't had any problems with 10.4 and solaris 10. At some point Apple upgraded to some version of OpenSSH that required the addition of the -Y switch to make things work well.

  • Image problems with keynote   dropbox

    We are having massive problems with images not appearing correctly in our Keynote when saved via dropbox. Images appear swaped with other images, or at times, completely missing all together. This has completely crippled the work flow at our business and we are at all but a loss other on how we can continue to properly work in Keynote 6. What can be done to remedy this problem?

    This is a MASSIVE problem. Keynote autosaves every single small change. With multiple team members on multiple locations it's virtually impossible to know if someone even does 1 tiny change in the presentation, while someone else is doing the same. The autosave makes this almost a certainty to happen.
    We had to do multiple reworks this weekend, because of this. It makes working with dropbox and Keynote virtually impossible. I asked around and all Agencies I know, having the same issue.
    One change on two locations, even by accident means:
    - Broken images
    - Broken videos
    - Mixed images turning on different locaties
    - Mixed videos turning on different locaties
    - Keynote versioning broke.
    - No dropbox versioning because of the new file format,
    Only thing that can save you is a local backup.....OMG!!
    It feels like a viral outbreak, and nobody is realising it yet....

  • JAI(Java Advanced Imaging) Problem with splitting TIFF images

    Hi
    I am getting problem with height when I use this program to split TIFF images
    ImageDecoder decImage = ImageCodec.createImageDecoder("tiff", inStr,
    null);
    Then it creates RenderedImage page by page and encodes them to file:
    String outFileName = "";
    OutputStream outStr;
    TIFFEncodeParam encParam = new TIFFEncodeParam();
    encParam.setCompression(TIFFEncodeParam.COMPRESSION_PACKBITS);
    for (int i=0,n=this.getPageCount(); i < n; i++)
    outImage = this.decImage.decodeAsRenderedImage(i);
    outFileName = "C:\\Temp\\Split" + i + ".tif";
    outStr = new FileOutputStream(outFileName);
    BufferedOutputStream bOutStr = new BufferedOutputStream(outStr);
    encImage = ImageCodec.createImageEncoder("tiff",bOutStr,encParam);
    encImage.encode(outImage);
    bOutStr.flush();
    bOutStr.close();
    }The images are shrinking when I split . I need a solution to this problem.
    Thanks for any help in advance
    Sudheer.

    Hi
    Did you get a solution for your problem. I am also trying to split a TIFF file.
    Thanks in advance
    Antony

  • Problems with templates overtaking first line?

    Has anyone else had a problem with templates taking over the first line of code in any page that a template is applied to?
    I created a template that starts like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="head" -->
    but when that particular template is applied to a page it writes this to the code:
    <!-- InstanceBegin template="/Templates/default.dwt" codeOutsideHTMLIsLocked="false" --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
            "http://www.w3.org/TR/html4/strict.dtd">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="head" -->
    I don't particularly mind this, but in IE8, because the comment is the first line - and NOT the doctype, it forces the browser into another doctype and breaks the page.
    Has anyone experienced this?
    I've tried re-creating my templates, but I'm not finding the reason why it decides to place that comment in the beginning sometimes..

    The problem may be that the comment is on the same line as the doctype, try putting a blank line between the template comment and the doctype statement
    e.g.
    ..... IsLocked="false" -->
    <!DOCTYPE HTML .....
    The comment is place in the line before the doctype to enable editing of server side code, (php, asp, .net, etc.).
    PZ

  • Image problem with my palm (J2ME Wireless Toolkit)

    Hi,
    I did a basic application. I just show an image and it works perfectly with the J2ME Wireless ToolKit.
    However, when I create the package, convert it and send it on my palm, everything is ok, except the image. It won't appair.
    I get an exception that the image couldn't be found, but when I use the emulator, everything is ok !!!
    The image is in the "res" directory, like it was asked in the manual.
    I tought that everything is encoded (text file or image file) when you create the package. If it's working with the emulator, why is it not working on my palm?

    I had a same problem with my nokia 3650 in J2me the image appears but not on the phone, I think that that is a bug and fixed it this way:
    when you make a jar package, unpack package with winRAR or some archive program in some temp directory and in that directory make a res directory an put the image in it, then repack theese files again including the res directory in a new jar file. It works for me. It looks that J2ME in compiling doesn't change the path, to root but leaves the res directory.

  • Replication problems with slow ( 20kB/s line)

    Yesterday we noticed on our production database that replication did not run anymore because of an error in one record. This forced us to re-iniitalize the subscription. Maybe this is exactly what we should not have done but we did . The result was that
    production stopped because of the first part of the replication to dump all the tables and make new empty ones. The problem is that this does not seem a good idea for a slow connection between 2 machines. Better would be that we could just restart the replication
    from a backup but as far as I know this is not possible.
    So my question is now what can we do to speed up the replication if there is no way that we can improve the line quality. (One server is in NL and the other in CN, and as everybody know there is the great big firewall in Bejing which controlls all the internet
    traffic. )
    Is there a way to prevent replication from emptying the tables and fill them again.
    Many thanks Peter Kaldenberg

    I know that probably there is a problem with our firewalls but the fact remains that we are facing with slow connections so I ques what can we do at SQL level to speed replication or better not to have to do bulk copy over the net. In-fact why does SQL not
    use some kind of delta protocol. When only data is involved this should work. Of course when the layout of tables has been changed then it makes sense the tables has to be rebuild but not for data.
    Maybe a solution could be to use check-sum checking and only update these records which are different and of course add the missing once.
    Additional why does the replication not give information how far the bulk copy is at least then the user knows its still working. Now what ever setting I change after 10 min the replication does not give any useful information. Which results in that the
    user is thinking that the replication does not work anymore.
    What about 3rd party replication tools are they any better?
    Peter

  • Having an image problem with Photoshop cs4.

    Sorry if this is in the wrong place. Anyway, my problem is when i open CS4 and either open a picture or start a new image, the image has annoying black lines on it which distort anything i do, kinda like a broken touchscreen.
    I have some images here to show what i mean.
    http://i143.photobucket.com/albums/r130/Tsuikai/annoyingphotoshopproblem.jpg
    http://i143.photobucket.com/albums/r130/Tsuikai/annoyingphotoshopproblem2.jpg
    Now, i've tried updating my graphic drivers, resetting the tools and opening other image files, it's the same with anything i open, even if i start a new. I can't figure out what's wrong with it.
    Anyone able to help?

    Hello, Nazaruda. This is the forum for Photoshop Elements, the consumer version of Photoshop. Since you have CS4, you would probably get better help in the Photoshop forum:
    http://forums.adobe.com/community/photoshop/photoshop_windows
    Good luck!

  • Problem with "carriage Return" or "Line Feed" in a table

    Hello,
    I need help with the function Zeichen(), so called it in german, I'm not sure if it is char() in english.
    In Pages Version 4.0.1 (746) I've created a table in Pages with this function to make an "carriage Return" in a cell.
    Here an example: { ="Hello" & Zeichen(10) & "World" }, in the cell is now:
    | Hello |
    | World |
    But in Pages Version 4.0.3 (766) this function ZEICHEN() not allow the number 10 and other till 32 (I allready read the manual and understand this problem).
    Anybody an idea to make a "Carriage Return" or "Line feed" in a formular, in a cell, in a table, in Pages?
    Thanks
    Detlev Kormann

    kdetlev wrote:
    Your workaround will not be possible in my table, because there is no empty cell in the table, but I think it is also a good help too.
    *In fact I forgot that you are using a table in Pages.*
    Remaining on my first idea, In Numbers we may achieve the same goal using an auxiliary table with a single cell containing the needed line break.
    If this table is named "LineBreak",
    the formula will be:
    ="Hello"&LineBreak :: $A$1&"World"
    *In Pages, here is my workaround:*
    Enter the cell
    type a§b
    don't type the character § but ctrl + return.
    The cell will contain
    a
    b
    with the arrow, move before the a
    type =B2&"
    delete the original a
    move to the right
    delete the original b
    type "&C7
    Yvan KOENIG (VALLAURIS, France) mercredi 7 octobre 2009 17:20:04

  • Problem with Sourcing for multiple line items SRM 7.0

    Dear All,
    We are in SRM 7.0, extended classic scenerio,
    For sourcing we have selected config "Sourcing is carried out for items without a Assigned source of supply" for all sytems and all product categories
    Our requirement is Catalog items should not go to sourcing, Item with and without assigned source of supply both should go to sourcing and external requirements SC should go to sourcing.
    We have done coding in BADI "DOC SAVE BADI" and "BBP_SRC_DETERMINE" method DETERMINE_SOURCING.
    Now we create SC with line items only using Catalog it is working fine, SC not going to sorcing,
    Create SCfor line items with assigned source of supply only it is working fine, SC going to sourcing,
    and Create SCfor line items without assigned source of supply only it is working fine, SC going to sourcing,
    But problem is with the combination of all items i.e. Catalog, with and w/o assigned source of supply in one SC
    Assigned  source of supply item is not appearing in Sourcing cockpit, and some time catalog items also available for sourcing.
    Please help
    Thanks in Advance
    Vikas
    Edited by: VIKAS CHINCHORE on Oct 4, 2011 11:53 AM
    Any luck?

    Hi
    Please revisit your logic wriiten in this method
    DETERMINE_SOURCING
    Are you checking here sc has item or sc  has supplier or not ( fixed supplier) in the logic? it must be item check.
    As per sap standard , catalog item / fixed source of supply assigned will not venture to cockpit (Sourcing is carried out for items without a Assigned source of supply)

  • Problems with Scrollable Content : colored lines appear

    Hello,
    We have a book with several Scrollable Content (around a total of 200).
    The fact is that in many colored lines appear. These lines appear i disappear when changing article,
    anyone have any solution?
    THANKS

    Hi
    I had the same problem. I had pasted the scrollable content directly into the container frame, but the pasted content was slightly 'taller' than the container window (the pasted object group was maybe 0.012 pixels larger than the container, so very slight) this caused it to display the coloured lines when I moved it up or down, although left and right movement worked fine. Resizing so the pasted content was smaller and exact pixels not 0.123 px (or the same size) as the container fixed it.
    M

  • Safari load image problem with iMac Intel core

    I got my new iMac 20" Intel core and system updated everything. I found that Safari cannot load image in my web photo album ( http://fotop.net/nicknick ), all image became "?".
    I can load this page correctly with FireFox and Opera Browser. I also try the iMac 17" PowerPC in my office with the latest version Safari, it also load the album correctly. And I know this web is created and store in a Linux server, the web page coding not written or optimized to IE.
    I've try to reinstall the whole OS X, nothing else installed, the same problem occurred.
    Is it the problem on Intel core? or any setting I can do to overcome it?
    Hope the problem could be solve, I like to use Safari except this problem.
    iMac 20" Intel core   Mac OS X (10.4.5)  

    Well... no - except to ask if your intel imac is connected to the internet in exactly the same way as the ppc imac. If it is, then that's puzzling
    You're right, I'm puzzled by the imac.
    Intel imac is at my home, ppc imac is at my office;
    both using same ISP but different service plan,
    (home:) PPPoE, ADSL modem -> buffalo MIMO wireless router -> intel imac (both direct wire or wireless connect have same result)
    (office:) fixed-ip, ADSL modem -> firewall -> Linksys wireless router -> ppc imac (wireless)
    both network setting with manual assigned IP, gateway and same DNS
    Same result occurred when (1)open box new machine, (2)after updated system, (3)reinstall whole OS with preserve the old setting, (4)reinstall whole OS with erase the whole harddisk option, (5)updated system after the reinstallation.
    I firstly think may be some security setting in imac that blocked the images, but can't found out. I secondly think some html code at this web not work on Safari.
    May someone with same machine help to open this web to see if all intel imac get the same result?

  • Having lots of problems with getting a phone line ...

    this may be a bit of a long story sorry, but this has now stretched to nearly 2 months without phone and internet and i desperately need help as i rely on both for my business.
    we moved in to our new house in october and ordered BT phone and internet on the 18th of October, we've now had 3 engineers out to connect a phone line but yesterday after the 3rd one turned up, and then left without informing me, i phoned BT to ask where he was to be told i now had to rebook my appointment for the 6th of December, nearly 2 months after moving into my house.
    first engineer came on the 8th of november, a very nice man who explained to me the phone line in my house was 20 year old outdated underground line which was no longer in use by BT, he phoned his boss and was told he'd need to put up a whole new line. he went away to get a harness and ladder etc, came back and climbed the pole and got the line up and put it to my house. he then took the whole thing down again...  came in to inform me that the line didnt meet regulations as it was not high enough, and he couldnt use the other pole as it was too close to electrical wires. he was gutted to have lost a whole day but informed me it is the law that bt have to provide me with a phone line and that if they dont do anything within 3 days i should complain. i was disappointed as i'd taken the day off work for this, being self employed this cost me a lot of money.
    next day i was back to work as normal, a new bt engineer phoned saying he was at my house. i said i'd come back to meet him but he told me not to bother, as he'd already inspected the area and decided the first engineer was wrong and he should have infact put the line up at the pole which was beside the electrical wires, so he told me he'd book a new appointment and bt would phone me to let me know.
    i waited a week with no phone call or email so i phoned BT myself on Saturday 16th November. i got a lovely lady on the phone who actually seemed horrified at what had happened, she couldnt be more helpful and managed to get me a cancellation appointment the following thursday, 21st november, from the BT engineers and assured me the order would be completed this time. great, but annoying as again i had to be in the house which meant a 2nd day off work costing me a lot more money again.
    21st november - yesterday - bang on 9am a knock at the door, great. new BT engineer is there, an older unfit looking gentleman wrapped up in hats and scarfs and huge jackets. straight away he came across to me that he couldnt be bothered with this, he was asking me what line i had, what the previous guy did, what the 2nd guy said needed doing, he didnt know himself. i explained to him and he went away back into his van. he sat there for 30-40 minutes, came back to the door to say he needed a cherrypicker to get him up the pole to connect the new phone line but as it was in another place it wouldnt be here till the afternoon. he then went on to ask me if i would be staying in all day as it would get done today, he said i needed to stay in the house all day 'you wont be going anywhere will you?' i was told to stay and wait for him over and over again. i said this was fine as i'd had to take another day off work, i couldnt afford a 3rd day so i wouldnt be going anywhere.
    come 11.30am, he returned, he just said he wanted to update me on that he was heading into the village to fix a phone line then would return, again he asked for assurances i wouldnt leave the house etc and i said thats fine. 
    12:15pm - a man phoned from BT to rebook my engineer appointment, i kindly explained he was here at half 11 and was returning to complete the job later. the man on the phone said thats fine but please phone us back if he doesnt reappear.  at this point i was very worried, phoned the missus for her opinion and we agreed i should phone back so i phoned back straight away. this time i got a nice scottish man on the phone and i explained everything, he went and checked things for me and said the system still said my order was in progress so if the engineer had told me he'd be coming back, he saw no reason why he wouldnt. i was happy with that and agreed.
    3:30pm - still no sign so i phoned BT back to say i was worried he had left, it was a nice man on the phone again but talked in broken english and didnt understand me completely a lot of the time... (i have a scottish accent ) the whole call took about an hour but eventually it turned out the BT engineer had indeed just decided to go home, im presuming he decided it was too much work in the wind and rain, and to add insult to injury he'd even told BT my order was completed. i asked the man on the phone if i could talk to someone higher up as i wish to complain as i needed my order completed today, he point blank refused saying he would file the complaint on my behalf which i wasnt happy with but he wasnt having it any other way. he decided to rebook my appointment for the 6th of december despite this meaning i'd need to take a 3rd day off work costing me yet more money. he then had me wait on the phone whilst he typed out my complaint and gave me a complaint reference number, he didnt really check anything with me as to what i wanted in the complaint so i am a bit worried not everything is in there. i could add more on this, im not happy at having to wait for another 2 weeks aswell considering the last lady found me an appointment within just 4 days of me phoning, i believe i should have priority for an urgent appointment?
    anyway, i am very annoyed by this whole thing. i have remained patient up until today and now i just dont know what to do, im not the type to complain but this is ridiculous, i can see the same thing happening with the next engineer. i do expect some form of compensation over this whole affair as it is not fair at all that i will now have to take 3 days off my self employed job which is very very costly for me and is money i can not get back. not to mention the loss in business from not having the internet as we take appointments and orders online, we have been unable to use this for 2 months now. the amount of money i have lost over all of this is unbelieveable. fair enough i did not mind at all having to wait for my first appointment, or for taking the first day off work for the work to be done. that was fair enough, i realise these guys are busy and that was the earliest appointment i could have so that was fine. but now that i have to take another 2 days off work is the problem, not to mention all this extra time with no internet.
    please could one of you help me out here as i dont know what else to do. ideally im hoping someone could sort out an earlier appointment for me like the original woman on the phone did, getting me a cancellation, as i am in desperate need of it now as december is our busiest month. i also wish to file my own complaint about all of this if possible.  thank you in advance for any help and i am sorry for the length of this post. cheers.
    Solved!
    Go to Solution.

    You will not get any compensation from the failure to provide a residential line, apart from what BT say on this page.
    Customer service guarantee
    BT do not provide or maintain the external network. This is done by Openreach who work for all service providers. BT do not get any special treatment.
    If you are waiting for Openreach to deal, then that appointment is going to be the earliest available.
    You could take a laptop into town, and use it on the available hotspots. It would also be worth considering adding broadband to the business line, to make things easier at the shop.
    As this is only a customer to customer forum, all I can do is to ask a BT Moderator to see if they can help, but I doubt that they can influence Openreach, as Openreach deal with other service providers as well.
    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, if you click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail within 5-6 working days.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for