Interface IImageHelperLoader
Interface allows to load images with custom format or custom type
Assembly: FastReport.Base.dll
Syntax
public interface IImageHelperLoader
Methods
CanLoad(Byte[])
Returns true if image can be loaded
Declaration
bool CanLoad(byte[] imageData)
Parameters
Type |
Name |
Description |
System.Byte[] |
imageData |
|
Returns
Type |
Description |
System.Boolean |
|
CanLoad(String)
Returns true if image can be loaded
Declaration
bool CanLoad(string fileName)
Parameters
Type |
Name |
Description |
System.String |
fileName |
|
Returns
Type |
Description |
System.Boolean |
|
TryLoad(Byte[], out Image)
Try to load the image, must not throw exception!
Declaration
bool TryLoad(byte[] imageData, out Image result)
Parameters
Type |
Name |
Description |
System.Byte[] |
imageData |
|
Image |
result |
|
Returns
Type |
Description |
System.Boolean |
|
TryLoad(String, out Image)
Try to load the image, must not throw exception!
Declaration
bool TryLoad(string fileName, out Image result)
Parameters
Type |
Name |
Description |
System.String |
fileName |
|
Image |
result |
|
Returns
Type |
Description |
System.Boolean |
|