@syncfusion/ej2-pdf-export 23.2.4 → 23.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18228,7 +18228,12 @@ var PdfGraphicsState = /** @__PURE__ @class */ (function () {
18228
18228
  this.pdfColorSpace = PdfColorSpace.Rgb;
18229
18229
  if (typeof graphics !== 'undefined') {
18230
18230
  this.pdfGraphics = graphics;
18231
- this.transformationMatrix = matrix;
18231
+ var elements_1 = [];
18232
+ graphics.matrix.matrix.elements.forEach(function (element) {
18233
+ elements_1.push(element);
18234
+ });
18235
+ this.transformationMatrix = new PdfTransformationMatrix();
18236
+ this.transformationMatrix.matrix = new Matrix(elements_1);
18232
18237
  }
18233
18238
  }
18234
18239
  Object.defineProperty(PdfGraphicsState.prototype, "graphics", {