2014-11-13 01:04:59 +02:00
|
|
|
#include "kpixmapregionselectordialog.h"
|
|
|
|
#include <QtGui/QPixmap>
|
|
|
|
#include <QtGui/QImage>
|
|
|
|
#include <kapplication.h>
|
|
|
|
#include <kcmdlineargs.h>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main(int argc, char**argv)
|
|
|
|
{
|
|
|
|
KCmdLineOptions options;
|
|
|
|
options.add("+file", ki18n("The image file to open"));
|
|
|
|
|
|
|
|
KCmdLineArgs::init(argc, argv, "test", 0, ki18n("test"), "1.0", ki18n("test"));
|
|
|
|
KCmdLineArgs::addCmdLineOptions( options );
|
2019-06-20 20:41:24 +00:00
|
|
|
KApplication app;
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
|
|
|
|
if (args->count()!=1)
|
|
|
|
{
|
|
|
|
std::cout << "Usage: kpixmapregionselectordialogtest <imageFile>" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage image=
|
|
|
|
KPixmapRegionSelectorDialog::getSelectedImage(QPixmap(args->arg(0)),100,100);
|
|
|
|
|
|
|
|
image.save("output.png", "PNG");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|