Goal: Render watermark and text over a transparent png image.
Problem: Rendering text makes all transparency white.
If I just add the watermark (which is a png with transparency also), the transparency works.
If I just add the text, it renders text but converts all transparency to white.
If I add text and watermark (any order), text and watermark are shown but all transparency is converted to white.
Code: Select all
nconvert ^
-text_font arial 90 ^
-text_color 0 0 0 ^
-text_back 128 128 128 ^
-text_flag center ^
-text_pos 111 111 ^
-text_rotation 0 ^
-text "test text outpuit 1" ^
-wmopacity 78 -wmflag bottom-left ^
-wmfile "C:\Users\Acct\watermark.png" ^
"C:\Users\Acct\transparent.png"
PAUSE
** I wanted to add that these same source files and tasks do work in xnconvert, that do not work in nconvert. Even using the exported script. But I really wish for nconvert to be the tool.
Thanks in advance