이 정교한 예에서는 C#에서 DWG를 JPG로 변환하는 방법을 살펴보겠습니다. C#을 사용하여 JPG로 Autocad 내보내기는 .NET API용 Aspose.CAD를 사용하여 쉽게 수행할 수 있습니다. 이 튜토리얼에서는 C#을 사용하여 Autocad DWG를 JPG로 내보내는 방법을 배웁니다. C#에서 Aspose.CAD를 사용하여 Autocad를 여러 색상 및 단일 색상 형식의 Jpeg로 저장합니다.
C#에서 DWG를 JPG로 내보내는 단계
- NuGet.org에서 Aspose.CAD for .NET 패키지 다운로드
- 코드에 Aspose.CAD 및 Aspose.CAD.FileFormat 네임스페이스 포함
- SetLicense 메서드를 사용하여 Aspose.CAD 라이선스 로드
- Image 클래스를 사용하여 JPEG로 내보내기 위한 소스 DWG 로드
- 원하는 JPEG 파일에 대한 래스터화 옵션 설정
- DWG를 JPEG로 내보낸 이미지를 디스크에 저장
CAD(Computer Aided Design) 도면용 DWG 파일 형식에는 이진 형식 데이터의 2D 및 3D 설계 데이터가 포함되어 있습니다. CAD 파일의 내용을 담기 위한 벡터 이미지와 메타데이터로 구성되어 있습니다. 이 예제는 C#을 사용하는 DWG에서 JPEG에 관한 것이지만 DXF 또는 DGN 파일 형식에도 사용할 수 있습니다.
C#을 사용하여 AutoCAD를 JPG로 내보내기 위한 코드
using System; | |
using Aspose.CAD; | |
using Aspose.CAD.FileFormats.Jpeg; | |
namespace DWGToJPEG | |
{ | |
class ExportDWGToJpg | |
{ | |
public static void Main(string[] args) | |
{ | |
// Initialize license object | |
License license = new License(); | |
// Set license by providing path to license file | |
license.SetLicense("Aspose.Cad.lic"); | |
//Load the DWG to export to JPEG | |
using (Aspose.CAD.Image image = Aspose.CAD.Image.Load("")) | |
{ | |
// Create an instance of CadRasterizationOptions | |
Aspose.CAD.ImageOptions.CadRasterizationOptions rasterizationOptions = | |
new Aspose.CAD.ImageOptions.CadRasterizationOptions(); | |
// Set page width & height | |
rasterizationOptions.PageWidth = 1200; | |
rasterizationOptions.PageHeight = 1200; | |
//Set background color and object colors | |
rasterizationOptions.BackgroundColor = Aspose.CAD.Color.White; | |
rasterizationOptions.DrawType = Aspose.CAD.FileFormats.Cad.CadDrawTypeMode.UseObjectColor; | |
// Create an instance of JpegOption for the converted Jpeg image | |
ImageOptionsBase options = new Aspose.CAD.ImageOptions.JpegOptions(); | |
// Set rasterization options for exporting to JPEG | |
options.VectorRasterizationOptions = rasterizationOptions; | |
// Save DWG to JPEG image | |
image.Save("Exported_image_out.jpeg", options); | |
} | |
} | |
} | |
} |
이전 주제에서 C#의 DXF 파일에서 텍스트를 추출하는 방법에 대해 설명했습니다. 앞서 언급한 항목에서 C# 코드 샘플을 사용하여 DWG를 JPEG로 내보냈습니다. Autocad 파일을 JPG로 저장하는 이 전체 프로세스에서 시스템에 Autocad를 설치할 필요가 없으며 API는 Web, Desktop, ASP.NET 등 모든 형태의 C# 응용 프로그램에서 원활하게 작동합니다.