| Thread | Last Post | Replies |
|
| Zero Width Pen Draws through clipped region... | 31 May 2007 23:44 GMT | 8 |
Here is my setup: Windows Vista Ultimate Visual Studio 2005 Intel Core 2 CPU 6600 @ 2.40 GHz
|
| GDI+ DrawImage has 0.5 pixel offset - visible for highly zoomed bitmaps (>4X) | 30 May 2007 12:13 GMT | 5 |
When drawing say an 8x8 bitmap to say a 128x128 bitmap using Graphics::DrawImage(image,x,y,width,height) there is a 0.5 pixel offset between the input and output - that is the first zoomed in pixel in every row and the entire first row is only half as wide as the other 7 rows and ...
|
| I believe there is something wrong with Matrix.RotateAt | 29 May 2007 01:46 GMT | 4 |
I believe there is something wrong with Matrix.RotateAt The following example shows the problem. Form needs a picture box and a context menu. PictureBox1
|
| use thread in OnPaint message | 28 May 2007 11:16 GMT | 2 |
I want to use thread to improve the speed of the drawing. just like this: public override OnPaint(PaintEventArgs e) {
|
| LockBits and IrfanView | 28 May 2007 01:46 GMT | 1 |
http://msdn2.microsoft.com/en-us/library/5ey6h79d.aspx This LockBits example code worked fine with many images, but not with images saved with IrfanView. When an image saved with IrfanView is used, the resulting image looks
|
| Paths and ArcTo in .NET | 27 May 2007 07:33 GMT | 2 |
Could somebody show me a decent way to do an ArcTo in .NET? Am I correct in assuming that the Graphics and GraphicsPath classes do not provide any built-in support for this? regards,
|
| I need to zoom a bitmap with no interpolation | 24 May 2007 22:32 GMT | 3 |
I'm making a small Paint-like program and when I zoom in I want to see each individual pixel as its own block of solid color. Everything I've tried with the Graphics methods has resulted in smoothed images, even if I use InterpolationMode.Low. Is there any way to get .NET to do ...
|
| C# Printing drawing: Is it possible to update on already printed page ? | 23 May 2007 21:30 GMT | 2 |
I need to print a report like document. So in report there are many articles and what I need when I get to the end, is to update page numbers on the second page where the Table of Content is .... or even update strings like Page 1 or 10 ... Page 2 of 10 etc ....
|
| REQ: Fast method for converting RGB to 1bpp | 23 May 2007 12:23 GMT | 2 |
I need to edit 20.000+ TIFFs. Currently I'm converting my TIFF images back to CCITT4 (after watermarking them) using Bob Powell's method which can be found at http://www.bobpowell.net/onebit.htm. However, converting a single TIFF takes about 10 seconds or so.
|
| How to get rid of black background on Bitmap in GDI+ | 21 May 2007 18:56 GMT | 4 |
The portions of a Bitmap that are not 'covered' by another Graphics object are left black in the final image. Is there a way to make the background white? Thank you!
|
| optimization fr my app needed -it paints all .NET colors on a form | 19 May 2007 13:52 GMT | 10 |
I've written this little app in C# 2.0 under .NET 2.0. It enums all colours(or brushes acutally) availible in .NET via reflection. Then paints them (very elegantly i must add) on the form. It figures how many color boxes will fit onto the client area and then
|
| How to move a graphics object | 18 May 2007 14:55 GMT | 4 |
I'm new to Windows Forms and GDI+. Simple and probably dumb question but how do I move an object (i.e. ellipse) across the screen. The msdn help just seems to confuse or give me limited info.
|
| Making a control transparent using C# in VS2005 | 17 May 2007 22:07 GMT | 2 |
I am trying to create a System.Windows.Forms.Control derive class that has areas that are transparent to the form on which it is placed. I want to have a circular button. It works fine if placed over an area of the form with the BackColor. However, if there is a background ...
|
| Rounded Corners with GDI+ | 17 May 2007 20:15 GMT | 5 |
I would like to load up an existing image from disk and round off the edges with GDI+. Does anybody here a good reference on how to do this? Thank you!
|
| Line Graphs | 17 May 2007 20:11 GMT | 1 |
I have a requirement to do a line graph on a web page. Need to be able to plot multiple lines on the graph. Any good third party tools that integrate easily into .Net or is there something in .Net framework, without a lot of fuss. I'm storing the points in SQL server.
|