Project titan smoke tutorial flipbook with indie watermark [www.sidefx.com]
Labs FlipBook Textures makes watermark in indie edition [www.sidefx.com]
The problem with this node is that in the Indie version, a watermark with the text "Indie Edition" appears.
I have also encountered this issue and took it upon myself to investigate the flaw. It seems to depend on the version of "labs" you have, but in mine (20.0.547), the issue persists.
The node itself has a tab called "Interface" where you have a variable called "viewportpadding." This variable is supposed to add padding to the camera to make that "Indie Edition" watermark disappear. However, if you go to the script that runs this node, in the function where the value of this resolution is assigned, the padding is only applied on the Y-axis and not on the X-axis.
So, to fix this, we need to go to the "type properties" of the node, navigate to the Scripts section, find the definition of the "setCommonSceneViewerSettings" function (line 278 in my case), and within it, we have the assignment of the "res" variable, which should be something like this:
res = (target_res[0] * 2 - res[0] + padding * 2, target_res[1] * 2 - res[1] + padding * 2)
Currently, in the first term of that tuple, the padding variable is not being added.