PDF変換で5ページ以降が変換されない

下記コードでPDFファイルの各ページを画像化しようとすると、
先頭4ページは変換できますが、5ページ目においては変換できずに、
下記例外がスローされますが原因はわかりますか?
ライセンスファイルは正しく指定されているはずです。
※別途excel⇒htmlの変換処理は問題なくできるので、証明書の配備ミスではないと思います。

例外:
com.aspose.pdf.internal.p344.z87
At most 4 elements (for any collection) can be viewed in evaluation mode.

コード:
List<byte[]> jpegList = new ArrayList<byte[]>();
ByteArrayInputStream bis = new ByteArrayInputStream(data); // data = 27ページのPDFファイルのバイナリデータ
com.aspose.pdf.Document doc = new com.aspose.pdf.Document(bis);
for (int index=1; index<=doc.getPages().size(); index++) {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
com.aspose.pdf.devices.Resolution resolution = new com.aspose.pdf.devices.Resolution(100);
com.aspose.pdf.devices.JpegDevice jpegDevice = new com.aspose.pdf.devices.JpegDevice(resolution, 50);
jpegDevice.process(doc.getPages().get_Item(index), bos);
jpegList.add(bos.toByteArray());
bos.close();
}
bis.close();

@ide

1つのアプリケーションで複数のAspose APIを使用している場合は、各APIに個別にライセンスを設定してください。 Aspose.PDFのライセンスも設定してください。問題が解決しない場合はお知らせください。