Home >
.NET Imaging SDK >
C# >
Image Filtering
If this is your first time to use our DocImageSDK, we strongly suggest you reading How to Start first!
Overview on C# Code to Filter Image
RasterEdge .NET Imaging SDK provides imaging developers with a variety of
image filtering processing functions for adding noise and antique effect within digital images, blurring and sharpening images.
print pdf vb.net without acrobat,
c# compress pdf size,
c# edit pdf,
itextsharp add image to pdf vb.net,
c# print pdf adobe reader,
c# code 128 reader.
If you are finding an image processing tool that can fit your needs best, then RasterEdge must be your best choice. All the supported image filtering applications are like below:
Related .net document control helps:
asp.net dicom library: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
asp.net edit pdf text using c#:
ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net annotate pdf using c#:
ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
c# asp.net mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
asp.net document viewer example:
EdgeDoc:ASP.NET Document Viewer C# Control:
Open, view, annotate, redact, convert documents online in C#, VB.NET, AS...
asp.net sharepoint document viewer control: ASP.NET SharePoint Document Viewer: view, annotate, redact documents in SharePoint
asp.net view text file in browser: ASP.NET Text file viewer in MVC, WebForms: Open, view, annotate, convert txt files in C# ASP.NET
- Add noise to images in C# class project
- Blur images with "ApplyBlur" & "ApplyBlurGaussian" methods
- Add antique effect to images in C# project
- Distort images in C# project
- Sharpen images by using RE image sharpening APIs
vb.net code to extract text from pdf,
c# convert pdf to text file,
convert bmp to pdf c#,
c# pdf file watermark,
extract images from pdf c#,
merge pdf c# itextsharp,
vb.net preview pdf file.
In this user's manual page, you can get the detailed benefits, features and operating instructions of image filtering functions:
- Benefits and technique list of image filtering functions within .NET Image SDK in C# class
- How to start an image filtering project in Visual C#.NET
asp.net add text to pdf file,
asp.net image viewer,
asp.net pdf viewer control c#,
asp net remove image from pdf,
asp.net preview pdf,
asp net mvc show pdf in div,
how to edit pdf file in asp.net c#.
- How to apply image filtering functions in C# program, and specific operations include image noise, antique effect adding, blurring and sharpening images
Benefits and Technique List of Image Filtering in C#
- Image filtering technology available for C DLL, .NET, iOS, OS X, Android and web services
- Easy to add image filtering operations to single and multi-threaded applications including IIS and Windows WF hosted applications
- Compatible with Visual Studio 2005 + & .NET Framework 2.0 + developing environments
- Supported by the standard based C#.NET Imaging Processing SDK
- Full managed C# code for image filtering applications to enhance image quality
- Comprehensive image filtering APIs for adding noise and antique effect to image, sharpening and blurring image in C# Code
- Dramatically reduce the time it takes to build imaging processing application into your apps within our easy to use imaging DLLs
Image Filtering Program in C# .NET
With the precise image filtering methods, developers can apply various effects on images with RasterEdge.Imaging.Processing.dll by using entire C# sample codes. This section is designed to guide users to create C# Windows application to add image filtering functions. If you are VB.NET developers, please go to
image filtering for VB.NET. Want to manage image and document in web service and .NET Windows, please have a look at:
general image managing tutorials in web ASP.NET &
process and edit image and document page in .NET Windows project.
- Open Microsoft Visual Studio (2005 or later versions);
- Begin a new project with programming language - Visual C#;
- Add .NET imaging processing DLLs to your Visual C# project;
- RasterEdge.Imaging.Basic.dll
- RasterEdge.Imaging.Processing.dll
- Add following appropriate .NET imaging using statements to the C# application:
using RasterEdge.Imaging.Basic;
using RasterEdge.Imaging.Basic.Core;
using RasterEdge.Imaging.Processing;
using RasterEdge.Imaging.Basic.Codec;
C# Code to Apply Image Processing Filtering
Following four parts demonstrate the clear and precise image filtering applications methods and sample code in C# platform. If you are interested in other image operations of our C# imaging processor, please go to see:
C# imaging controls for image basic transformation,
detect and retrieve image information within C# code,
powerful DLLs for image color mode conversion and
C# libraries for image color correction and adjustment.
C# Methods to Add Noise and Antique Effects to Image
Please apply and use following API solutions to your .NET applications to add noise and antique effect to any target image in short time.
public static int FilterNoiseUniform(REImage img);
public static int ApplyAntiqueEffect(REImage img);
C# Code to Add Noise and Antique Effects to Image
Following C# demo code can help you shorten the time of adding noise and antique effect to image page.
using RasterEdge.Imaging.Basic.Core;
using RasterEdge.Imaging.Basic.Codec;
using RasterEdge.Imaging.Processing;
using RasterEdge.Imaging.Basic;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public static void AntiqueEffectImageDemo()
{
string fileName = "c:/Sample.png";
REImage reImage = REFile.OpenImageFile(fileName);
ImageProcessing.ApplyAntiqueEffect(reImage);
REFile.SaveImageFile(reImage, "c:/reimage.png", new PNGEncoder());
}
//public static void AddNoseImageDemo()
{
ImageProcessing.filterNoiseUniform(srcImg);
REFile.SaveImageFile(reImage, "c:/reimage.png", new PNGEncoder());
}
}
}
Blur and Sharpen Image Methods in C#
Use methods below to work out your own customized image sharpening and blurring applications.
public static REImage ApplyBlur(REImage img);
public static REImage ApplyBlurGaussian(REImage img);
public static REImage ApplyBlurGaussian(REImage img, double sigma);
public static REImage ApplyBlurUniform(REImage img);
public static REImage ApplySharpen(REImage img);
public static REImage ApplySharpenMore(REImage img);
C# Code to Blur and Sharpen Image
Please take following C# demo code as an important aid to blur and sharpen image.
using RasterEdge.Imaging.Basic.Core;
using RasterEdge.Imaging.Basic.Codec;
using RasterEdge.Imaging.Processing;
using RasterEdge.Imaging.Basic;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public static void SharpenImageDemo()
{
string fileName = "c:/Sample.png";
REImage reImage = REFile.OpenImageFile(fileName);
REImage newImage = ImageProcessing.ApplySharpen(reImage);
REFile.SaveImageFile(newImage, "c:/reimage.png", new PNGEncoder());
}
//public static void BlurImageDemo()
{
REImage savaImage = ImageProcessing.applyBlur(openImage);
REImage savaImage = ImageProcessing.applyBlurUniform(openImage);
REImage savaImage = ImageProcessing.applyBlurGaussian(openImage);
REFile.SaveImageFile(reImage, "c:/reimage.png", new PNGEncoder());
}
}
}
More Tutorials!
Recommend this to Google+