Problem with dividing picture into a sequence
Posted: 2011-06-02T23:40:46-07:00
Some problem with dividing a single picture into a sequence of .bmp files. I use Windows XP SP3 and IM 6.7.0-2Q16 windows-dll.exe
The text of MS-DOS .bat files:
1.
divide_BMP.bat
2.
flop.bat
3.
montage_843.bat
The final picture is bad. If I make an .avi file from the sequence by VirtualDub software and export to BMP sequence (i.e. resynthesis of BMP sequence), then the final picture is good. Why?
I shell be very appreciated for your reply.
The text of MS-DOS .bat files:
1.
divide_BMP.bat
Code: Select all
@echo off
echo Hello this is a batch file to divide BMP into a sequence
:: Picture 4212x2808pix will be divided into a sequence of BMP files
convert example_4212x2808pix.bmp -crop 5x2808 +repage sliced\%%02d.bmp
chdir sliced
call flop.bat
flop.bat
Code: Select all
@echo off
echo Hello this is a batch file for flop BMP files
FOR %%a in (*.bmp) DO mogrify %%a -flop %%a
call montage_843.bat
montage_843.bat
Code: Select all
@echo off
echo Hello this is a batch file for montage of BMP sequence into single picture
montage -mode concatenate -tile 843x *.bmp joined.bmp
I shell be very appreciated for your reply.