码迷,mamicode.com
首页 >  
搜索关键字:pt px pixel    ( 3374个结果
netcore webapi 输出imges,在docker里面swagger报错
发现:service中有个webapi输出了: public Bitmap GetLogoQRCode(string url, string logoPath, int pixel) { return QRCoderHelper.GetLogoQRCode(url, logoPath, pixel) ...
分类:Windows程序   时间:2020-07-15 15:54:48    阅读次数:97
Vue:将px转化为rem,适配移动端
1.下载lib-flexible 我使用的是vue-cli+webpack,所以是通过npm来安装的 npm i lib-flexible --save 2.引入lib-flexible 在main.js中引入lib-flexible import 'lib-flexible/flexible' 3 ...
分类:移动开发   时间:2020-07-13 15:38:12    阅读次数:96
Android 刷机遇到getvar:all FAILED (remote: 'unknown command')
用pixel 2 XL刷官方镜像,结果不断提示getvar:all FAILED (remote: 'unknown command'),搜了半天没发现有什么解决方案,最后根据Google搜到的一些零星的结果硬把坑踩过去了。 重点主要就两点: 1.platform-tools版本不能高于26 2.A ...
分类:移动开发   时间:2020-07-12 19:15:48    阅读次数:138
1016 部分A+B (15分)
//结果部分正确 #include<iostream> using namespace std; typedef long long ll; ll px(ll a,ll b) { ll p=0; if(a%10==b) { p=p*10+b; a=a/10; } return p; } int ma ...
分类:其他好文   时间:2020-07-12 14:21:44    阅读次数:52
单独设置首页的页眉页脚
from docx import Document from docx.shared import Pt from docx.enum.text import WD_ALIGN_PARAGRAPH #导入对齐库 文件=Document(r'E:\word练习\页眉页脚.docx') 第一节=文件.s ...
分类:其他好文   时间:2020-07-12 12:19:36    阅读次数:69
Chapter1 - 像素(Pixel)操作
Chapter1 - 像素(Pixel)操作 import cv2 as cv import numpy as np src = cv.imread("opencv.png") 一、改变像素值 # copy image, deep copy img_copied = np.copy(src) # c ...
分类:其他好文   时间:2020-07-11 13:04:28    阅读次数:87
DOM viewport
今天学到了一个新的技巧,用鼠标点击 chrome dev tools 的 Elements 中的标签以后 ,使用 $0 就可以获取到鼠标所点击的 DOM 节点 然后总结一下 Dom Scroll 的 api。 常用的就是这几个。 $0.scrollBy(30, 30); $0.scrollTo(0, ...
分类:其他好文   时间:2020-07-10 15:42:44    阅读次数:63
写一函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度
写一函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度。 解题思路: 字符串以\0作为结尾,则从第一个字符开始向后移动遇到\0认为字符串结束。 答案: #include <stdio.h> int mystrlen(char *str) { int len = 0; char *pt ...
分类:其他好文   时间:2020-07-09 19:20:11    阅读次数:89
段落缩进
from docx import Document from docx.shared import Pt,Inches #Pt指镑(int类型),Inches指英寸(float类型) w=Document(r'D:\word练习\练习.docx') for paragraph in w.paragr ...
分类:其他好文   时间:2020-07-08 22:51:25    阅读次数:65
js-动态修改伪元素样式
document.styleSheets[0].addRule('#' + node.key + '::after', 'height:' + fileNameDom.clientHeight + 'px !important'); // 设置伪元素样式 document.styleSheets[0 ...
分类:Web程序   时间:2020-07-06 18:09:02    阅读次数:173
3374条   上一页 1 ... 5 6 7 8 9 ... 338 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!