@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.
@@ -16888,7 +16888,12 @@ class PdfGraphicsState {
16888
16888
  this.pdfColorSpace = PdfColorSpace.Rgb;
16889
16889
  if (typeof graphics !== 'undefined') {
16890
16890
  this.pdfGraphics = graphics;
16891
- this.transformationMatrix = matrix;
16891
+ const elements = [];
16892
+ graphics.matrix.matrix.elements.forEach((element) => {
16893
+ elements.push(element);
16894
+ });
16895
+ this.transformationMatrix = new PdfTransformationMatrix();
16896
+ this.transformationMatrix.matrix = new Matrix(elements);
16892
16897
  }
16893
16898
  }
16894
16899
  // Properties