22 lines
518 B
Markdown
22 lines
518 B
Markdown
# SpitPGM
|
|
|
|
What is a `.pgm` file ? And what we can do with this module ?
|
|
|
|
You have a bi-dimensionnal array of integer and you want show those
|
|
fancy datas as a fancy picture ? So we have a few funcs for doing
|
|
that..
|
|
|
|
```
|
|
subroutine spit_as_pgm_16(pic, fname)
|
|
integer, intent(in), dimension (:,:) :: pic
|
|
character (len=*), intent(in) :: fname
|
|
```
|
|
|
|
and
|
|
|
|
```
|
|
subroutine spit_as_pgm_16(pic, fname)
|
|
integer, intent(in), dimension (:,:) :: pic
|
|
character (len=*), intent(in) :: fname
|
|
```
|