.NET news » Graphics Graphics Rss Feed

Professional Expression Blend 3.0: with Silverlight
Author: Alexandra Young
Average rating: 0 / 0
(0 reviews)
More .NET Graphics books
download

A Fine-looking Segmented LED Control

This article describes an approach to constructing a cool segmented LED displayer that is similar to the LEDs used in alarm clocks and industry monitors. This control can be used to display time, numerical values and even some English characters. I hope it will be helpful in programs such as hardware simulators.
12 May 2008, 06:19:00   Source: A Fine-looking Segmented LED Control   Tags: Components Graphics

Simple slide game using Viewbox

This is a very simple article that really just demonstrates the various capabilities of the WPF ImageBrush. The basic idea is that the attached demo emulated one of those 9 square puzzles you used to get in XMAS stockings.
29 Apr 2008, 02:54:00   Source: Simple slide game using Viewbox   Tags: Examples Graphics

Graph Library

This article addresses the construction of a simple graph library using C#.
10 Apr 2008, 06:55:00   Source: Graph Library   Tags: Graphics

How to Use Transparent Images and Labels in Windows Forms

The controls in Windows Forms (.NET) don't support true transparency. In this article we show how to use transparent labels and images.
8 Apr 2008, 07:59:00   Source: How to Use Transparent Images and Labels in Windows Forms   Tags: GUI Graphics

Arcball OpenGL in C#

Arcball (also know as RollerBall) is probably the most intuitive method to view three dimensional objects. The principle of the arcball is based on creating a sphere around the object, and let users to click a point on the sphere and drag it to a different location. There is a bit of math involved of course and you can Google it. The code here is a C# source code implementing an arcball in OpenGL (CsGL to be exact).
28 Mar 2008, 17:04:00   Source: Arcball OpenGL in C#   Tags: Graphics Examples

Texture Transfer using Efros & Freeman's Image Quilting Algorithm

A texture transfer program that implements Efros & Freeman's texture transfer algorithm

Combined Grayscale and Color Images

After growing tired of spending hours zoomed in at 800% magnification using the polygon lasso tool to create combined grayscale and color images in Macromedia Fireworks, I decided that there had to be a better way. Thus I embarked upon creating this application to make my life and hopefully that of others easier.
25 Jan 2008, 11:51:00   Source: Combined Grayscale and Color Images   Tags: Graphics Examples

Simple Column Chart Generator

This article shows how to generate some column chart images for your users on a easy way. You can simply give some arguments to the class library and receive back an image object, or directly save it on hard disk.
18 Jan 2008, 18:02:00   Source: Simple Column Chart Generator   Tags: Graphics Examples

Simple Image Resizing Library

My goals for this library were to make it easy to use, and flexible enough to be used no matter how you store your images (FileSystem, Database, Amazon Web Services, etc). As for the discussion on which way is the "best" way to store images - I'll leave that to someone else. However, anyway you go, there's still some common things you have to think about: resizing images and maintaining aspect ratio, uniqueness of file names, etc.
18 Jan 2008, 17:37:00   Source: Simple Image Resizing Library   Tags: Graphics

Dynamic Images with ImageTemplate.NET

Have you ever had the need to generate images on the fly in your ASP.NET applications? You could use GDI.NET to do this directly, but we think we have an easier way. Enter ImageTemplate.NET. ImageTemplate.NET lets you configure an image template in an XML file and then change the image that is generated by passing parameters in the URL.
27 Oct 2007, 05:29:00   Source: Dynamic Images with ImageTemplate.NET   Tags: Graphics ASP.NET