| ImageAdv.flipVertical() | This page was last modified over 30 day(s) ago and has 0 comment(s)
|
| Back to ImageAdv Class Summary |
| Availability |
| Windows, Mac OSX, Linux |
| Usage |
| mdm.ImageAdv.flipVertical():Boolean |
| Parameters |
| none |
| Returns |
| boolean indicating if method succeeded |
| Description |
| This methods flips bitmap along horizontal axis (mirror-reversing along horizontal axis). |
| Notes |
| This operation does not change your original file. It operates on bitmap hosted in memory - so you have to flush changes to local file to persist them by saving JPEG/PNG files locally. |
| Example Code |
| if(image.isValid) { var flipped:Boolean = image.flipVertical(); if(flipped) { image.savePng(outputPath); }; }; |
| mdm.ImageAdv Class Example Downloads |
| No Example Downloads Available |
| Registered Users must be logged in to 'MyAccount' to add a Comment - Log In Here | |
| After Logging In, Click Here to Refresh This Page |