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
intThe width of the logo in points (1/72 of an inch)
height
intThe 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
stringThe path to the image file (PNG, JPG, SVG)
width
intThe width of the logo in points (1/72 of an inch)
height
intThe 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
Logo
The logo file byte[] as a Base64-encoded string
public string Logo { get; set; }
Property Value
Width
The width of the logo in points (1/72 of an inch)
public int Width { get; set; }