Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

The Base64EncodeFile method encodes a file to Base64. The method returns a string.

See also The Base64Decode method and The SaveToFile method.

Method call syntax:

function Base64EncodeFile (data_in: String): String

Method arguments:

  1. data_in – required argument. Sets a path to the file to be encoded.

Example. At running Macro 1, encode 1.bmp to Base64 and save it to 2.bmp.

if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN")
{
	var s = Base64EncodeFile("d:\\1.bmp");
	SaveToFile("d:\\2.bmp",s, true);
}
  • No labels