نقشه‌های PLT

صادرات PLT به تصویر

Aspose.CAD برای .NET به توسعه‌دهندگان این امکان را می‌دهد که فایل‌های PLT را به JPEG تبدیل کنند. در زیر کدی ارائه شده است که نحوه دسترسی به فایل PLT و تبدیل آن به JPEG را با استفاده از CadRasterizationOption و JpegOptions نشان می‌دهد.

// The path to the documents directory.
string MyDir = RunExamples.GetDataDir_PLTDrawings();
string sourceFilePath = MyDir + "50states.plt";
using (Image cadImage = Image.Load(sourceFilePath))
{
ImageOptionsBase imageOptions = new JpegOptions();
CadRasterizationOptions options = new CadRasterizationOptions
{
PageHeight = 500,
PageWidth = 1000,
};
imageOptions.VectorRasterizationOptions = options;
cadImage.Save(MyDir+ "50states.jpg", imageOptions);
}

صادرات PLT به PDF

Aspose.CAD برای .NET به توسعه‌دهندگان این امکان را می‌دهد که فایل‌های PLT را به PDF تبدیل کنند. در زیر کدی ارائه شده است که نحوه دسترسی به فایل PLT و تبدیل آن به PDF را با استفاده از CadRasterizationOption و PdfOptions نشان می‌دهد.

// The path to the documents directory.
string MyDir = RunExamples.GetDataDir_PLTDrawings();
string sourceFilePath = MyDir + "50states.plt";
using (Image cadImage = Image.Load(sourceFilePath))
{
CadRasterizationOptions options = new CadRasterizationOptions
{
PageHeight = 1600,
PageWidth = 1600,
DrawType= CadDrawTypeMode.UseObjectColor,
BackgroundColor=Color.White
};
PdfOptions pdfOptions = new PdfOptions();
pdfOptions.VectorRasterizationOptions = options;
cadImage.Save(MyDir+ "50states.pdf", pdfOptions);
}