- bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
- bool Ok();
+
+ DocDeclA(
+ bool, GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT),
+ "GetRGB(self, int pixel) -> (R,G,B)");
+
+ int GetColoursCount() const;
+ bool IsOk();
+ %pythoncode { Ok = IsOk }
+
+ %pythoncode { def __nonzero__(self): return self.IsOk() }