pixel C#
-
How can I put the pixel in GDI+.Please don't go to image processing. There is no tool avalible in C# to put the pixel. Anybody hep me to get this answer.
Continue...
-
How can I put the pixel in GDI+.Please don't go to image processing. There is no tool avalible in C# to put the pixel. Anybody hep me to get this answer.
Continue...
-
How can I put the pixel in GDI+.Please don't go to image processing. There is no tool avalible in C# to put the pixel. Anybody hep me to get this answer.
Continue...
There is in fact a SetPixel method.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
You can use
Graphics.FillRectangle
with a width and height of 1.Standards are great! Everybody should have one!
why are you going to FillRectangle that is use for draw rectangle. C++ and VC++ have set pixel.
Continue...
-
There is in fact a SetPixel method.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
why are you going to FillRectangle that is use for draw rectangle. C++ and VC++ have set pixel.
Continue...
-
why are you going to FillRectangle that is use for draw rectangle. C++ and VC++ have set pixel.
Continue...
-
There's
Bitmap.SetPixel
, but noGraphics.SetPixel
.Standards are great! Everybody should have one!
Well, you didn't say that you needed it on the graphics object. You spoke of image processing, there's no way you can do image processing without a bitmap, so I assumed you were working with a bitmap. A 1x1 rect or a line that is one pixel in size, are your best bets then, I guess.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )