DIAdem Help

Object: SettingsImageExportGIF

  • Updated2024-09-12
  • 1 minute(s) read

Object: SettingsImageExportGIF

The SettingsImageExportGIF object provides the export properties of a layout in a GIF file.

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

VBScriptPython

 

Dim oMy2DAxisSystem, oMy2DCurve
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]"
Report.Settings.ImageExport.GIF.BitsPerPixel = eGIFBitsPerPixelRGB1
Report.Settings.ImageExport.GIF.Height = 300
Report.Settings.ImageExport.GIF.UseRatio = True
Report.Settings.ImageExport.GIF.Width = 400
Call oMy2DAxisSystem.ExportToImage(LayoutWritePath & "MyNew2DCurve", eImageExportTypeGIF)

Properties

BitsPerPixel | Height | UseRatio | Width

Returned From

SettingsImageExport.GIF