hi ~
I need to set the size of the text to about 5px, but after experiments, the minimum size of the library provided by your side supports about 10px, which will not change when it goes down. May I ask if your product itself has this problem? Or is there something wrong with my implementation? (The code is as follows) In addition, if it has nothing to do with the implementation of my code, could you please help me solve the problem of font size?
Watermarker watermarker = new Watermarker(inFilePath);
TextWatermark textWatermark = new TextWatermark(WaterText, new Font("Arial", 8));
textWatermark.setHorizontalAlignment(HorizontalAlignment.Center);
textWatermark.setVerticalAlignment(VerticalAlignment.Bottom);
textWatermark.setRotateAngle(0);
textWatermark.setSizingType(SizingType.ScaleToParentDimensions);
textWatermark.setScaleFactor(0.5);
textWatermark.setOpacity(0.1);
watermarker.add(textWatermark);
watermarker.save(outFilePath);
watermarker.close();