Skip to content

Commit faa4bd8

Browse files
Aspose.PDF for JavaScript via C++ 25.10
1 parent 0f960ae commit faa4bd8

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

AsposePDFforJS.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AsposePDFforJS.wasm.zip

7.89 KB
Binary file not shown.

example.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,8 @@ <h2>Aspose.PDF for JavaScript via C++</h2>
594594
+ "\nAttachment count : " + json.attachmentcount
595595
+ "\nMetadata count : " + json.metadatacount
596596
+ "\nJavaScript count : " + json.javascriptcount
597-
+ "\nImage count : " + json.imagecount;
597+
+ "\nImage count : " + json.imagecount
598+
+ "\nTable count : " + json.tablecount;
598599
else document.getElementById('output').textContent = json.errorText;
599600
}
600601
file_reader.readAsArrayBuffer(e.target.files[0]);

example_worker.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@
220220
+ "\nAttachment count : " + json.attachmentcount
221221
+ "\nMetadata count : " + json.metadatacount
222222
+ "\nJavaScript count : " + json.javascriptcount
223-
+ "\nImage count : " + json.imagecount;
223+
+ "\nImage count : " + json.imagecount
224+
+ "\nTable count : " + json.tablecount;
224225
break;
225226
case 'AsposePdfPagesToJpg':
226227
document.getElementById('output').textContent = "Files(pages) count: " + json.filesCount.toString();

snippets/AsposePdfGetInfo.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
Metadata count : json.metadatacount
4444
JavaScript count: json.javascriptcount
4545
Image count : json.imagecount
46+
Table count : json.tablecount
4647
*/
4748
if (json.errorCode == 0) document.getElementById('output').textContent = "Title : " + json.title
4849
+ "\nCreator : " + json.creator
@@ -66,6 +67,7 @@
6667
+ "\nMetadata count : " + json.metadatacount
6768
+ "\nJavaScript count : " + json.javascriptcount
6869
+ "\nImage count : " + json.imagecount
70+
+ "\nTable count : " + json.tablecount
6971
else document.getElementById('output').textContent = json.errorText;
7072
};
7173
file_reader.readAsArrayBuffer(e.target.files[0]);

snippets/AsposePdfGetInfo_worker.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
+ "\nAttachment count : " + evt.data.json.attachmentcount
4343
+ "\nMetadata count : " + evt.data.json.metadatacount
4444
+ "\nJavaScript count : " + evt.data.json.javascriptcount
45-
+ "\nImage count : " + evt.data.json.imagecount;
45+
+ "\nImage count : " + evt.data.json.imagecount
46+
+ "\nTable count : " + evt.data.json.tablecount;
4647

4748
/*Event handler*/
4849
const ffilePdfGetInfo = e => {

0 commit comments

Comments
 (0)