// QT includes #include #include #include #include "OsxWrapper.h" #include // ssdp discover #include #include using namespace commandline; // save the image as screenshot void saveScreenshot(QString filename, const Image & image) { // store as PNG QImage pngImage((const uint8_t *) image.memptr(), image.width(), image.height(), 3*image.width(), QImage::Format_RGB888); pngImage.save(filename); } int main(int argc, char ** argv) { DefaultSignalHandler::install(); QCoreApplication app(argc, argv); try { // create the option parser and initialize all parameters Parser parser("OSX capture application for Hyperion. Will automatically search a Hyperion server if -a option isn't used. Please note that if you have more than one server running it's more or less random which one will be used."); IntOption & argDisplay = parser.add ('d', "display", "Set the display to capture [default: %1]", "0"); IntOption & argFps = parser.add ('f', "framerate", "Capture frame rate [default: %1]", "10", 1, 25); IntOption & argWidth = parser.add (0x0, "width", "Width of the captured image [default: %1]", "160", 160); IntOption & argHeight = parser.add (0x0, "height", "Height of the captured image [default: %1]", "160", 160); BooleanOption & argScreenshot = parser.add(0x0, "screenshot", "Take a single screenshot, save it to file and quit"); Option & argAddress = parser.add