Hallo,
ich wandele eine DWG Datei in ein PDF um. Dazu nutze ich folgenden Code:
Using image As Image = Image.Load(InputFile)
Dim VRO = New CadRasterizationOptions
With VRO
.BackgroundColor = Aspose.CAD.Color.White
.DrawType = CadDrawTypeMode.UseObjectColor
.AutomaticLayoutsScaling = True
.NoScaling = False
.UnitType = UnitType.Millimeter
.PageWidth = 800
.PageHeight = 600
End With
Dim pdfOptions As New Aspose.CAD.ImageOptions.PdfOptions
pdfOptions.VectorRasterizationOptions = VRO
pdfOptions.CorePdfOptions = New PdfDocumentOptions() With {
.Compliance = PdfCompliance.Pdf15
}
' Konvertierung von DXF nach PDF
Try
image.Save(OutputFile, pdfOptions)
Catch ex As Exception
retBool = False
End Try
End Using
ich bekomme bei meiner Besipieldatei immer eine größe von 5076,5 x 3807,3 mm raus.
Wenn ich z.B. das Format änder mit
.PageWidth = 600
.PageHeight = 800
habe ich ein PDF mit 3807,3 x 5764,5 mm
Ändere ich auf
.PageWidth = 1600
.PageHeight = 1200
habe ich auch eine PDF Größe von 5076,5 x 3807,3 mm .
Was mache ich falsch?
Danke
Gidi