Wmf {Microsoft.VisualBasic.Imaging} .NET clr documentation

Wmf

Description

Windows Metafile (WMF) is an image file format originally designed for Microsoft Windows in the 1990s. Windows Metafiles are intended to be portable between applications and may contain both vector graphics and bitmap components. It acts in a similar manner to SVG files. Essentially, a WMF file stores a list of function calls that have to be issued to the Windows Graphics Device Interface (GDI) layer to display an image on screen. Since some GDI functions accept pointers to callback functions for error handling, a WMF file may erroneously include executable code. WMF Is a 16-bit format introduced in Windows 3.0. It Is the native vector format for Microsoft Office applications such as Word, PowerPoint, And Publisher. As of 2015 revision 12 of the Windows Metafile Format specification Is available for online reading Or download as PDF.

The original 16 bit WMF file format was fully specified in volume 4 of the 1992 Windows 3.1 SDK documentation (at least if combined with the descriptions of the individual functions and structures in the other volumes), but that specification was vague about a few details. These manuals were published as printed books available in bookstores with no click through EULA or other unusual licensing restrictions (just a general warning that if purchased as part of a software bundle, the software would be subject to one). Over time the existence Of that historic specification was largely forgotten And some alternative implementations resorted To reverse engineering To figure out the file format from existing WMF files, which was difficult And Error prone. In September 2006, Microsoft again published the WMF file format specification In the context Of the Microsoft Open Specification Promise, promising To Not assert patent rights To file format implementors.

Declare

            
# namespace Microsoft.VisualBasic.Imaging
export class Wmf extends GDICanvas {
   Background: Color;
   CompositingMode: CompositingMode;
   CompositingQuality: CompositingQuality;
   Dpi: double;
   DpiX: double;
   DpiY: double;
   Font: Font;
   Graphics: Graphics;
   InterpolationMode: InterpolationMode;
   IsClipEmpty: boolean;
   IsVisibleClipEmpty: boolean;
   PageScale: double;
   PageUnit: GraphicsUnit;
   PixelOffsetMode: PixelOffsetMode;
   RenderingOrigin: Point;
   Size: Size;
   SmoothingMode: SmoothingMode;
   Stroke: Pen;
   TextContrast: integer;
   TextRenderingHint: TextRenderingHint;
   # The file path of the target wmf image file.
   wmfFile: string;
}

        

.NET clr type reference tree

  1. this class extends from GDICanvas class: GDICanvas
  2. use by property member Background: Color
  3. use by property member CompositingMode: CompositingMode
  4. use by property member CompositingQuality: CompositingQuality
  5. use by property member Font: Font
  6. use by property member Graphics: Graphics
  7. use by property member InterpolationMode: InterpolationMode
  8. use by property member PageUnit: GraphicsUnit
  9. use by property member PixelOffsetMode: PixelOffsetMode
  10. use by property member RenderingOrigin: Point
  11. use by property member Size: Size
  12. use by property member SmoothingMode: SmoothingMode
  13. use by property member Stroke: Pen
  14. use by property member TextRenderingHint: TextRenderingHint

[Package {$package} version {$version} Index]