Skip to content

Commit e275d29

Browse files
committed
Downcase file extension of PNG files
1 parent de1956c commit e275d29

8 files changed

+6
-6
lines changed

_pages/tutorials/batch-processing-with-ij-macro.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Data from the [Image Data Resource](https://idr.openmicroscopy.org/) is used in
3535

3636
To start the macro recorder, go to {% include bc path="Plugins|Macros|Record" %}:
3737

38-
{% include img src="screenshot-plugins-macro-record.PNG" alt="Macro Recorder location on plugins menu" %}
38+
{% include img src="screenshot-plugins-macro-record.png" alt="Macro Recorder location on plugins menu" %}
3939

4040
Every command you now access through ImageJ's menu will be recorded as a line of text in the macro recorder.
4141

@@ -45,7 +45,7 @@ Every command you now access through ImageJ's menu will be recorded as a line of
4545

4646
Perform a series of commands that you would like to automate with a macro.
4747

48-
{% include img src="screenshot-macro-recorder-with-commands.PNG" alt="ImageJ Macro Recorder" %}
48+
{% include img src="screenshot-macro-recorder-with-commands.png" alt="ImageJ Macro Recorder" %}
4949

5050
The commands recorded below resulted from:
5151
1. Opening of an image with [Bio-Formats](/formats/bio-formats), splitting channels into separate windows.
@@ -69,13 +69,13 @@ The commands recorded below resulted from:
6969

7070
The result of the commands recorded above should look like this:
7171

72-
{% include img src="screenshot-workflow-output.PNG" alt="Workflow output" %}
72+
{% include img src="screenshot-workflow-output.png" alt="Workflow output" %}
7373

7474
## Edit the Output from the Macro Recorder
7575

7676
It's possible to edit commands directly within the Macro Recorder, but it's probably easier to use the [Script Editor](/scripting/script-editor). You can launch the Script Editor directly from the Macro Recorder by clicking the `Create` button.
7777

78-
{% include img src="screenshot-macro-recorder-create.PNG" alt="Macro Recorder create button" %}
78+
{% include img src="screenshot-macro-recorder-create.png" alt="Macro Recorder create button" %}
7979

8080
### Save your macro and run it
8181

@@ -188,7 +188,7 @@ for (i = 0; i < 10; i++) {
188188
```
189189
...and should now produce some meaningful output when run:
190190

191-
{% include img src="screenshot-particle-analyzer-summary-output.PNG" alt="Particle Analyzer summary output" %}
191+
{% include img src="screenshot-particle-analyzer-summary-output.png" alt="Particle Analyzer summary output" %}
192192

193193
### Run the loop for the required number of times
194194

@@ -621,7 +621,7 @@ macro "Batch Nuclei Counter" {
621621
```
622622
Find the _scripts_ folder within your ImageJ/Fiji installation and save your macro within the _Plugins_ subdirectory. You should now see your macro appear at the bottom of the Plugins menu when you restart the application:
623623
624-
{% include img src="screenshot-plugins-installed-macro.PNG" alt="Macro dialog" %}
624+
{% include img src="screenshot-plugins-installed-macro.png" alt="Macro dialog" %}
625625
626626
## See also
627627
- [Batch Processing](/batch)

0 commit comments

Comments
 (0)