Watermarking Status We are using this API https://9j1npyqzu1.execute-api.us-west-2.amazonaws.com/default/shopify-app-api-watermark 1. Logo Watermarking :- => When we add a logo over the image for watermarking its working fine Here is the payload for the same : { "meta":{ "settings":{ "watermarks": { "url": "https://phoebesart.studio/static/images/downloadimages/dark-wall-bedside-table_925x_55faa0e5-7eec-4a4d-b0fb-12c2493e3438.jpg", "clip_enable": 1, "clip_max_width": 2500, "clip_max_height": 1000, "clip_stretch": 1, "compression_value": 78, "watermark_enable": 1, "watermark_position": "top-left", "watermark_rotation": 0, "watermark_scale": 40, "watermark_alpha": 20, "watermark_padding_x": 0, "watermark_padding_y": 0, "watermark_over_image": 1, "watermark_under_image": 0, "watermark_url": "https://phoebesart.studio/static/images/logoimages/360_F_97589769_t45CqXyzjz0KXwoBZT9PRaWGHRk5hQqQ.jpg" } } } } 2. Text Watermarking When we add a text over the image for watermarking then we are receiving the Internal server Error https://prnt.sc/6KQCDzlwdI2t Here is the payload for the same { "meta":{ "settings":{ "watermarks": { "url": "https://phoebesart.studio/static/images/downloadimages/dark-wall-bedside-table_925x_55faa0e5-7eec-4a4d-b0fb-12c2493e3438.jpg", "clip_enable": 1, "clip_max_width": 2500, "clip_max_height": 1000, "clip_stretch": 1, "compression_value": 78, "text_enable": "1", "text_value": "Anchor, Gold, Leather, Silver", "text_position": "middle,center", "text_over_fill": "1", "text_font": "OpenSans", "text_color": "000000", "text_size": "30", "text_weight": "normal", "text_font_case": "none", "text_alpha": "15", "text_padding_x": "0", "text_padding_y": "220", "text_rotation": "0", "text_bg_full_width": "0", "text_bg_color": "ffffff", "text_bg_padding_x": "40", "text_bg_padding_y": "40" } } } } 3. Text and Logo Watermarking When we try to do watermarking with both Text and Logo, then API is working fine but watermark is not displayed https://prnt.sc/HlcGWjqnsnu-# Here is the payload for the same { "meta":{ "settings":{ "watermarks": { "clip_enable": 1, "clip_max_width": 2500, "clip_max_height": 1000, "clip_stretch": 1, "compression_value": 78, "text_enable": "1", "text_value": "Anchor, Gold, Leather, Silver", "text_position": "middle,center", "text_over_fill": "1", "text_font": "OpenSans", "text_color": "000000", "text_size": "30", "text_weight": "normal", "text_font_case": "none", "text_alpha": "15", "text_padding_x": "0", "text_padding_y": "220", "text_rotation": "0", "text_bg_full_width": "0", "text_bg_color": "ffffff", "text_bg_padding_x": "40", "text_bg_padding_y": "40" "url": "https://phoebesart.studio/static/images/downloadimages/dark-wall-bedside-table_925x_55faa0e5-7eec-4a4d-b0fb-12c2493e3438.jpg", "watermark_enable": 1, "watermark_position": "top-left", "watermark_rotation": 0, "watermark_scale": 40, "watermark_alpha": 20, "watermark_padding_x": 0, "watermark_padding_y": 0, "watermark_over_image": 1, "watermark_under_image": 0, "watermark_url": "https://phoebesart.studio/static/images/logoimages/360_F_97589769_t45CqXyzjz0KXwoBZT9PRaWGHRk5hQqQ.jpg", } } } }