Bläddra i källkod

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 år sedan
förälder
incheckning
8959550cbc
1 ändrade filer med 14 tillägg och 14 borttagningar
  1. 14
    14
      README-en.md

+ 14
- 14
README-en.md Visa fil

109
 
109
 
110
      ---
110
      ---
111
      
111
      
112
-      #include <QImage>
113
-      #include <iostream>
112
+       #include <QImage>
113
+       #include <iostream>
114
 
114
 
115
-      using namespace std;
116
-      int main() {
117
-        QImage myImage(“/Users/rarce/Downloads/chuck.png”);
118
-        QRgb    centralPixel;
115
+       using namespace std;
116
+       int main() {
117
+         QImage myImage(“/Users/rarce/Downloads/chuck.png”);
118
+         QRgb    centralPixel;
119
 
119
 
120
-        centralPixel = myImage.pixel(myImage.width() / 2, myImage.height() / 2);
120
+         centralPixel = myImage.pixel(myImage.width() / 2, myImage.height() / 2);
121
 
121
 
122
-        cout << hex;
122
+         cout << hex;
123
 
123
 
124
-        cout << “The red, green and blue components of the middle pixel are: “
125
-             << qRed(centralPixel) << “, “
126
-             << qGreen(centralPixel) << “, “
127
-             << qBlue(centralPixel) << endl;
128
-        return 0;
129
-      }
124
+         cout << “The red, green and blue components of the middle pixel are: “
125
+              << qRed(centralPixel) << “, “
126
+              << qGreen(centralPixel) << “, “
127
+              << qBlue(centralPixel) << endl;
128
+         return 0;
129
+       }
130
     
130
     
131
 
131
 
132
      ---
132
      ---