Std AnsichtAufnehmen

From FreeCAD Documentation
Revision as of 07:43, 23 January 2021 by Maker (talk | contribs) (Created page with "# Wähle eine Standardgröße aus der '''Standardgrößen''' Auswahlliste . Oder gib die '''Breite''' und '''Höhe''' für eine benutzerdefinierte Größe an. # Klicke optiona...")

Std ViewScreenShot

Menüeintrag
Werkzeuge → Bildinhalt speichern...
Arbeitsbereich
Alle
Standardtastenkürzel
-
Eingeführt in Version
-
Siehe auch
...

Description

Synopsis

Dieser Befehl öffnet einen Dialog zum Speichern des aktuellen Inhalts der 3D-Ansicht in einer Datei. Es kann in verschiedenen Bildformaten gespeichert werden. Zusätzlich lässt sich das Seitenverhältnis, die Auflösung des Screenshots und weitere Parameter durch Drücken des Optionen-Buttons ändern.

Das Bild speichern Dialogfeld nach Drücken der Erweiterten Schaltfläche

Anwendung

  1. Wähle die Werkzeuge → Bild speichern... Option aus dem Menü.
  2. Es öffnet sich das Dialogfeld Bild speichern.
  3. Drücke optional die Erweitert Schaltfläche, um ein zusätzliches Feld im Dialogfeld einzublenden. Für weitere Informationen siehe Optionen.
  4. Suche optional nach dem richtigen Ordner.
  5. Gib einen Dateinamen ein und wähle den Dateityp.
  6. Drücke die Speichern Schaltfläche, um die Bilddatei zu erstellen und das Dialogfeld zu schließen.

Optionen

Bild Abmessungen

  1. Wähle eine Standardgröße aus der Standardgrößen Auswahlliste . Oder gib die Breite und Höhe für eine benutzerdefinierte Größe an.
  2. Klicke optional auf die Seitenverhältnis Schaltfläche , um das Verhältnis von Breite zu Höhe des Bildes festzulegen. Wenn das Eingabefeld Breite den Fokus hat, ändert sich die Höhe des Bildes und umgekehrt.

Bildeigenschaften

  1. Select an option from the Background dropdown list:
    • Current This option uses the background of the 3D view.
    • White
    • Black
    • Transparent Not all image formats support transparency.
  2. Select an option from the Creation method dropdown list:
    • Offscreen (New) This is the default method. This method supports anti-aliasing. Technical information: The most important classes for this method are Qt's QOffscreenSurface and QOpenGLFramebufferObject.
    • Offscreen (Old) This method does not work on many modern Linux systems as it relies on the graphics driver. This method does not support anti-aliasing. Technical information: This is a real off-screen rendering method that only uses functions from the Coin3d library.
    • Framebuffer (custom) This method supports anti-aliasing. Technical information: If anti-aliasing is off, this method reads the image directly from the graphics renderer, else it renders to a framebuffer and gets the image from there. The key part of this method is Qt's QOpenGLFramebufferObject class.
    • Framebuffer (as is) This method uses the same techniques as Framebuffer (custom). It also supports anti-aliasing but has some limitations related to custom sizes and always uses the current background of the 3D view.

=Bildkommentar

  1. Select the Insert MIBA option to add MIBA information to the file. Not all image formats support this.
  2. Or select the Insert comment option and type a comment in the text field to embed a comment in the file. Not all image formats support this.
  3. Check the Add watermark checkbox to add a watermark. The watermark is placed in the lower left corner of the image and consists of the FreeCAD logo and name above the main FreeCAD URL: www.freecadweb.org.

Hinweise

  • The number of available image file formats may vary depending on your OS.
  • Some OpenGL drivers don't allow renderings above a certain maximum size.

Einstellungen

  • The 3D view background can be changed in the preferences: Edit → Preferences... → Display → Colors → Background color. See Preferences Editor.
  • To change the 3D view anti-aliasing: Edit → Preferences... → Display → 3D view → Rendering → Anti-Aliasing. See Preferences Editor.

Skripten

Es ist möglich, Bildschirmfotos mit Python Code zu erstellen.

Gui.ActiveDocument.ActiveView.saveImage('C:/temp/test.png',1656,783,'Current')

Dieses Skript speichert eine Reihe von Bildschirmfotos in verschiedenen Größen und aus verschiedenen Richtungen. Der Kameratyp, orthografisch oder perspektivisch, wird ebenfalls geändert.

import Part, PartGui
# Loading test part
Part.open('C:/Documents and Settings/jriegel/My Documents/Projects/FreeCAD/data/Blade.stp')
OutDir = 'C:/temp/'
 
# Creating images with different Views, Cameras and sizes
for p in ['PerspectiveCamera','OrthographicCamera']:
    Gui.SendMsgToActiveView(p)
    for f in ['ViewAxo','ViewFront','ViewTop']:
        Gui.SendMsgToActiveView(f)
        for x,y in [[500,500],[1000,3000],[3000,1000],[3000,3000],[8000,8000]]:
            Gui.ActiveDocument.ActiveView.saveImage(OutDir + 'Blade_' + p +'_' + f + '_' + `x` + '_' + `y` + '.jpg',x,y,'White')
            Gui.ActiveDocument.ActiveView.saveImage(OutDir + 'Blade_' + p +'_' + f + '_' + `x` + '_' + `y` + '.png',x,y,'Transparent')

# Close active document
App.closeDocument(App.ActiveDocument.Name)