Dana
2025-12-03 30678653058f62beda7ac3f3ac94bc830b6db85e
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;
    }
}