Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > dotnet drawing api > may 2005 > threads for may 1 - 7, 2005

Filter by week: 1 2 3 4 5

Where are my missing EXIF properties???
Posted by Darrell Plank via DotNetMonster.com at 5/6/2005 12:00:00 AM
When I look at the EXIF properties in my bitmap's PropertyIdList I find 20 properties. When I look at the "Summary" tab of the properties dialog for this image I only find 8 properties listed. Then when I look at it in Photoshop I find 25 properties including most of the ones I want but don't ...more >>


One for the matrix manipulation guru
Posted by Tom at 5/6/2005 12:00:00 AM
Hi I am creating a canvas drawing surface and currently implementing methods to move and resize primitive objects (rectangles, circles etc). I have a problem with resizing which can be described as follows: The primitive object is declared as Public Class Shape Protected mPosition as...more >>

16-bit TIFFs
Posted by pgrkovic NO[at]SPAM hotmail.com at 5/5/2005 1:14:12 PM
Hello. Does anybody have any sample source code for manipulation of 16-bit TIFF? It throws an exception when executing Bitmap.FromFile, but anyway, even if I was able to load it, I don't see the way to read pixel values. GetPixel returns Color and R, G, B members of Color are bytes and I need...more >>

Graphics shape quality problem
Posted by Andrew at 5/5/2005 6:28:11 AM
Hello, In my application I draw a series of rectangle type shapes across the view (to represent structural building supports) which are typically calculated to be 3.5 by 6.2 pixels. The shapes are the equivalent of a rectangle with the middle section of one side absent so as to look li...more >>

Vertical Font Rendering
Posted by Phil Jones at 5/5/2005 12:00:00 AM
Is there a way to render text from top-to-bottom (vertical) rather than left-to-right? I thought this was possible - but I can't see how. Thanks anyone! === Phil ...more >>

Please help me - No option to Add References
Posted by luke NO[at]SPAM onlinescam.com at 5/4/2005 4:41:46 PM
Hi people. I'm using Visual C++ .NET 2002 & I'm trying to follow a tutorial on the GDI+ interface. One of the first things it says to do is to "add reference to the System.Drawing.dll and import System.Drawing namespace". This is done by adding a "reference to the System.Drawing.dll using Pro...more >>

Problem with drawing a multiple lines
Posted by Piotrek \ at 5/4/2005 12:00:00 AM
Hello! I have a small problem with my program. I'd like to draw multiple lines, which will creatre a graph or something like that. I know that drawing a lines isn't a problem, i can put all of them inside onPaint method, but i'd like to add every line from inside the program, for example: ...more >>

PictureBox KeyDown Event
Posted by Sanjay at 5/4/2005 12:00:00 AM
hi, There is no KeyDown(or any Other Key events for that matter) event of pictureBox in .Net.It was not so in VB6.We have used it extensively all over in our project.. What is its replacements in .NET ? thanking sanjay ...more >>



Save GDI control as bitmap (jpg)?
Posted by Michael Howes at 5/3/2005 4:34:44 PM
I inherited a control that is all drawn manually. GetGDIItem/FillEclipse/FillRectangle etc What I need to try and figure out is how to save the current "view" of this UserControl as a jpg I'm 100% new to windows/.net/drawing any pointers to namespaces/classes in .Net/C# to look at? ...more >>

links/help for using a window handle to draw image on?
Posted by Flip at 5/3/2005 11:07:38 AM
I'm trying to create a screen saver using C# (.NET 1.1) and I have found a few examples, but the ones I'm looking at explicitly leave out the examples for the preview. :< I saw one (not sure where anymore :<) about receiving a window/graphics handle? Is that possible? Does anyone know of an...more >>

HTML Snapshot
Posted by emac at 5/3/2005 12:25:08 AM
I need to find a way to do a image capture of a webpage on the fly... A user clicks a bookmarklet which passes the URL to the server...I need to then pass this to a service...not sure system.drawing? ...and then process the HTML or webpage into a image...this is for an archiving site where us...more >>

16-bit tiff
Posted by sandpg NO[at]SPAM cytanet.com.cy at 5/3/2005 12:13:07 AM
Hello all. Does anybody know of any sample source code for handling 16-bit tiffs in .net? Bitmap.FromFile throws "A generic error occurred in GDI+." exception if loaded file is 16-bit tiff. Anyway, Bitmap.GetPixel returns Color and Color.R is byte, so even if I could manage to load it into B...more >>

Resizing primitives
Posted by Huey at 5/3/2005 12:00:00 AM
I am making a simple vector drawing tool drawing onto a canvas. I can display, zoom and rotate. Now the time has come to implementing = resizing of objects. A drawing object is described as Public Class Shape Protected mPosition as new PointF(0,0) Protected mSize as new SizeF(0,0) Pro...more >>

Drawing to a window on a form
Posted by Steve Magoon at 5/2/2005 9:29:31 PM
I would like to draw lines and points into a "window" on my form. I would like the window to have shading and the 3D effects much like the Panel or Picturebox do. I will be using the retained mode graphics system to draw several layers into this window, and scroll some of the layers. How shoul...more >>

want to get the all coordinates along ellipse
Posted by solo h via DotNetMonster.com at 5/2/2005 10:56:18 AM
hello members, i create an ellipse on OnPaint event using following syntax g.DrawEllipse(bluePen,startPoint.X, startPoint.Y, currentPoint.X- startPoint.X, currentPoint.Y-startPoint.Y); i am able to create ellipse, now i want to get all the coordinates along the line of ellipse means all ...more >>

blurred line
Posted by Kristof Nachtergaele at 5/2/2005 12:00:00 AM
Hi, i'm having the following problem, if i draw a horizontal or verical line with the smoothingmode set to antialias or high quality i get a line that is not smoothed. Now i realise that this is due to the fact that they are vertical/horizontal, and no smoothing is required in this case,...more >>

Declare Vs Dllimport
Posted by Sanjay at 5/2/2005 12:00:00 AM
hi, Is there any difference between Declaring APIs through Declare statement as we used to do in VB6 and declaring it through DllImport as we often find using in .NET plateform. I have gone both ways and they are working properly. I have a lot of APIs declared in my project declared VB6 w...more >>


DevelopmentNow Blog