Instructions for developers
How to develop new plugin:
- Install your favorite IDK for .NetFramework programming
- Choose program language and create new Class Library Project
(Assembly name must end with ".CTPlugIn")
- Add reference to CellToolDK.dll
(Source code is avaliable in GitHub)
- Create public class with the following content (C# example):
using CellToolDK;
public class Main
{
private Transmiter t;
private TifFileInfo fi;
private void ApplyChanges()
{
//Apply changes and reload the image
t.ReloadImage();
}
public void Input(TifFileInfo fi, Transmiter t)
{
this.t = t;
this.fi = fi;
//Main entrance
}
}
- Start programming by using CellToolDK_Guide.pdf
- Install your plugin .dll file to CellTool
(Example plugin is avaliable in GitHub)
|