| Home | News | Tutorials | Downloads | FAQ | Screenshots | Links | Credits | |
Basics |
For writing Video2Photo plug-ins you need basic knowledge of Borland Pascal. Version of Borland Delphi 5-7 are recommended. Video2Photo plug-ins are simple DLL's loaded when Video2Photo starts. When the plug-in effect is applied the RunProcBMP procedure is executed and the Source Bitmap will be modified. |
A Plug-in Example |
We will present a simple Lumakey effect plug-in. This plug-in will
replace all pixels of the Source Bitmap (SRC), which have a
luminance value over a pre-selected luminance limit (Param0) with a
color defined by RGB components (Param2, Param3, Param4). In this
example the Source Bitmap was scanned using Pixels array of
the bitmap canvas. This method is slower but better to understand.
For faster methods ScanLine property can be used. For better
results external Image Processing libraries can be used.
|
Register your plug-ins |
If you are a developer and you want your plug-ins to be
distributed/published with Video2Photo please contact the author (E-mail:
). Example of plug-ins (not implemented yet):
|
Lumakey.dll souce code |
library Lumakey; uses
procedure RunProcBMP(SRC,DEST:TBitmap);
begin //RunProcBMP Code
end;
begin
end. |
Video2Photo is FREE. No charge will be taken for using the application. Whatever you do with
Video2Photo you shall take care to not break the copyright clauses when
capturing from various media. The author takes no responsibility for illegal
usage of the Video2Photo software. |