Tagged Questions
39
votes
2answers
998 views
Rendering controls on glass: Solution found, needs double-buffering/perfecting
I (finally!) found a way of rendering Windows.Forms controls on glass that doesn't seem to have any major drawback nor any big implementation time. It's inspired by this article from Coded, which ...
23
votes
10answers
35k views
A generic error occurred in GDI+, JPEG Image to MemoryStream
This seems to be a bit of an infamous error all over the web. So much so that I have been unable to find an answer to my problem as my scenario doesn't fit. An exception gets thrown when I save the ...
20
votes
9answers
20k views
Can you make an alpha transparent PNG with C#?
I have a multi-browser page that shows vertical text.
As an ugly hack to get text to render vertically in all browsers I've created a custom page handler that returns a PNG with the text drawn ...
18
votes
4answers
6k views
Draw a single pixel on Windows Forms
I'm stuck trying to turn on a single pixel on a Windows Form.
graphics.DrawLine(Pens.Black, 50, 50, 51, 50); // draws two pixels
graphics.DrawLine(Pens.Black, 50, 50, 50, 50); // draws no pixels
...
14
votes
6answers
805 views
How create glossy button in C#?
I want create glossy buttons with GDI+ or Silverlight with C#, any ideas or trickery how to create a glossy button? Somethings like images below:
I am interesting more in GDI+ solutions.
13
votes
6answers
2k views
Image resizing efficiency in C# and .NET 3.5
I have written a web service to resize user uploaded images and all works correctly from a functional point of view, but it causes CPU usage to spike every time it is used. It is running on Windows ...
13
votes
3answers
5k views
C# Transition between GDI+ and WPF
Im considering migrating my c# application from using custom GDI+ drawn controls to a WPF application with custom controlls etc. I would like to know whats involved and what to expect.
Are there any ...
11
votes
3answers
475 views
How can I simulate a hanging cable in WPF?
I have an application that is very "connection-based", i.e. multiple inputs/outputs.
The UI concept of a "cable" is exactly what I'm looking for to make the concept clear to the user. Propellerhead ...
10
votes
2answers
218 views
How to stitch images with very little overlap?
I am trying to create a panorama using images with very little overlap, but I know the angle of the camera so I know exactly how much overlap there is and I know the order of the images so I know ...
10
votes
3answers
988 views
Taking screenshots in Windows Vista, Windows 7, with transparent areas outside the app region
I am trying to take a screenshot of an application and I would like to make the parts of the rectangle that are not part of the applications region be transparent. So for instance on a standard ...
10
votes
3answers
1k views
Alternatives to System.Drawing for use with ASP.NET?
After several days of tracking down bizarre GDI+ errors, I've stumbled across this little gem on MSDN:
Classes within the System.Drawing namespace are not supported for use within a Windows or ...
10
votes
2answers
5k views
InvalidOperationException - object is currently in use elsewhere - red cross
I have a C# desktop application in which one thread that I create continously gets an image from a
source(it's a digital camera actually) and puts it on a panel(panel.Image = img) in the GUI(which
...
9
votes
1answer
268 views
9
votes
4answers
10k views
Image.Save(..) throws a GDI+ exception because the memory stream is closed
i've got some binary data which i want to save as an image. When i try to save the image, it throws an exception if the memory stream used to create the image, was closed before the save. The reason i ...
8
votes
9answers
11k views
Winforms: SuspendLayout/ResumeLayout is not enough?
I have a library of a few "custom controls". Essentially we have our own buttons, rounder corner panels, and a few groupboxes with some custom paint. Despite the "math" in the OnPaint methods, the ...
7
votes
3answers
160 views
Building a GrayScaleBrushes class
Recently I came across a .NET color chart based on their hue and brightness value. What stroke me is the crazy grayscale chart. For example, DarkGray is actually lighter then Gray ? Also, I can't see ...
7
votes
6answers
625 views
When is Dispose necessary?
When you have code like:
Bitmap bmp = new Bitmap ( 100, 100 );
Graphics g = Graphics.FromImage ( bmp );
Pen p = new Pen ( Color.FromArgb ( 128, Color.Blue ), 1 );
Brush b = new SolidBrush ( ...
7
votes
3answers
14k views
Drawing a transparent button in C# Winforms
I'm trying to create a transparent button in C# (.NET 3.5 SP1) to use in my WinForms application. I've tried everything to get the button to be transparent (it should show the gradient background ...
7
votes
7answers
3k views
Winforms: How to speed up Invalidate()?
I'm developing a retained mode drawing application in GDI+. The application can draw simple shapes to a canvas and perform basic editing. The math that does this is optimized to the last byte and is ...
7
votes
7answers
10k views
GDI+ / C#: How to save an image as EMF?
If you use Image.Save Method to save an image to a EMF/WMF, you got an exceptoin (http://msdn.microsoft.com/en-us/library/ktx83wah.aspx)
Is there another way to save the image to an EMF/WMF?
Are ...
7
votes
3answers
726 views
LinearGradientBrush Artifact Workaround?
The LinearGradientBrush in .net (or even in GDI+ as a whole?) seems to have a severe bug: Sometimes, it introduces artifacts. (See here or here - essentially, the first line of a linear gradient is ...
7
votes
6answers
7k views
Rendering Graphics in C#
Are there any other way to render graphics in C# beyond GDI+ and XNA? (For the development of a tile map editor)
6
votes
1answer
165 views
What are the fastest GDI+ rendering settings?
There is quite a lot of post about rendering high quality graphics, like this one
High Quality Image Scaling C#
I need to render about 6k+ object (line and ellipse) in a graphics with GDI+, at a ...
6
votes
2answers
213 views
Working with large bitmaps causes Out of Memory Exception
I need to edit(Increase the height) the Image on the fly.
The file is mostly 5000*4000 in dimension. I see the memory shoots up to peak level when I create a bmp of large dimensions and call ...
6
votes
1answer
2k views
C# - Outputting image to response output stream giving GDI+ error
When outputting an image to the output stream, does it require temporary storage? I get the "generic GDI+" error that is usually associated with folder permission error when saving an image to file.
...
6
votes
4answers
372 views
C# GDI+/System.Drawing.Graphics - creating a buffer and manually blitting?
I'm creating a cad viewer which deals with very large image files and I am trying to optimise it for as high a framerate and low a memory footprint as possible.
It uses GDI+ for rendering onto a ...
6
votes
3answers
641 views
Bilinear interpolation - DirectX vs. GDI+
I have a C# app for which I've written GDI+ code that uses Bitmap/TextureBrush rendering to present 2D images, which can have various image processing functions applied. This code is a new path in an ...
6
votes
4answers
1k views
What quality level does Image.Save() use for jpeg files?
I just got a real surprise when I loaded a jpg file and turned around and saved it with a quality of 100 and the size was almost 4x the original. To further investigate I open and saved without ...
6
votes
1answer
229 views
How to mimic Picasa's rendering of reduced quality image to speed up drawing
I have an owner-drawn control where performance is an issue during quick repaints such as object drags, resizing and painting the selector square. i have noticed that several other apps, including ...
6
votes
2answers
1k views
System.Drawing - bad text rendering using DrawString on top of transparent pixels
When rendering text into a bitmap, I find that text looks very bad when rendered on top of an area with non-opaque alpha. The problem is progressively worse as the underlying pixels become more ...
6
votes
3answers
833 views
Why is drawing to OnPaint graphics faster than image graphics?
I'm looking for a way to speed up the drawing of my game engine, which is currently the significant bottleneck, and is causing slowdowns. I'm on the verge of converting it over to XNA, but I just ...
6
votes
2answers
758 views
Ghost-borders ('ringing') when resizing in GDI+
What happens (only noticeable on certain images) is I will see a 1 pixel white border that is inset one pixel. It seems to happen in areas that are light but not white (e.g. the sky). It is similar to ...
6
votes
1answer
187 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 it into a memory ...
6
votes
4answers
6k views
How to eliminate flicker in Windows.Forms custom control when scrolling?
I want to create a custom control in C#. But every time I have to fully redraw my control, it flickers, even if I use double buffering (drawing to an Image first, and blitting that).
How do I ...
5
votes
6answers
152 views
C# CAD libraries
I have 3 projects to be done by the end of next semester on 3D CAD programming. I'm very good at C#. I came to know that C++ offers great support with OpenGL, DirectX, etc. but it takes a lot of time ...
5
votes
5answers
516 views
C# WinForms - Anyone know of a C# GDI library not SLOW GDI+
GDI+ is very slow, almost entirely software whereas GDI is highly hardware accelerated.
GDI+ is what the Graphics class uses on WinForms and it's just too slow.
Has anyone made a .NET GDI library so ...
5
votes
2answers
548 views
Automatically trim a bitmap to minimum size?
Suppose I have a System.Drawing.Bitmap in 32bpp ARGB mode. It's a large bitmap, but it's mostly fully transparent pixels with a relatively small image somewhere in the middle.
What is a fast ...
5
votes
1answer
727 views
How to Render a Transparent Cursor to Bitmap preserving alpha channel?
I use the code below to render a transparent icon:
private void button1_Click(object sender, EventArgs e)
{
// using LoadCursorFromFile from user32.dll
var cursor = ...
5
votes
2answers
682 views
Why should I do manual double buffering?
I am working on a game in C# (either 2.0 or 3.5 havn't decided yet). The game will be played on a map with a hexagonal grid. I appreciate that the UI for this map should use double buffering (lots ...
5
votes
5answers
285 views
Should I create new Pens/Brushes per Paint request or keep them throughout the application lifecycle?
I have an application that does a lot of drawing, let's pretend it's a Viso-like application. It has objects that have multiple sub-objects that are drawn, things can be connected, resized etc. ...
5
votes
2answers
652 views
Double Buffering when not drawing in OnPaint(): why doesn't it work?
I'm working on a simple vector drawing app in C#/.Net. The drawing is done in a panel, but I'm not using the OnPaint() event for all of it - in fact the OnPaint() even just calls another method which ...
5
votes
2answers
388 views
Tinting Towards or Away from a Hue By a Certain Percentage
I'm trying emulate the Tint Effect of Open XML. What it does is change the hue of pixels in an image by shifting the hue. It takes 2 parameters: 1) the hue (in degrees) and 2) the amt (the amount, a ...
5
votes
2answers
161 views
What is the best algorithm to locate a point in an image file?
I want to create a mark sheet recognizer.
Here is the description:
My system uses black and white color scheme.
The mark sheet paper has a small black rectangle on each corner and an additional ...
5
votes
4answers
2k views
Detecting coincident subset of two coincident line segments
This question is related to:
How do I determine the intersection point of two lines in GDI+? (great explanation of algebra but no code)
How do you detect where two line segments intersect? (accepted ...
5
votes
5answers
2k views
Windows Forms: Making a cursor bitmap partially transparent
I want to use partially transparent images in drag/drop operations. This is all set up and works fine, but the actual transformation to transparency has a weird side effect. For some reason, the ...
5
votes
1answer
5k views
How to draw rounded rectangle with variable width border inside of specific bounds
I have a method that draws a rounded rectangle with a border. The border can be any width, so the problem I'm having is the border is extending past the given bounds when it's thick because it's drawn ...
5
votes
3answers
2k views
Reading RAW image files as GDI+ bitmaps
Is there a good way to read RAW image files (especially Canon CR2 and Adobe DNG files) as GDI+ bitmaps that is reasonably fast?
I found an example running under WPF that would read an image using any ...
4
votes
2answers
74 views
How can I set an image to have a transparent background in C# without using Bitmap.MakeTransparent()?
I want to set an image to have a transparent background, but I do not want to replace all pixels of a specific colour with transparency.
To be more specific, the image is a thumbnail image for a ...
4
votes
1answer
102 views
Write multiple line string with GDI+
I have a small display on my keyboard, it's 320x240, I'm creating a plugin that allows me to see skype messages on this display even when I'm playing full screen games.
The biggest problem I have, ...
4
votes
2answers
118 views
Graphics.DrawString chopping mid-word
I have created a usercontrol which is basically a button with some nice little features.
One of those features is that it determines the largest font size possible for the text, whilst keeping the ...