By tag: Imaging
0
kicks
Free Google Charts API Released
I'm not sure if this is .NET related enough, but it's got the potential to be very useful for any web development. You just pass the data and chart parameters on the QueryString and it returns a PNG with your chart. Pretty nifty.
0
kicks
Rendering a WPF Container to Bitmap
One of WPF's nicer features is its ability to render any visual into a bitmap easily, and so I thought I'd create a simple little tool that would create rounded corner bitmap bars with transparent backgrounds. It's actually quite easy to do, but I ran into a few pitfalls and inconsistencies that mak...
0
kicks
Content-Aware Image Sizing - WOW
Cool video I found on YouTube about a software that resizes images with an content-aware algorithm. Must see...
0
kicks
HttpHandler for Images in ASP .NET 2.0
Http Handler:
Http Handler is a class that is responsible for rendering a particular resource, or a particular type of resource.
Http Handlers are somewhat similar to ISAPI Extensions. If implements, it behaves like a filter between Web Server and the Client. Whenever client makes a request to t...
0
kicks
Render PNG from ASPX
Workaround for exception that results from the following:
Syste.Drawing.Bitmap.Save(HttpContext.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Png);
0
kicks
Source for thumboo.com thumbnailing service and database released
Michael Schwarz has released the source code for his recent project, thumboo.com.
0
kicks
WebSnapr provides thumbnailing service (used by dotnetkicks.com)
I have added thumbnail previews to story summaries on DotNetKicks.com. The service is provided by websnapr.com.
0
kicks
NoiseKiller.NET C# application for noise reduction
NoiseKiller is a open-source .Net Framework application for noise reduction.
0
kicks
ImageReflection with the Atlas Control Toolkit
A control extender to apply a reflection effect to images.
0
kicks
Reflection for images... not *that* Reflection!
A web control to create a mirror-reflected images with script.aculo.us.
0
kicks
C#: Generate an image of a web page
I have some WinForms applications that would benefit from having images and thumbnails (sometimes called thumbshots) of internet web pages and so I decided yesterday to have a look at how to approach this.
0
kicks
Image Processing Lab in C#
Image Processing Lab is a simple tool for image processing, which includes different filters and tools to analyze images. It’s easy to develop your own filters and to integrate them with the code or to use the tools in your own application.
The following filters are implemented in the library:
...
0
kicks
Retrieving "Date Taken" EXIF Metadata From a JPG
Describes how to use GDI+ in the .NET framework to access the "Date Taken" EXIF metadata in JPGs. Examples are in C#.