This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <QImage> | |
| #include <QFile> | |
| #include <QDebug> | |
| const QString incorrectICCPMessage = "libpng warning: iCCP: known incorrect sRGB profile"; | |
| int main(int argc, char *argv[]) | |
| { | |
| if (argc <= 1) { | |
| qWarning() << "no parameters"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Colors ---------------------------------------------------------- | |
| export TERM=xterm-color | |
| export GREP_OPTIONS='--color=auto' GREP_COLOR='1;32' | |
| export CLICOLOR=1 | |
| # alias ls='ls -G' # OS-X SPECIFIC - the -G command in OS-X is for colors, in Linux it's no groups | |
| alias ls='ls -la --color=auto' # For linux, etc | |
| alias ll='ll --color=auto' |