| 74 | } |
| 75 | |
| 76 | fg_err fg_set_image_aspect_ratio(fg_image pImage, const bool pKeepRatio) |
| 77 | { |
| 78 | try { |
| 79 | getImage(pImage)->keepAspectRatio(pKeepRatio); |
| 80 | } |
| 81 | CATCHALL |
| 82 | |
| 83 | return FG_ERR_NONE; |
| 84 | } |
| 85 | |
| 86 | fg_err fg_get_image_width(unsigned *pOut, const fg_image pImage) |
| 87 | { |
no test coverage detected