ImageGear for C and C++ on Linux v20.0 - Updated
ART_enable_rotation_set
API Reference Guide > ART Component API Reference > ART Component Functions Reference > Rotation Functions > ART_enable_rotation_set

This function determines whether rotation is possible or not for an annotation.

Declaration:

 
Copy Code
AT_ERRCOUNT ART_enable_rotation_set (
        HIGEAR hIGear,
        BOOL bEnable
);

Arguments:

Name Type Description
hIGear HIGEAR HIGEAR handle to the image.
bEnable BOOL A value of TRUE allows rotation, a FALSE value does not allow rotation.

Return Value:

Returns the number of ImageGear errors that occurred during the function call.

Supported Raster Image Formats:

All pixel formats supported by ImageGear for C and C++.

Example:

 
Copy Code
HIGEAR hIGear;  /* HIGEAR handle of Image */
AT_ERRCOUNT nErrCount; /* Tally of IG errors on stack */
nErrCount = ART_enable_rotation_set (hIGear,FALSE);

Remarks:

A value of TRUE allows rotation, a FALSE value does not allow rotation. The default value is TRUE.

Is this page helpful?
Yes No
Thanks for your feedback.