Desenhos CF2
Contents
[
Hide
]Converter CF2 para PDF
Aspose.CAD para .NET agora suporta o Formato de Arquivo Comum (CF2). O arquivo CF2 contém designs de pacotes 3D ou outros dados de modelo. Este artigo demonstra como você pode converter o arquivo CF2 para PDF usando PdfOptions.
Código de Exemplo
Por favor, use o seguinte trecho de código para converter CF2 para PDF.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The path to the documents directory. | |
string MyDir = RunExamples.GetDataDir_ConvertingCFF(); | |
using (Image image = Image.Load(MyDir + "WineBottle_Die.cf2")) | |
{ | |
var options = new PdfOptions(); | |
image.Save(MyDir + "WineBottle_Die_out.pdf",options); | |
} | |