| Thread | Last Post | Replies |
|
| Inverting | 26 Apr 2008 16:33 GMT | 2 |
Is there an easy way to draw inverted lines/rectangles/circles using System::Drawing::Graphics? I need this to draw outlines that are visible on top of any type of background image.
|
| Bitmap + Clipboard + Transparency = Blue Background? | 25 Apr 2008 10:13 GMT | 35 |
Hey folks, I think this is my first time asking a question here, so please go easy on me I have an application wherein I render a transparent bitmap (to be specific -- a chart with a transparent background).... When I do, I then try to copy
|
| DrawDriverString EMF Record | 21 Apr 2008 16:45 GMT | 1 |
I am trying to use Graphics.EnumerateMetafile in order to inspect any DrawDriverString EMF records in a metafile and then change the string that is contained within the record before using Metafile.PlayRecord to draw the modified record.
|
| Text in Metafiles | 21 Apr 2008 16:37 GMT | 5 |
Is there any way I can execute some sort of search and replace on the text inside a metafile in code? For example, if I had an instance of a Metafile I;d like to serach through it looking for anu instances of the string "hello" and replace it with
|
| How many New Courier characters fit int 6.5 inches | 21 Apr 2008 12:50 GMT | 2 |
What is the width of a New Courier 12 point letter? Or, how many such characters fit into 6.5 inches? Thanks in advance
|
| GC.Collect() not cleaning memory, how to find out what references to lots of memory still exist? | 16 Apr 2008 19:36 GMT | 1 |
GC.Collect() not cleaning memory, how to find out what references to lots of memory still exist? When all my processign is done i set everything to null and then: GC.Collect();
|
| Retaining png transparency problem | 15 Apr 2008 06:40 GMT | 7 |
This code will display a transparent png image correctly: Bitmap bm = (Bitmap)Bitmap.FromFile(path); outerImage = bm; ultraPictureBox1.Image = outerImage;
|
| A generic error occurred in GDI+. | 14 Apr 2008 04:53 GMT | 2 |
I get this error when serializing a object. Specificly an bitmap in the object. This object is obtained from a different dll than the one serialized, could that be the problem? That seems to be the only difference...
|
| PerformanceCounterCategory.Create() takes 3 minutes to add a new category!! How come? What can cause this? | 11 Apr 2008 15:18 GMT | 1 |
PerformanceCounterCategory.Create() takes 3 minutes to add a new category!! How come? What can cause this?
|
| Virtual Units in GDI+ | 10 Apr 2008 21:48 GMT | 1 |
I am in the process of writing a viewport control, that will used to dispay musical notation. The geometry of the musical notation however is represented as virtual units, though I have an algoithm that can convert these virtual units to
|
| Maximum Bitmap size | 10 Apr 2008 01:14 GMT | 2 |
When I use the following code in a web page it works fine until my Bitmap size gets to a certain size, e.g. 5214 x 3223. Then I get a red cross, but no run time error occurs. What is the maxmum size of the bitmap and how do I trap for the error?
|
| winforms drawing problem with labels and picturebox | 10 Apr 2008 00:04 GMT | 1 |
.NET 2.0, VS Studio 2005 Enterprise, on Win XP Pro SP2 machine Hi, I have a form in my application that contains some labels and one picturebox.
|
| Color problems when converting indexed8 to 24 bit | 04 Apr 2008 09:49 GMT | 14 |
I'm having a problem converting an indexed8 tiff image to a 24bit image. When I convert it with DrawImage or for example DrawImageUnscaledAndClipped it drops the RGB with one. For example (255,255,255) would become (254,254,254). I've tried the victor image
|
| Converting 8 bit indexed to 24bit | 04 Apr 2008 05:25 GMT | 2 |
Trying to convert 8bit indexed to 24bit I came across this: The code below will NOT convert the indexed8 image to a 24bit image24, (look below the code snipet) Dim image As Bitmap
|