Stories recently tagged with 'GDI '

GDI+ painting basics(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 3 years, 9 months ago

The core of GDI+ is the Graphics class which draws all the needed lines, curves, shapes, text and images. The Graphics class encapsulates a GDI+ drawing surface, which can be a window or print document. You paint on this drawing surface using a combination of the methods the Graphics class provides. read more...

add a comment |category: |Views: 51

tags: another

GDI+ Windows rendering API(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 3 years, 10 months ago

Microsoft GDI+ is a part of Windows XP/Server 2003 operating system that provides 2D vector-based graphics, imaging and typography. GDI+ is an improved version of the old GDI (Graphics Device Interface), which is part of previous Windows versions. The GDI+ programming model has been revised to make graphics programming easier and more flexible. read more...

add a comment |category: |Views: 29

tags: another

Exploring GDI+ : Using the Pen(amrelsehemy.net)

submitted by AmrElsehemyAmrElsehemy(2585) 3 years, 10 months ago

This post describes how to use the Pen object in drawing and using sepcial characteristics of the pen like DashStyle and LineCaps. read more...

add a comment |category: |Views: 23

tags: another

Exploring GDI+ : Using The Brush(amrelsehemy.net)

submitted by AmrElsehemyAmrElsehemy(2585) 3 years, 11 months ago

This post shows the different types of brushes built in GDI+, how to work with them and how they look. read more...

add a comment |category: |Views: 28

tags: another

Exploring GDI+ : Using The Brush(amrelsehemy.net)

submitted by AmrElsehemyAmrElsehemy(2585) 3 years, 11 months ago

This post shows the different types of brushes built in GDI+, how to work with them and how they look. read more...

add a comment |category: |Views: 28

tags: another

GDI+ Graphics Transformation(en.csharp-online.net)

submitted by HyleHyle(2755) 4 years, 11 months ago

Learn to transform graphics—reflect, rotate, scale, shear, translate—using .NET GDI+ (Graphics Device Interface). Excerpt: A transformation is a process that changes graphics objects from one state to another. Rotation, scaling, reflection, translation, and shearing are some examples of transformation. Transformations can be applied not only to graphics shapes, curves, and images, but even to image colors. read more...

add a comment |category: |Views: 70

tags: another

A csharp image enhancement filters library(codeproject.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 2 months ago

This project started from a need. A need to have a simple image/photo .Net filters functionality to style and enhance pictures to be displayed on the web (or any other place for that matter). True, there are some filter libraries scattered around the web for doing stuff like a WaterMark or a GrayScale or even a collection of those (ImageMagick) , in most of the times they are very basic or unhelpful for styling images. Furthermore the .NET System.Drawing.* namespace doesn't provide any basic or sophisticated capabilities, for example there isn't a proper rotate or resize functionality .So the goal was to collect all of the nice .NET filters that are out there into a single package and to extend it by providing more useful and styled filters. read more...

add a comment |category: |Views: 175

tags: another

Using System.Drawing to Create dynamic charts(sitepoint.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 5 years, 2 months ago

Excellent beginning tutorial that covers using System.Drawing to create dynamic charts. It starts from the basics of figuring out coordinates and progresses through creating the chart and saving it as an image file. Downloadable code is included. read more...

add a comment |category: |Views: 250

tags: another