DIAdemヘルプ

Object: SettingsImageExportPNG

  • 更新日2024-09-12
  • 4分で読める

Object: SettingsImageExportPNG

The SettingsImageExportPNG object provides the export properties of a layout in a PNG file.

The following example generates a 2D axis system with a curve, specifies the export settings, and exports the layout into a PNG file:

VBScriptPython

 

Dim oMy2DAxisSystem, oMy2DCurve, oMyPNGExport
Call Report.NewLayout()
Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem, "My2DAxisSystem")
Set oMy2DCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine, "MyCurve")
oMy2DCurve.Shape.XChannel.Reference = "[1]/[1]"
oMy2DCurve.Shape.YChannel.Reference = "[1]/[2]"
Set oMyPNGExport = Report.Settings.ImageExport.PNG
oMyPNGExport.BitsPerPixel = ePNGBitsPerPixelRGB32
oMyPNGExport.Height = 300
oMyPNGExport.UseRatio = True
oMyPNGExport.Width = 400
Call oMy2DAxisSystem.ExportToImage(LayoutWritePath & "MyImage", eImageExportTypePNG)

Properties

BitsPerPixel | Height | UseRatio | Width

Returned From

SettingsImageExport.PNG