MCPcopy Create free account
hub / github.com/arrayfire/forge / fg_get_image_width

Function fg_get_image_width

src/api/c/image.cpp:86–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86fg_err fg_get_image_width(unsigned *pOut, const fg_image pImage)
87{
88 try {
89 ARG_ASSERT(1, (pImage!=0));
90
91 *pOut = getImage(pImage)->width();
92 }
93 CATCHALL
94
95 return FG_ERR_NONE;
96}
97
98fg_err fg_get_image_height(unsigned *pOut, const fg_image pImage)
99{

Callers 1

widthMethod · 0.85

Calls 2

getImageFunction · 0.85
widthMethod · 0.45

Tested by

no test coverage detected