convert with crop UnableToConcatenateString error

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
oyapar

convert with crop UnableToConcatenateString error

Post by oyapar »

hi all,

i try to split map , i use command 'convert -limit memory 1 -limit map 1 -crop 256x256 -quality 75 MAP.jpeg split_map.jpeg'

i know this command ran before with a map 19000*9000 but this time map is 38000*18000

when i ran this command with map that is 38000*18000
an error occur and is says
" convert: UnableToConcatenateString `No such file or directory'. "


number of the split_maps can be bigger than 10000 , is that a problem ?
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: convert with crop UnableToConcatenateString error

Post by magick »

Try this command instead:
  • convert -limit memory 1 -limit map 1 -strip -crop 256x256 -quality 75 MAP.jpeg split_map.jpeg
The -strip option removes the image profiles which reduces the memory footprint of each image object significantly.
oyapar

Re: convert with crop UnableToConcatenateString error

Post by oyapar »

i will try as soon as serves is available
oyapar

Re: convert with crop UnableToConcatenateString error

Post by oyapar »

try command now with 50 gb disk space and 4 gb ram
oyapar

Re: convert with crop UnableToConcatenateString error

Post by oyapar »

magick wrote:Try this command instead:
  • convert -limit memory 1 -limit map 1 -strip -crop 256x256 -quality 75 MAP.jpeg split_map.jpeg
.


the same error again :( " convert: UnableToConcatenateString `No such file or directory'. "

i think , memory usage is not exceed 1 gb with this command (i look task manager ) and i have 40 gb free space on disk

what am i do wrong ?
Post Reply