send_fileを使用して、複数の画像で構成されるzipファイルをRailsサーバーからiPhoneにダウンロードしています。Railsでは、rubyzipから来ていると思うZip::ZipOutputStream.put_next_entryを使用しています。iPhoneでは、ZipArchiveを使用して、UnzipFileToDataを使用してファイルを複数のファイルに解凍してメモリに戻しています。私が遭遇した問題は、画像の下部がランダムな量で黒くなっていることです。一部の画像には黒く塗りつぶされた部分がなく、他の画像には画像の下部の半分までが黒く塗りつぶされています。画像は小さく、サイズは約20KBです。
私が抱えている問題は、レールからiPhoneまでのパスのどの部分が、画像の下部が黒く塗りつぶされているのかがわからないことです。
1. I've ftp'ed the zipped file from my Rails server to my Mac and unzipped them and the images look fine, which means the images are getting zipped on the Rails server correctly.
2. I've tried reversing the order that the images are added to the zip file, but the same amounts of the bottom of the images are blacked out.
3. Could it be that different compression levels are being used?
マルチファイルのzipファイルから解凍された画像が画像の下部のランダムな部分を失っている理由を誰かが知っていますか?