| Thread | Last Post | Replies |
|
| Covert Pixel to Point | 18 Jun 2006 07:59 GMT | 2 |
How can I convert measurement in Pixel unit to Point unit? e.g., 10pixel = ? point Thanks. --
|
| Color description | 16 Jun 2006 18:35 GMT | 2 |
I would like to understand the meaning of these colour descriptions e.g.#E7E7FF or #4A3C8C Is it RGB and how it is represented within these description?
|
| GDI+ bitmap saving question | 16 Jun 2006 18:22 GMT | 2 |
Am I correct if I say that saving bitmaps using bitmap.Save("filename", ImageFormat.Tiff); is actually saving the bitmap in a separate thread, and that the "filename" file is not ready for reading immediately after the next line of the app
|
| GD Indicator! | 16 Jun 2006 02:33 GMT | 2 |
A While ago I downloaded a great application named "GDI Indicator" Which helps you track how many GDI object are instanciated (and if you forgot to free some!) However I can't find it again!
|
| A bug with PenAlignment ?? | 15 Jun 2006 09:12 GMT | 2 |
I just make some test to see the effect of PenAlignment. And I noticed that: * using Graphics.DrawLine: no effect, it is always "Center" * using Graphics.DrawRectangle: Center and Inset are ok but Left, Outset and
|
| Fill an irregular shape with color | 14 Jun 2006 22:15 GMT | 3 |
How do I fill an irregular shape with a given color in an image with System.Drawing? Let's say I have a map of North America and I want to paint the USA with a color given by my user. It's just like doing a fill with paint or photoshop
|
| Graphics DPI is confused | 14 Jun 2006 14:12 GMT | 3 |
I have some trouble with the Graphics.DpiX / Y The value of DpiX and DpiY is the value configured in the "Display" configuration panel and is by default set to 96 dpi. So, my resolution is 1600x1200, I used a transformation and set pageunit to
|
| Fast "clearing" of Image pixels | 14 Jun 2006 14:01 GMT | 2 |
I want to ask about fast "clearing" image to transparency color. Something like: FillRect(Brushes.Transparent, 10, 20, 16, 16), but because all new pixels are transparent then... all will be ignored. Generally I have buffer (Bitmap) object. This buffer is divided on
|
| modifying each frame in multiframe tiff and saving | 14 Jun 2006 08:39 GMT | 2 |
I am writing a cheque (check) printing application, which draws the cheque on the front and back of a 6 X 2.5 dimension image. I have used a 2 frame tiff file (for front and back). For performance reasons I am creating a temp image file containing the basic
|
| Image.Save throws error | 14 Jun 2006 00:14 GMT | 2 |
I'm doing a System.Drawing.Image.Save(filepath) but it gives me the error "A general error occured in GDI+". I did browse through many solutions but none worked. I'm doing this in the C# code that I'm writing to customize MS Word (COM Add-in). I even tried Bitmap.Save but
|
| drawing text in grid cells | 13 Jun 2006 16:49 GMT | 2 |
OnPaint I need to draw the text contents of lots of grid cells. For it to look right, each cell's contents cannot be rendered outside the bounding rectangle of the cell. Only, DrawString does not allow me to specify a bounnding rectangle. Do I really need to create a new Region ...
|
| LinearGradientBrush | 13 Jun 2006 14:39 GMT | 2 |
I'm trying to draw a linear gradient between two colours using the LinearGradientBrush class. It sounds simple enough however I get a line of the second colour at the top of the gradient in certain situations. Placing the code below in the paint event of a Panel will hopefully ...
|
| Read XMP (photoshop) metadate from file | 11 Jun 2006 00:08 GMT | 1 |
I need to access the XMP-metadata stored by Photoshop in jpeg-files. I have been looking for a solution for hours on google, google groups etc et c Fields can be found here: http://www.portfoliofaq.com/pfaq/FAQ00311.htm And Adobe (who invented the format as far as I can tell) has ...
|
| 1 bit image manipulation | 09 Jun 2006 18:21 GMT | 1 |
I have 1 bit CCITT 4 compressed TIFFS. I can save these efficiently, but as soon as I modify the image using the graphics drawstring method to stamp some text on the image, I have to convert the image to 1bit to get it to save back using the CCITT 4 compression.
|
| Drawing a line at an angle in ASP.net | 09 Jun 2006 03:23 GMT | 1 |
I am tying to build a ASP.net 2.0 based web page which displays a Analog Guage ( 0 to 180 degrees) with an Arrow in the middle. The application accepts the Percentage as input from a text box and then generates an image which shows a Arrow pointer dipicting that percentage on
|