Vcl.Imaging.jpeg.TJPEGImage.ProgressiveDisplay

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

property ProgressiveDisplay: Boolean read FProgressiveDisplay write FProgressiveDisplay;

C++

__property bool ProgressiveDisplay = {read=FProgressiveDisplay, write=FProgressiveDisplay, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Imaging.jpeg.pas
Vcl.Imaging.jpeg.hpp
Vcl.Imaging.jpeg TJPEGImage

Description

Controls how the image is displayed when decompressing files.

Use ProgressiveDisplay to turn on or off the incremental display of an image when reading in files. For example, if the jpeg data source file is on the hard drive, progressively displaying it slows down the display time: in this case setting ProgressiveDisplay to false speeds up the displaying of the image. If the file must be downloaded, set ProgressiveDisplay to true if the downloading process will take as long as the progressive displaying of the image.

ProgressiveDisplay is used only for decompression, but is affected by the manner in which the image was compressed. Images that were compressed with ProgressiveEncoding set to false cannot take advantage of ProgressiveDisplay. Setting ProgressiveDisplay to true for these images has no effect.

See Also