WebImage Konstruktory

Definice

Přetížení

WebImage(Byte[])

Inicializuje novou instanci WebImage třídy pomocí pole bajtů k reprezentaci image.

WebImage(Stream)

Inicializuje novou instanci WebImage třídy pomocí streamu k reprezentaci image.

WebImage(String)

Inicializuje novou instanci WebImage třídy pomocí cesty k reprezentaci umístění image.

WebImage(Byte[])

Inicializuje novou instanci WebImage třídy pomocí pole bajtů k reprezentaci image.

public WebImage (byte[] content);
new System.Web.Helpers.WebImage : byte[] -> System.Web.Helpers.WebImage
Public Sub New (content As Byte())

Parametry

content
Byte[]

Image.

Platí pro

WebImage(Stream)

Inicializuje novou instanci WebImage třídy pomocí streamu k reprezentaci image.

public WebImage (System.IO.Stream imageStream);
new System.Web.Helpers.WebImage : System.IO.Stream -> System.Web.Helpers.WebImage
Public Sub New (imageStream As Stream)

Parametry

imageStream
Stream

Image.

Platí pro

WebImage(String)

Inicializuje novou instanci WebImage třídy pomocí cesty k reprezentaci umístění image.

public WebImage (string filePath);
new System.Web.Helpers.WebImage : string -> System.Web.Helpers.WebImage
Public Sub New (filePath As String)

Parametry

filePath
String

Cesta k souboru, který obsahuje obrázek.

Platí pro