Skip to main content

Posts

Showing posts from September, 2009

Vector Graphic vs Raster Graphic

Raster graphics In computer graphics, a raster graphics image or bitmap is a data structure representing a generally rectangular grid of pixels, or points of color, viewable via a monitor, paper, or other display medium. Raster images are stored in image files with varying formats (see Comparison of graphics file formats). A bitmap corresponds bit-for-bit with an image displayed on a screen, generally in the same format used for storage in the display's video memory, or maybe as a device-independent bitmap. A bitmap is technically characterized by the width and height of the image in pixels and by the number of bits per pixel (a color depth, which determines the number of colors it can represent). Raster graphics are resolution dependent. They cannot scale up to an arbitrary resolution without loss of apparent quality. This deficiency contrasts with the capabilities of vector graphics, which easily scale up to the quality of the device rendering them. Raster graphics deal more prac...

XBAP vs Silverlight

XBAP - XAML Browser Application XBAPs allow you to run Rich Internet Applications that look and function like WPF desktop applications. These XBAPs run inside the Internet Explorer or Mozilla Firefox in a separate sandbox to prevent applications from accessing resources on the local system. A restriction on XBAPs is that they need .NET framework 3.0/3.5 or higher to be installed on the client machine to run. Silverlight So if you want your application to be available on the internet and not dependent on the .NET framework, Silverlight is the way to go. Silverlight is a cross platform, cross browser plugin that allows you to run applications defined in XAML inside the browser. Silverlight supports a subset of XAML as of now.