TimeInterval klass

Summary: Represents the time interval in milliseconds

Module: aspose.imaging.imageoptions

Full Name: aspose.imaging.imageoptions.TimeInterval

Constructors

NameDescription
TimeInterval(from_address, to)Initierar en ny instans av klassen TimeInterval

Properties

NameTypeAccessDescription
from_addressintr/wHämtar eller anger From-millisekunder.
tointr/wHämtar eller anger To-millisekunder.

Constructor: TimeInterval(from_address, to)

 TimeInterval(from_address, to) 

Initierar en ny instans av klassen TimeInterval

Parameters:

ParameterTypBeskrivning
from_addressintFrom-millisekunder.
tointTo-millisekunder.

Examples

Export of part of animation from GIF image based on time interval.

from aspose.imaging import Image
from aspose.imaging.imageoptions import GifOptions, MultiPageOptions, MultiPageMode, TimeInterval

with Image.load("Animation.gif") as image:
	obj_init = MultiPageOptions()
	obj_init.mode = MultiPageMode.TIME_INTERVAL
	obj_init.time_interval = TimeInterval(0, 400)
	options = GifOptions()
	options.full_frame = True
	options.multi_page_options = obj_init
	image.save("PartOfAnimation.gif", options)