` /** * @Description: base64字符串转化成图片 * @Param: * @return: * @throws Exception * @author: hw * @date: 2021/4/12 15:45 */ public static boolean Generate ...
分类:
其他好文 时间:
2021-04-13 12:22:14
阅读次数:
0
#!/usr/bin/python3 import time import hmac import hashlib import base64 import urllib.parse import os timestamp = str(round(time.time() * 1000)) secre ...
分类:
编程语言 时间:
2021-04-12 12:15:47
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>轮播图</title> <style> * { margin: 0; padding: 0; } #outer { width: 520px; height: ...
分类:
Web程序 时间:
2021-04-06 14:15:33
阅读次数:
0
html二维码生成器 使用QRCode.js库,将文本转换为二维码图片,图片以base64格式返回 代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>二维码生成器</title> <!-- QRCode ...
分类:
其他好文 时间:
2021-04-05 11:53:18
阅读次数:
0
一、文本与Base64 1、文本转Base64字符串 private static string StrToBase64(string str) { byte[] b = Encoding.Default.GetBytes(str); //转成 Base64 形式的 System.String st ...
###### base64_编码 如果在linux上直接运行base64命令,则是对字符串进行编码在python和go语言中,需要将字符串转换成字节才能进行base64编码,两者的结果不一样 echo "Hello World" | base64 ###### read_同时为多个变量赋值 命令结果 ...
分类:
系统相关 时间:
2021-03-29 12:32:57
阅读次数:
0
使用element UI的upload组件 handleChange (file, fileList) { let _this = this if (this.formdata.printMode !== 'Bartender') return this.formdata.remark = file ...
分类:
数据库 时间:
2021-03-26 15:14:15
阅读次数:
0
前台getshell https://cloud.tencent.com/developer/article/1690304 /index.php/api/Uploadify/preview data:image/php;base64,PD9waHAgcGhwaW5mbygpOw== 后台登陆后ge ...
分类:
其他好文 时间:
2021-03-17 14:10:34
阅读次数:
0
代码 //base64编码 String a = new String(base64.encode(text.getBytes("UTF-8"))); String b = new String(Base64.encodeBase64(text.getBytes("UTF-8"))); String ...
分类:
Web程序 时间:
2021-03-16 14:04:57
阅读次数:
0
最近需要对网页进行整体截图 找了很多方法 1,打印另存为pdf 2,调整界面大小截图 测试下来,打印另存pdf可以,但是排版有点不太一样,而且配置比较麻烦,还需要用到pywin32对弹出得保存框进行确认 调整界面大小截图,这个无法实现,高度调不了太大 找了一下,发现chrome提供这个长截图:Cap ...
分类:
其他好文 时间:
2021-03-09 13:50:06
阅读次数:
0