IMcFilesConvert Method
|
|
Converts a file from one file type to another, with options. Similiar to
McImageLib.McImage.Convert, but with files.
Properties:
String Source - The directory or filename, with or without tokens, you wish to convert.
Namespace:
MediaCy.IQL.IO
Assembly:
MediaCy.IQL.IO (in MediaCy.IQL.IO.dll) Version: 10.0.6912.0
SyntaxSub Convert (
Source As String
)
Parameters
- Source
- Type: SystemString
RemarksSpecify the string of the file you wish to convert. Previous options
of OutputStream and OutputPath need to be set. Convert can be
recursive (Property Recursive), in which the directory structure
is replicated in the OutputPath.
ExamplesApplication.ImageFiles.OutputPath = "c:\temp\images\"
Application.ImageFiles.OutputStream.Format = "tif"
Application.ImageFiles.OutputStream.Compression = mcscLZW
Application.ImageFiles.Convert "c:\images\*.bmp"
See Also