//获取当前运行程序上一级目录PDF文件夹 private string txtPath = System.AppDomain.CurrentDomain.BaseDirectory + "PDF\\"; //如果该文件下没有PDF文件夹就创建该文件夹 if (!Directory.Exists(t ...
分类:
其他好文 时间:
2021-04-10 12:52:27
阅读次数:
0
平移->旋转->反向平移 QPointF data; QPointF origin; qreal degrees = 45.0; QMatrix transform; transform = transform.translate(origin.x(),origin.y()).rotate(degr ...
分类:
其他好文 时间:
2021-04-08 14:00:14
阅读次数:
0
bug出现的原因 1、发现是ios13上面获取transform的结果跟老版本的结果不一样: // 老版本: 'matrix(1, -2.4492935982947064, 2.4492935982947064, 1, 0, 19.48200035095215)' //新版本 'matrix(1, ...
分类:
移动开发 时间:
2021-04-08 13:53:58
阅读次数:
0
from transformers import BertModel, BertTokenizer, BertConfig import torch enc = BertTokenizer.from_pretrained("bert-base-uncased") # 输入文本tokenize tex ...
分类:
其他好文 时间:
2021-04-08 13:24:15
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
Web程序 时间:
2021-04-08 13:22:19
阅读次数:
0
HTML(三)图像标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ImageDirectoryStudy</title> </head> <body> <img src="../resourse/ima ...
分类:
Web程序 时间:
2021-04-06 14:05:55
阅读次数:
0
问题:求从起点走到终点的最短路径 Java代码: 1 package com.lzp.maze.dfs; 2 3 import java.util.Scanner; 4 5 /** 6 * @author LZP 7 * @date 2021年4月3日 8 * @Description 9 * @v ...
分类:
其他好文 时间:
2021-04-05 12:41:26
阅读次数:
0
Public Sub SavetheattachmentNew(Item As Outlook.MailItem) Dim olApp As New Outlook.Application Dim nmsName As Outlook.NameSpace Dim vItem As Object Se ...
分类:
其他好文 时间:
2021-04-02 13:02:04
阅读次数:
0
这几天接触到的pgame的模块主要有用于控制显示的display模块,用于图像控制的surface模块、用户画出各种图形形状的draw模块以及对surface对象进行操作,比如翻转、剪裁等操作的transform模块、pygame中内嵌的矩形对象,这里不同于画图中的形状,更重要的是rect对象可以存 ...
分类:
其他好文 时间:
2021-04-01 13:29:52
阅读次数:
0
CS DES任意长度密钥加密 private static string Encrypt2(string str, string sKey) { string s = ""; using (System.Security.Cryptography.DESCryptoServiceProvider d ...
分类:
其他好文 时间:
2021-04-01 12:53:38
阅读次数:
0