1. Home
  2.   Aforge
  3.   .NET용 FileFormat.AForge
FileFormat.AForge for .NET

.NET용 FileFormat.AForge

 
 

.NET API를 사용하여 이미지 처리를 간소화

FileFormat.AForge로 이미지를 손쉽게 편집하세요. 경량 오픈 소스 .NET API

FileFormat.AForge for .NET 이는 AForge.Net 프로젝트. 이 버전은 NetStandard 2.0 프레임워크로 번역되었으며 Aspose.드로잉을 그래픽 엔진으로 사용합니다. 최신 .Net 플랫폼을 사용하여 크로스 플랫폼 애플리케이션을 만들 수 있습니다.

FileFormat.AForge는 라이선스에 따라 사용할 수 있습니다:

FileFormat.AForge는 LGPL 라이선스에 따라 배포됩니다.

Aspose.드로잉 .NET은 Aspose에 따라 배포됩니다. EULA 라이센스.

주요 기능 및 장점

  • 교차 플랫폼:Aspose. Drawing과의 통합 덕분에 라이브러리는 Windows, Linux, MacOS 플랫폼에서 최신 버전의 .Net에 있는 이미지와 작업할 수 있습니다.

.NET용 FileFormat.AForge를 시작하는 방법

FileFormat.AForge를 시작하는 것은 빠르고 쉽습니다. 다음 단계를 따르세요.

  • FileFormat.AForge 설치: NuGet 패키지 관리자 또는 .NET CLI를 통해 FileFormat.AForge 패키지를 설치합니다.
  • 프로젝트와 통합: C# 프로젝트에서 FileFormat.AForge 라이브러리를 참조하세요.
  • 처리 시작: FileFormat.AForge 처리 이미지에서 제공하는 간단한 API를 활용합니다.

.NET용 FileFormat.AForge를 설치하는 데 권장되는 방법은 NuGet을 사용하는 것입니다. 원활한 설치를 위해 다음 명령어를 사용해주세요.

NuGet을 통해 .NET용 FileFormat.AForge 설치

NuGet> Install-Package FileFormat.AForge 
GitHub에서 직접 다운로드할 수도 있습니다.

C#에 회색조 필터 적용

이 코드는 이미지를 회색조 형식으로 변환합니다.

아래 코드 조각을 복사하여 기본 파일에 붙여넣고 프로그램을 실행하세요.

이미지를 회색조 형식으로 변환

 
//Set License for Aspose.Drawing
System.Drawing.AsposeDrawing.License license = new System.Drawing.AsposeDrawing.License();
license.SetLicense("Aspose.Drawing.License.lic");

//Create grayscale filter
var grayscaleFilter = new FileFormat.AForge.Imaging.Filters.Grayscale(0.2126, 0.7152, 0.0722);

//open image
using (var bmp = (Bitmap)Image.FromFile(@"sample.bmp"))

//convert image to grayscale
using (var grayscaleImage = grayscaleFilter.Apply(bmp))
{
    //save grayscale image
    grayscaleImage.Save(@"grayscale.png", ImageFormat.Png);
}

AForge 웹사이트에서 다른 예시를 직접 확인하실 수 있습니다.

 한국인