| 96 | } |
| 97 | |
| 98 | fg_err fg_get_image_height(unsigned *pOut, const fg_image pImage) |
| 99 | { |
| 100 | try { |
| 101 | ARG_ASSERT(1, (pImage!=0)); |
| 102 | |
| 103 | *pOut = getImage(pImage)->height(); |
| 104 | } |
| 105 | CATCHALL |
| 106 | |
| 107 | return FG_ERR_NONE; |
| 108 | } |
| 109 | |
| 110 | fg_err fg_get_image_pixelformat(fg_channel_format* pOut, const fg_image pImage) |
| 111 | { |