sdkjs-plugins icon indicating copy to clipboard operation
sdkjs-plugins copied to clipboard

Api.CreateBlipFill doesn't work in macro or plugin

Open ghost opened this issue 3 years ago • 4 comments

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

ghost avatar Jun 02 '21 19:06 ghost

@askonev Please, take a look

ShockwaveNN avatar Jun 03 '21 07:06 ShockwaveNN

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

askonev avatar Jun 03 '21 08:06 askonev

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.

ghost avatar Jun 03 '21 08:06 ghost

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

askonev avatar Jun 03 '21 16:06 askonev