Class ImageExportSettings
- Namespace
- Dynamicweb.Ecommerce.ProductCatalog
- Assembly
- Dynamicweb.Ecommerce.dll
The settings for the image exporting.
public sealed class ImageExportSettings
- Inheritance
-
ImageExportSettings
- Inherited Members
Properties
AssetCategories
Defines a list of categories that will be taken from the products' assetcategories and exported.
public IEnumerable<string> AssetCategories { get; set; }
Property Value
Dpi
The DPI of the images of the products being exported. If it's 0 or not set, it will default to 72 DPI.
public int Dpi { get; set; }
Property Value
EmbedProfile
Currently not used.
public bool EmbedProfile { get; set; }
Property Value
Height
The height of the images of the products being exported will be. If it's 0 or not set, it will default to 10000 or the images actual heigth.
public int Height { get; set; }
Property Value
ImageFormat
The format the images of the products being exported is in. Will default to Jpg if nothing is sent in.
public string ImageFormat { get; set; }
Property Value
Width
The width of the images of the products being exported will be. If it's 0 or not set, it will default to 10000 or the images actual width.
public int Width { get; set; }