Dana
2025-12-01 ccf7a1f19b5c6276178c72609c88d057214c8239
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;
    }
}