Class VectorRasterizationOptions

VectorRasterizationOptions class

The vector rasterization options.

public abstract class VectorRasterizationOptions : ImageOptionsBase

Properties

NameDescription
BackgroundColor { get; set; }Gets or sets a background color.
BorderX { get; set; }Gets or sets the border X.
BorderY { get; set; }Gets or sets the border Y.
BufferSizeHint { get; set; }Gets or sets the buffer size hint which is defined max allowed size for all internal buffers.
CenterDrawing { get; set; }Gets or sets a value indicating whether center drawing.
virtual DefaultReplacementFont { get; set; }Gets or sets the default replacement font (font that will be used to draw text when exporting to raster, if existing layer font in PSD file is not presented in system). To take proper name of default font can be used next code snippet: System.Drawing.Text.InstalledFontCollection col = new System.Drawing.Text.InstalledFontCollection(); System.Drawing.FontFamily[] families = col.Families; string defaultFontName = families[0].Name; PsdLoadOptions psdLoadOptions = new PsdLoadOptions() { DefaultReplacementFont = defaultFontName });
Disposed { get; }Gets a value indicating whether this instance is disposed.
DrawColor { get; set; }Gets or sets a foreground color.
FullFrame { get; set; }Gets or sets a value indicating whether [full frame].
MultiPageOptions { get; set; }The multipage options
PageHeight { get; set; }Gets or sets the page height.
PageSize { get; set; }Gets or sets the page size.
PageWidth { get; set; }Gets or sets the page width.
virtual Palette { get; set; }Gets or sets the color palette.
ProgressEventHandler { get; set; }Gets or sets the progress event handler.
virtual ResolutionSettings { get; set; }Gets or sets the resolution settings.
SmoothingMode { get; set; }Gets or sets the smoothing mode.
Source { get; set; }Gets or sets the source to create image in.
TextRenderingHint { get; set; }Gets or sets the text rendering hint.
VectorRasterizationOptions { get; set; }Gets or sets the vector rasterization options.
virtual XmpData { get; set; }Gets or sets the XMP metadata container.

Methods

NameDescription
virtual Clone()Clones this instance.
CopyTo(VectorRasterizationOptions)Copies to.
Dispose()Disposes the current instance.

See Also