Dana
2025-11-30 a99d8b20203ddf4595e2c7ac77d56e8ee01607d9
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;
    }
}