Dana
2025-11-29 3d0d377e1e8cfa2c47f3c4f32b68e30797e38d2a
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;
    }
}