Click or drag to resize

IMcFilesSaveFramesIndividually Property

If a sequence (multiple frame image) is used as the Source for Convert, but a single image format (such as JPG or PNG) is used as the OutputFormat, the user has the option to save the individual frames as successive images, or to only save the first frame of the sequence.

Namespace:  MediaCy.IQL.IO
Assembly:  MediaCy.IQL.IO (in MediaCy.IQL.IO.dll) Version: 10.0.6912.0
Syntax
VB
Property SaveFramesIndividually As Boolean
	Get
	Set

Return Value

Type: Boolean
Boolean
Remarks
If the value is True (default), each frame is labelled with the OutputName and then the Frame Number appended. If the value is False, only the first frame is saved, with the OutputName as set.
Examples
VB
' Convert a Sequence to a series of JPEG files
ImageFiles.OutputStream.Foramt = "jpg"
ImageFiles.OutputPath = "C:\Converted"
' this line ensures that the setting is True, which is the default
ImageFiles.SaveFramesIndividually = True
ImageFiles.Convert "c:\mySequence.seq"
'The output will be c:\Convert\mySequence0.jpg, c:\Convert\mySequence1.jpg, etc....
See Also