Open zhanghao1949 opened 6 months ago
Do you mean the "label" filter?
https://github.com/cshum/imagor/blob/master/README.md#filters
label(text, x, y, size, color[, alpha[, font]])
adds a text label to the image. It can be positioned inside the image with the alignment specified, color and transparency support
@cshum Thank you for your reply. I have tried "label(test,center,center,100,red,0)", but it can only draw text once in a fixed position. The effect I want to achieve is to repeatedly fill the entire image with text.
What parameters should I use to achieve this effect?
I don't think this is possible with label
, but you could make your text as an image and use watermark
to achieve your desired results.
First of all, thank you for maintaining Imagor.
I am currently using the watermark feature of imagor and I have found that it does not support text watermarks. Do you have any plans to implement this feature?