houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 事件图片偏移信息
8  * @date 2022/12/19 11:30:58
9  */
10 public class NET_EVENT_IMAGE_OFFSET_INFO extends NetSDKLib.SdkStructure {
11     /**
12      * 偏移
13      */
14     public int nOffSet;
15     /**
16      * 图片大小,单位字节
17      */
18     public int nLength;
19     /**
20      * 图片宽度
21      */
22     public int nWidth;
23     /**
24      * 图片高度
25      */
26     public int nHeight;
27     /**
28      * 图片路径
29      */
30     public byte[] szPath = new byte[260];
31     /**
32      * 在上传图片数据中的图片序号
33      */
34     public int nIndexInData;
35     /**
36      * 预留字节
37      */
38     public byte[] byReserved = new byte[248];
39
40     public NET_EVENT_IMAGE_OFFSET_INFO() {
41     }
42 }