0
votes
2answers
24 views
Difference when using Graphics.DrawString
I get different result using Graphics.DrawString when rendering a chart for ASP.NET website. Text looks fine on development environment but bold and ugly on production.
Chart samp …
1
vote
2answers
20 views
Paint event handler stops executing after a few iterations
Hi,
I've got a Windows Form that circulates through images which are displayed on the form as a slideshow. The way I'm doing this is to have a Panel control the size of the form i …
1
vote
1answer
23 views
wxGraphicsContext dreadfully slow on Windows
I've implemented a plotter using wxGraphicsContext. The development was done using wxGTK, and the graphics was very fast.
Then I switched to Windows (XP) using wxWidgets 2.9.0. An …
0
votes
1answer
34 views
Displaying an EMF file
Hey guys!
Got a quick question about Windows EMF/EMF+ files. Reading the documentation, I realize that an EMF/EMF+ file is just a bunch of GDI/GDI+ commands. So what's the suppo …
2
votes
1answer
29 views
Draw an image with custom transparency in GDI+
I'm drawing lots of images (all of them dimensions=24x24 pixelformat=32BppPArgb) onto a Control using a Drawing.Graphics object and the DrawImage() function. It's possible to zoom …
3
votes
3answers
58 views
Best practice for custom control painting in Winforms?
Normally when I override the OnPaint method, I create pens and brushes, etc inside it and then dispose them.
I also read somewhere that instead of recreating these pens and brushe …
0
votes
1answer
20 views
Is Gdiplus thread-safe?
I've perused the MSDN documentation and I couldn't find a statement one way or the other. What I'm interested in is:
Can I call GdiplusStartup() on one thread and then use Gdipl …
0
votes
1answer
41 views
How to calculate the disabled text color for controls that look very close to Winforms controls?
I am using CustomButton and CustomLabel derived from Button and Label. They have extra functionality that I need.
The visual difference is minimal but I don't know how .NET calcul …
3
votes
3answers
141 views
Which would be the best 2D graphics library?
Okay, I bet this question might have been asked dozens of times before, but at the end of the day, I am still confused.
I am working on a charting/plotting application. My applica …
0
votes
1answer
16 views
Blend formula for GDI+
I have a color A that I'd like to transform into color C, by using color B. So I'd like to know the blending formula F in GDI+, where F = F(A, B) = C. A is the "bottom color" and B …
0
votes
2answers
36 views
Troubles drawing to my ClientRectangle using GDI+ & C#
I am working on understanding collision detection and have decided to create a program that simulates Pacman. Simply put when a Pacman runs into a Ghost it dies.
I specify how ma …
1
vote
1answer
50 views
how to make Image.Save save as a 24-bit image?
Hi All,
How do I get C# to force bitmap images that are saved to be saved as 24-bit images as can be seen when you get the right-click properties of the image in Windows. All the …
0
votes
1answer
44 views
“A generic error occurred in GDI+” upon Save
I'm trying to "resave" an image and am getting the error "A generic error occurred in GDI+". I've done some searching around this error, however haven't found a solution yet! Most …
6
votes
1answer
79 views
How can I start showing an interlaced PNG before all data has been received?
I have a slow connection that I need to send a PNG image over (as a byte stream) and have the image be displayed immediately. I have a C# WinForms app accepting the byte[], loading …
1
vote
1answer
45 views
How can I underline some part of a multi-line text with GDI?
I am using Graphics.DrawString to draw my usercontrol's text like this:
protected override void OnPaint(PaintEventArgs e)
{
RectangleF bounds = DisplayRectangle;
bounds.In …
