package com.iailab.module.data.video.dahua;
|
|
import com.alibaba.fastjson.JSON;
|
import com.iailab.module.data.common.utils.HttpRequest;
|
import com.iailab.netsdk.lib.NetSDKLib;
|
import com.sun.jna.Pointer;
|
import org.springframework.beans.factory.annotation.Value;
|
|
import javax.imageio.ImageIO;
|
import java.awt.image.BufferedImage;
|
import java.io.ByteArrayInputStream;
|
import java.io.File;
|
import java.io.IOException;
|
import java.util.Calendar;
|
import java.util.HashMap;
|
import java.util.Map;
|
|
/**
|
* 设置抓图回调
|
*
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年03月06日
|
*/
|
public class DHCaptureReceiveCB implements NetSDKLib.fSnapRev {
|
|
@Value("${dahua.callback.url}")
|
public String url;
|
|
@Override
|
public void invoke(NetSDKLib.LLong lLoginID, Pointer pBuf, int revLen, int encodeType, int cmdSerial, Pointer dwUser) {
|
System.out.println("DHCaptureReceiveCB:");
|
Calendar calendar = Calendar.getInstance();
|
// calendar.set(Calendar.MONTH, 0);
|
// calendar.set(Calendar.SECOND, 0);
|
if (pBuf != null && revLen > 0) {
|
String strFileName = DHSavePath.getSavePath().getSaveCapturePath(String.valueOf(cmdSerial), calendar.getTime());
|
System.out.println("cmdSerial=" + cmdSerial);
|
System.out.println("strFileName=" + strFileName);
|
|
byte[] buf = pBuf.getByteArray(0, revLen);
|
ByteArrayInputStream byteArrInput = new ByteArrayInputStream(buf);
|
try {
|
BufferedImage bufferedImage = ImageIO.read(byteArrInput);
|
if (bufferedImage == null) {
|
return;
|
}
|
ImageIO.write(bufferedImage, "jpg", new File(strFileName));
|
} catch (IOException e) {
|
e.printStackTrace();
|
}
|
|
// 回调处理图片
|
Map<String, String> params = new HashMap<>();
|
params.put("strFileName", strFileName);
|
params.put("cmdSerial", Integer.valueOf(cmdSerial).toString());
|
HttpRequest.doPost(url, JSON.toJSONString(params), "utf-8", "");
|
|
}
|
}
|
}
|