Registers ImageMagick file formats into IEvolution.

Applications should call this method one time only (maybe at the start of the application).

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public static bool RegisterPlugin()
Public Shared Function RegisterPlugin As Boolean
public:
static bool RegisterPlugin()

Return Value

Returns True on successful

Examples

Rasterizes page number 5 of mybook.pdf at 200dpi

CopyC#
MiscPluginsImageMagick.RegisterPlugin(); // call only one time!
ieViewer1.Image.IOParams.ImageIndex = 5;
ieViewer1.Image.IOParams.Dict.Insert("PDF:Density", 200);
ieViewer1.Image.LoadImage("mybook.pdf");

See Also