| Thread | Last Post | Replies |
|
| French letters (?,?,?) printing issue | 15 Sep 2003 20:12 GMT | 5 |
I have an C# application sending printing code directly to Epson TM-T88 Thermal printer instead of using Windows Driver. Everything is fine at printing English. But I got a headache at printing some French letters like "?,?,?".
|
| Problems whith Type1 Fonts | 15 Sep 2003 16:59 GMT | 2 |
I would like to make a preview of text with Type1 fonts and not TrueType. But i know that GDI+ only use TrueType installed fonts. Do you know how can i do this ?
|
| Efficient Memory use in GDI+ | 15 Sep 2003 14:56 GMT | 3 |
In terms of memory used, would it be more efficient to store just a Color variable and then create a new Brush/Pen each time a paint is required, or store a Brush/Pen variable for re-use. All examples + real world code uses the "store Color and create Brush/Pen
|
| Blending and good books on GDI+ | 15 Sep 2003 11:21 GMT | 2 |
Hi, the follow code is blowing up with invalid parameter, although to me it looks fine (and compiles fine). Does anyone know of any good books on GDI+? private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
|
| Can I group 2 Graphics and rotating them together? | 15 Sep 2003 10:20 GMT | 2 |
e.g. I want to create 1 triangle and 1 square (DrawPolygon and DrawRectangle?) and then group them together to form a "house" (???) then rotote the "house" in 90deg clockwise (Matrix and setTransform????)
|
| RLE (packbits) with TIFF files | 14 Sep 2003 03:39 GMT | 5 |
Does anyone know how to correctly apply RLE (packbits) compression to a TIFF file? In fact, can you even apply any compression other than LZW using GDI+? I tried the following with no luck:
|
| refresh the screen | 14 Sep 2003 03:37 GMT | 1 |
I want to refresh all the screen (including the desktop) or a part of the screen. I can have a reference to the screen with win32 API : [DllImport("user32")]
|
| Transparent Toolbars | 14 Sep 2003 03:36 GMT | 1 |
How do you set the TBSTYLE_TRANSPARENT style in .NET. The SetStyle method is hidden in the Toolbar control. Arggg! Thanks, Randy
|
| System.Drawing.Drawing3D | 13 Sep 2003 20:17 GMT | 2 |
OK, so there's no System.Drawing.Drawing3D. Will there be? I have a presentation framework that supports abstract representation and 2D representation of presentations. I'd like to add
|
| GDI+ designer | 13 Sep 2003 05:09 GMT | 9 |
My company is about to release a product which provides a WYSIWYG editing experience for GDI+ object layout for multipage print documents and other design surfaces. It works like popular vector drawing tools, but produces VB, C#, and J$ code using the codedom. You could think of ...
|
| PCX last legs!! | 12 Sep 2003 16:48 GMT | 7 |
I have been making a huge effort (For myself anyway) to try to read PCX images in VB.NET and convert it into a bitmap object. I have managed to get the header, the palette (If available) and the data (decoded too). Now I have the decoded data, surely drawing the image on a ...
|
| "Generic Error in GDI+" | 12 Sep 2003 15:43 GMT | 7 |
I'm haivng a little difficulty saving an image encapsulated by an Image object to a stream - when Image.Save() is called an exception is thrown with the message "Generic Error in GDI+". This code is executed as part of a Windows Forms application running from a local codebase
|
| Trouble Using UpdateLayeredWindow API | 12 Sep 2003 15:10 GMT | 2 |
Can anyone point out to me what's wrong with this piece of code. I'm trying to load a png file into a picture box and correctly display the alpha channel. The call to UpdateLayeredWindow seems to fail (it always returns 0) and I can't figure out why.
|
| Pattern Gradient (not color gradient) | 12 Sep 2003 12:35 GMT | 5 |
G'Day all, (originally posted in another group, sorry.) I know about multi-color linear gradients. My problem is that while the blended color bars I am
|
| System.Windows.Forms.Screen won't give me all the screens | 12 Sep 2003 05:07 GMT | 2 |
I am curious to know if there is any way to retrive the display devices not listed in System.Windows.Forms.Screen.AllScreens (by my expirements only desktop connected displays exist in this collection) I wish to detect displays that are attached to the system but were not
|