Please, how to quote? I don't see quote button (lots of buttons here have no description they are white buttons and white text color).
So I found the packages, but chatGPT recommended to look for libfcl-image2.6.4 and the packages you mention did not include description of the graphical library.
Now I don't know if to install FP or Lazarus. Of sure I want something extra, but in this moment i want to do something really fast in terminal. I have tried a simple bash file using convert (ImageMagick) and I have found that the IM is not able to export pixel information for complete row or column. So I need to write this program to get better performence. The AI recommendation was this function:
function himage() {
values=() # Jednorozměrné pole pro ukládání hodnot
for x in {1..32}; do
value=$(convert w.png -format "%[pixel:p{$x,0}]" info:-)
value=${value//gray(/}
values+=("${value//)/}") # Přidání hodnoty do pole
done
echo "${values[@]}"
}
Which is very slow because this calls the convert 32 times. I think this would be really problem with higher resolution.
Yet my question to Lazarus. Is it possible to use it to write program for terminal only, not the graphical interface? I would like to try graphical interface later. I was used to use Delphi 7, but having Windows XP, it's impossible to have run both the Delphi7 and linux with chatGPT

. I like to use AI in my first steps of programming, even it makes so many stupid mistakes. I learn this way
