CanLoad

CanLoad(string)

Détermine si l’image peut être chargée à partir du chemin de fichier spécifié.

public static bool CanLoad(string filePath)
ParamètreTaperLa description
filePathStringLe chemin du fichier.

Return_Value

vrai si l’image peut être chargée à partir du fichier spécifié ; Par ailleurs,faux .

Exemples

Cet exemple détermine si l’image peut être chargée à partir d’un fichier.

[C#]

// Utilise un chemin absolu vers le fichier
bool canLoad = Aspose.Imaging.Image.CanLoad(@"c:\temp\sample.gif");

Voir également


CanLoad(string, LoadOptions)

Détermine si l’image peut être chargée à partir du chemin de fichier spécifié et éventuellement à l’aide des options d’ouverture spécifiées.

public static bool CanLoad(string filePath, LoadOptions loadOptions)
ParamètreTaperLa description
filePathStringLe chemin du fichier.
loadOptionsLoadOptionsLes options de chargement.

Return_Value

vrai si l’image peut être chargée à partir du fichier spécifié ; Par ailleurs,faux .

Voir également


CanLoad(Stream)

Détermine si l’image peut être chargée à partir du flux spécifié.

public static bool CanLoad(Stream stream)
ParamètreTaperLa description
streamStreamLe flux à partir duquel charger.

Return_Value

vrai si l’image peut être chargée à partir du flux spécifié ; Par ailleurs,faux .

Exemples

Cet exemple détermine si l’image peut être chargée à partir d’un flux de fichiers.

[C#]

string dir = "c:\\temp\\";

bool canLoad;

// Utilise un flux de fichier
using (System.IO.FileStream stream = System.IO.File.OpenRead(dir + "sample.bmp"))
{
    canLoad = Aspose.Imaging.Image.CanLoad(stream);
}

// Les données suivantes ne sont pas un flux d'image valide, donc CanLoad renvoie false.
byte[] imageData = new byte[] { 0, 0, 0, 0, 0, 0, 0, 0 };
using (System.IO.MemoryStream stream = new System.IO.MemoryStream(imageData))
{
    canLoad = Aspose.Imaging.Image.CanLoad(stream);
}

Voir également


CanLoad(Stream, LoadOptions)

Détermine si l’image peut être chargée à partir du flux spécifié et éventuellement en utilisant leloadOptions .

public static bool CanLoad(Stream stream, LoadOptions loadOptions)
ParamètreTaperLa description
streamStreamLe flux à partir duquel charger.
loadOptionsLoadOptionsLes options de chargement.

Return_Value

vrai si l’image peut être chargée à partir du flux spécifié ; Par ailleurs,faux .

Voir également