4
votes
3answers
2k views
How do you Draw Transparent Image using System.Drawing?
I'm trying to return a transparent GIF from an .aspx page for display within a web page. I am trying to get the image to have transparency, but I just keep getting Black being wher …
3
votes
4answers
90 views
Drawing vertically stacked text in WinForms
Preferably using a Graphics object, how do you draw a string so that the characters are still oriented normally, but are stacked vertically?
Hopefully this rough picture conveys w …
3
votes
2answers
207 views
How can I iterate through each pixel in a .gif image in C#?
I need to step through a .gif image and determine the RGB value of each pixel, x and y coordinates. Can someone give me an overview of how I can accomplish this? (methodology, whi …
3
votes
4answers
155 views
Drawing a contrasted string on an image
Hey,
So, I have a snapshot of a video source, which I get into an Image, grab a Graphics object for it, and then draw a timestamp in the bottom right of the image. No problem thu …
3
votes
2answers
517 views
Get a Bitmap from a WPF application window?
The Winforms System.Windows.Forms.Control class has an instance method "DrawToBitmap" which I think is very useful in a variety of circumstances. I'm wondering if there's an equiv …
3
votes
1answer
257 views
Image.FromHbitmap WPF equivalent
Hello.
Is there a System.Drawing.Image.FromHbitmap equivalent in WPF?
Also, is it possible to dispose the handle properly after creating an image?
Thank you.
3
votes
3answers
3k views
Convert Pixels to Inches and vice versa in C#
I am looking to convert pixes to inches and vice versa. I understand that I need DPI, but I am not sure how to get this information (e.g. I don't have the Graphics object, so that' …
3
votes
4answers
619 views
System.Drawing in Windows or ASP.NET services
According to MSDN, it is not a particularly good idea to use classes within the System.Drawing namespace in a Windows Service or ASP.NET Service. Now I am developing a class librar …
3
votes
1answer
142 views
Getting .Net Font information?
Is there a wrapper around the Win32 API for getting font information without actually instantiating an instance of the .NET Font class?
For example, some fonts do not have a regu …
2
votes
2answers
157 views
System.Drawing Error: Can or Cannot it be used in an ASP.Net application
We are using System.Drawing in and application to manipulate images in a web application (rotate, flip, etc). For the last month we have been getting the following error very spor …
2
votes
3answers
423 views
(C#) How to draw an “a” with Tahoma with height = 6
Hello
I've been trying to do this, but for some reason this is just giving me weird results:
int bpp = Screen.PrimaryScreen.BitsPerPixel;
string fontName = "Tahoma";
Font font = …
2
votes
4answers
316 views
How to disable subsampling with .NET / GDI+ ?
I am trying to save a JPEG image using the Bitmap class. I noticed that sharp edges were always blury regardless of the quality level that I specify. I figured out that it is due t …
2
votes
1answer
352 views
Path to Triangle List (.NET/C#)
Given a path expressed as an array of 2d points:
Point[] path = new Point[4]
{
new Point(0,0),
new Point(10,0),
new Point(10,10),
new Point(0,10),
};
... Here, a …
2
votes
4answers
1k views
Cannot render image to HttpContext.Response.OutputStream
Basically I am trying to render a simple image in an ASP.NET handler:
public void ProcessRequest (HttpContext context)
{
Bitmap image = new Bitmap(16, 16);
Graphics graph …
2
votes
3answers
1k views
WPF v/s System.Drawing
I have to code a simple control in .Net that draws geometry that looks like following image and the geometry doesn't get any more complex than shown in this image, i.e. it will be …
