Dana
2025-12-23 8fb102e295a2cb57389f5c37cfc9b5d20e5e018b
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.anyun.libusbcamera;
 
public class WatermarkParam {
    int x;
    int y;
    String text;
 
    public WatermarkParam(int x, int y, String text) {
        this.x = x;
        this.y = y;
        this.text = text;
    }
}