Merge Images in Script

DraagonStormDraagonStorm Posts: 748

Is there any way to merge Images in Script and then save out the merged image?

Comments

  • Richard HaseltineRichard Haseltine Posts: 96,868
    edited December 1969

    I haven't had occasion to use it, but DzLayeredImage (which is in the DS3 script docs) looks promising.

  • DraagonStormDraagonStorm Posts: 748
    edited December 1969

    Thank you Richard.. You lead me in the right direction... And you'd think I would have thought about layered images.... Of all People :(

  • YudinEdYudinEd Posts: 90

    Try these codes for images inside of script

    MyText = new DzTextEdit( MyDialog );

    MyText.text =" <img src='data:image/png;base64  ... here your image in 64base format.....>'   ";

    You can use this too

    MyText= new DzTextBrowser( MyDialog );

    MyText.text =" <img src='data:image/png;base64  ... here your image in 64base format.....>'   ";

     

Sign In or Register to comment.