Skip to content

Commit 80a85fa

Browse files
committed
998417-1: Resolved the CI failures.
1 parent 3e41c68 commit 80a85fa

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Document-Processing/PDF/PDF-Library/javascript/Image-Extraction.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Image Extraction in TypeScript PDF library | Syncfusion
3-
description: This section explains how to extract images from PDF documents and retrieve their properties such as position, size, and format using the JavaScript PDF library.
3+
description: This section explains how to extract images from PDF documents and retrieve their properties such as position and size using the JavaScript PDF library
44
platform: document-processing
55
control: PDF
66
documentation: UG
@@ -33,6 +33,7 @@ let imageInfo: PdfEmbeddedImage = imageInfoCollection[0];
3333
let data: Uint8Array = imageInfo.data;
3434
// Destroy the document
3535
document.destroy();
36+
{% endhighlight %}
3637
{% highlight javascript tabtitle="JavaScript" %}
3738
// Load an existing PDF document
3839
var document = new ej.pdf.PdfDocument(data);
@@ -73,6 +74,7 @@ let imageInfoCollection: PdfEmbeddedImage[] = extractor.extractImages({
7374
let imageInfo: PdfEmbeddedImage = imageInfoCollection[0];
7475
// Destroy the document
7576
document.destroy();
77+
{% endhighlight %}
7678
{% highlight javascript tabtitle="JavaScript" %}
7779
// Load an existing PDF document
7880
var document = new ej.pdf.PdfDocument(data);

Document-Processing/PDF/PDF-Library/javascript/Merge-Document.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ destination.importPageRange(sourceDocument, 0, sourceDocument.pageCount-1);
3333
destination.save('Output.pdf');
3434
// Destroy the documents
3535
destination.destroy();
36+
{% endhighlight %}
3637
{% highlight javascript tabtitle="JavaScript" %}
3738
// Load an existing PDF document
3839
var destination= new PdfDocument(data1);
@@ -50,7 +51,6 @@ destination.importPageRange(sourceDocument, 0, sourceDocument.pageCount-1);
5051
destination.save('Output.pdf');
5152
// Destroy the documents
5253
destination.destroy();
53-
5454
{% endhighlight %}
5555
{% endtabs %}
5656

@@ -78,6 +78,7 @@ destination.save('Output.pdf');
7878
// Destroy the documents to free resources
7979
destination.destroy();
8080
sourceDocument.destroy();
81+
{% endhighlight %}
8182
{% highlight javascript tabtitle="JavaScript" %}
8283
// Load an existing PDF document
8384
var destination = new ej.pdf.PdfDocument(data1);

0 commit comments

Comments
 (0)