ONLYOFFICE / sdkjs-plugins

The add-ons for ONLYOFFICE Document Server and ONLYOFFICE Desktop Editors.
https://www.onlyoffice.com
Apache License 2.0
136 stars 134 forks source link

Api.CreateBlipFill doesn't work in macro or plugin #157

Open ghost opened 3 years ago

ghost commented 3 years ago

Do you want to request a feature or report a bug?

Maybe a bug

What is the current behavior?

CreateBlipFill doesn't work in plugin or macro for slides.

If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.

This kind of macro doesn't work (no effet).

(function()
{
  oPresentation = Api.GetPresentation();
  oSlide = oPresentation.GetSlideByIndex(0);
  oFill = Api.CreateBlipFill("https://api.onlyoffice.com/content/img/docbuilder/examples/icon_DocumentEditors.png", "tile");
  oSlide.SetBackground(oFill);
})();

No more luck with the builder example here in preview mode, but the final document seems good if you generate the document with this link

What is the expected behavior?

Fill the slide background with an image.

Which versions of DesktopEditors, and which OS are affected by this issue? Did this work in previous versions of DesktopEditors?

ONLYOFFICE Desktop Editors version 6.2.0.148 Ubuntu 20.04

ShockwaveNN commented 3 years ago

@askonev Please, take a look

askonev commented 3 years ago

Hello @1F987. This situation is actually a problem. Created a bug #50707. Thank you for your attention.

ghost commented 3 years ago

Thanks @ShockwaveNN & @askonev, the same problem seems to be present on the Api.CreatePatternFill function.

(function()
{
  oPresentation = Api.GetPresentation();
  oSlide = oPresentation.GetSlideByIndex(0);
  oFill = Api.CreatePatternFill("dashDnDiag", Api.CreateRGBColor(255, 224, 204), Api.CreateRGBColor(255, 164, 101));
  oSlide.SetBackground(oFill);
})();

No effect in macro/plugin and document builder preview. But if we generate the document, the slide is ok.

askonev commented 3 years ago

@1F987 This is a problem similar to the bug that has been filed for this issue. The fill value is not set to oSlide.