Table of Contents

Class ResumeLogo

Namespace
Textkernel.Tx.Models.API.Formatter
Assembly
Textkernel.Tx.SDK.dll

A company logo in a formatted resume

public class ResumeLogo
Inheritance
ResumeLogo
Inherited Members

Constructors

ResumeLogo()

Create a ResumeLogo. If you use this constructor you must set Logo

public ResumeLogo()

ResumeLogo(byte[], int, int)

Create a logo from a byte[]

public ResumeLogo(byte[] bytes, int width, int height)

Parameters

bytes byte[]

The image file byte array

width int

The width of the logo in points (1/72 of an inch)

height int

The height of the logo in points (1/72 of an inch)

ResumeLogo(string, int, int)

Create a logo from a file on disk.

public ResumeLogo(string filePath, int width, int height)

Parameters

filePath string

The path to the image file (PNG, JPG, SVG)

width int

The width of the logo in points (1/72 of an inch)

height int

The height of the logo in points (1/72 of an inch)

Properties

Height

The height of the logo in points (1/72 of an inch)

public int Height { get; set; }

Property Value

int

The logo file byte[] as a Base64-encoded string

public string Logo { get; set; }

Property Value

string

Width

The width of the logo in points (1/72 of an inch)

public int Width { get; set; }

Property Value

int