Tagged Questions
The graphicspath tag has no wiki summary.
13
votes
4answers
1k views
.Net Opposite of GraphicsPath.Widen()
I need the opposite of the GraphicsPath.Widen() method in .Net:
public GraphicsPath Widen()
The Widen() method does not accept a negative parameter, so I need the equivalent of an Inset method:
...
3
votes
1answer
440 views
Converting SVG path data into GDI+ GraphicsPath data
Is there an easy way to convert an SVG path tag into a C# System.Drawing.Drawing2D.GraphicsPath? They are both closely related and I was hoping there would be an easy to convert the SVG path data into ...
3
votes
1answer
482 views
Using GEO coordinates in C# to draw map
He,
I want to draw a Countrymap in C# with LAT/LNG coordinates. I have to translate the lat/lng to pixels, what would be the best way? I can draw the 'Map' but it's very small and it's not in the ...
3
votes
4answers
286 views
GraphicsPath.IsClockWise() Extension Method
I need to create an extension method for a GraphicsPath object that determines if the GraphicsPath is wound clockwise or counter-clockwise.
Something like this:
public static bool ...
2
votes
5answers
796 views
GraphicsPath Polygon Fitting in C#
I need to "fit" an arbitrarily shaped GraphicsPath into a defined space (almost always a Rectangle or Circle).
I currently scale the GraphicsPath using the Matrix object and the scaling works fine, ...
2
votes
3answers
1k views
.NET GDI+: Drawing lines with rounded corners
Given an array of points, it is easy to draw a line based on these, e.g. using the GraphicsPath class.
For instance, the following array of points...
[0]: (0,0)
[1]: (100,0)
[2]: (0,100)
[3]: ...
1
vote
0answers
32 views
How to manage char spacing in GraphicsPath.AddString?
I need to change distance between characters when adding string in GraphicsPath. What is the best way to do this?
1
vote
1answer
299 views
What's the opposite of polygon triangulation?
After I've done a 2D triangulation, some triangles have the same color and I want to recombine them for drawing into like-colored graphics paths. I find that if I just draw the triangles one by one, ...
1
vote
1answer
150 views
GraphicsPath doesn't always refresh itself
The simple curve in this application only appears when it's dragged off the screen, or the window is resized. When the application just starts up it doesn't appear, and when the window is maximized or ...
0
votes
1answer
28 views
Envelope Distortion with .Net Graphicspath
I'm trying to figure out the best way to accomplish warping a GraphicsPath in .net to a specific shape. The result I'm trying to achieve is warping text to curve up, down, fan left, right, and things ...
0
votes
1answer
125 views
Create a Region or GraphicsPath from the non-transparent areas of a bitmap
I want to hit-test a drawn bitmap to see if a given Point is visible in the non-transparent pixels of the image.
For example, to do this test for the whole bitmap rectangle, you would do something ...
0
votes
1answer
105 views
DrawPath(Pen,GraphisPath) is throwing OutOfMemoryException
I've been over this for a couple of time and can't figure it out. the method DrawPath is throwing a System.OutOfMemoryException.
I've seen that the pen.DashPattern is actually throwing ...
0
votes
1answer
105 views
Implementing Matrix Transform on New Object
I need to be able to transform one of my own objects along with some GraphicsPath objects in .Net. I need any scaling, translation, rotation operations that are performed on the GraphicsPath objects ...
0
votes
1answer
341 views
GDIPlus Gradient along a circular GraphicsPath
i have a "donut" in a graphics path.
i would like to draw a gradient along that path and control when a color starts and ends by a given start and end angle on the circle.
like this,
...
0
votes
1answer
187 views
How to create a clip region from a path that includes the 'outline'?
I am creating a rounded rectangle GraphicsPath (see red outline image below), and then using this as a clip region both when drawing graphics, and as the Region of a Form.
Unfortunately, although ...
0
votes
1answer
443 views
IronPython: Creating & Adding An Array Of Points To A GraphicsPath
Greetings;
I'm having a bit of trouble correctly instantiating an Array of System.Drawing.Point instances, and then adding the Array of Points to a GDI+ GraphicsPath instance using IronPython in a ...
0
votes
1answer
146 views
Dynamically removing/adding(cancel the removal) form area in c#
How do i dynamically removing/adding(cancel the removal) form area using region and graphics path class
0
votes
2answers
595 views
How to determine endpoints of Arcs in GraphicsPath PathPoints and PathTypes arrays?
I have the following PathPoints and PathTypes arrays (format: X, Y, Type):
-177.477900, 11021.670000, 1
-614.447200, 11091.820000, 3
-1039.798000, 10842.280000, 3
-1191.761000, 10426.620000, 3
...