Skip to content

Latest commit

 

History

History
102 lines (56 loc) · 6.72 KB

CppQImageExample1.md

File metadata and controls

102 lines (56 loc) · 6.72 KB

 

 

 

 

 

 

Technical facts

 

Application type(s)

Operating system(s) or programming environment(s)

IDE(s):

Project type:

C++ standard:

Compiler(s):

Libraries used:

  • Qt Qt: version 5.4.1 (32 bit)
  • STL STL: GNU ISO C++ Library, version 4.9.2

 

 

 

 

 

Qt project file: ./CppQImageExample1/CppQImageExample1.pro

 


win32 {   # Windows only   message("Console application, built for Windows")   QMAKE_CXXFLAGS += -std=c++11 -Wall -Wextra -Weffc++ } macx {   # Mac only   message("Console application, built for Mac")   QMAKE_CXXFLAGS = -mmacosx-version-min=10.7 -std=gnu0x -stdlib=libc+   CONFIG +=c++11 } unix:!macx{   # Linux only   message("Console application, built for Linux")   QMAKE_CXXFLAGS += -Werror   QMAKE_CXXFLAGS += -std=c++11 -Wall -Wextra -Weffc++ } cross_compile {   # Crosscompile only   message("Console application, cross-compiling from Linux to Windows")   QMAKE_CXXFLAGS += -std=c++11 -Wall -Wextra -Weffc++ } # Go ahead and use Qt.Core: it is about as platform-independent as # the STL and Boost QT += core # Go ahead and use Qt.Gui: it is about as platform-independent as # the STL and Boost. It is needed for QImage QT += gui # Don't define widgets: it would defy the purpose of this console # application to work non-GUI #greaterThan(QT_MAJOR_VERSION, 4): QT += widgets CONFIG   += console CONFIG   -= app_bundle TEMPLATE = app # # # Type of compile # # CONFIG(release, debug|release) {   DEFINES += NDEBUG NTRACE_BILDERBIKKEL } SOURCES += main.cpp

 

 

 

 

 

./CppQImageExample1/main.cpp

 


#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Weffc++" #pragma GCC diagnostic ignored "-Wunused-local-typedefs" #pragma GCC diagnostic ignored "-Wunused-but-set-parameter" #include <QImage> #pragma GCC diagnostic pop QImage CreateImage(const int width, const int height, const int z) noexcept {   QImage image(width,height,QImage::Format_ARGB32);   for (int y=0;y!=height;++y)   {     for (int x=0;x!=width;++x)     {       image.setPixel(         x,y,         qRgb((x+z+0)%256,(y+z+0)%256,(x+y+z)%256) //Color       );     }   }   return image; } int main() {   const QImage image = CreateImage(256,256,64);   image.save("CppQImageExample1.png"); }