export software like images

Once I finished writing my software on arduino how do I export it as a JPG image?

sistemi_4.ino (465 Bytes)

Why would you do that? Nobody wants to read code as a .jpg.
If you want to display it here, use the code tags button </> and then copy your code in the IDE and paste it in the code box.

You could paste it into Powerpoint and then do a Save As a .jpg. I don't see that Word supports that. Maybe Open Office can do that as well.

Your code, for example:

void setup() {
  pinMode(13, OUTPUT);
  pinMode(12, OUTPUT);
  pinMode(11, OUTPUT);
  pinMode(2, INPUT);
  pinMode(3, INPUT);
  pinMode(4, INPUT_PULLUP);
}

void loop() {
  digitalWrite(13, LOW);
  digitalWrite(12, HIGH);
  digitalWrite(11,HIGH);
   delay(2000);
  digitalWrite(13, HIGH);
  digitalWrite(12, LOW);
  digitalWrite(11, LOW);
   delay(5000);
  digitalWrite(13, HIGH);
  digitalWrite(12, HIGH);
  digitalWrite(11, LOW);
   delay(4000);
}

(which opened with Wordpad and then pasted in with a bunch of blank lines which I deleted, stupid software)

thanks, I need the picture for a school report, but I would like annexed

schema funzionale sistemi 4.jpg

schema funzionale sistemi 4.jpg

MS word will allow you to copy paste into such as PAINT etc no problems at all.

Or if you are on windows just use ALT PRN (PRT SCR on some keyboards)then just crop out unwanted sections.