Hi,
on Mac the number of files that are opened at the same time by one program is limited by default (I think to 256), and a program can't change that limit by itself,
the kmaketiles tool is writing all tiles for one row at the same time,
that means for a 233.059 pixel wide image a minimum of 299 (=233059/780) files will be needed,
and this is more than the limited 256 files,
you can increase this 256 files limit in the terminal by the ulimit command,
e.g. to increase the limit to 1000 files:
|
Source code
|
1
|
ulimit -n 1000
|
than it should work,
best regards,
Klaus