import numpy as np import cv2 as cv # Create a black image img = np.zeros((512,512,3), np.uint8) # Draw a diagonal blue line with thickness of 5 px cv ...
分类:
编程语言 时间:
2020-10-20 16:26:11
阅读次数:
32
安装PILpip3installpillow使用PILfromPILimportImage,ImageFont,ImageDraw#image=Image.open(‘bg.jp‘)#读取图片image=Image.new(‘RGB‘,(250,250),(255,255,255))#设置画布大小及背景色iwidth,iheight=image.size#获取画布高宽font=ImageFont.
分类:
其他好文 时间:
2020-10-20 16:21:15
阅读次数:
24
测试分类: 一、按开发阶段划分 1.单元测试(Unit Testing) 2、集成测试(Integration Testing) 3、系统测试(System Testing) 4.验收测试(Acceptance Testing) 二、按是否查看代码划分 1.黑盒测试(Black-box Testin ...
分类:
其他好文 时间:
2020-10-18 10:02:04
阅读次数:
21
### 移动端 基于flex布局 的默认样式 rest css ; ```
*,::before,::after { padding: 0; margin: 0; outline: none; -webkit-tap-highlight-color: transparent; }
/* 所有元素的盒... ...
分类:
移动开发 时间:
2020-10-12 20:37:17
阅读次数:
32
import pyecharts.options as opts from pyecharts.charts import Bar3D Hair = ["Black","Brown","Red","Blond","Total"] Eye = ["Brown","Blue","Hazel","Gree ...
分类:
其他好文 时间:
2020-10-08 18:32:18
阅读次数:
14
样式: QpushButton QPushButton{ min-width:75px; max-width:75px; min-height:20px; border:1px solid black; border-radius:5px; } QPushButton:pressed{ backgr ...
分类:
其他好文 时间:
2020-09-24 00:09:50
阅读次数:
44
#绘制大耳朵兔 from turtle import * speed(10) #小兔的面部 color('pink') pensize(5) circle(radius=100)#脸 #眼睛 pencolor('black') #左眼 pu() goto(-45,92) pd() begin_fil ...
分类:
其他好文 时间:
2020-09-23 23:55:28
阅读次数:
39
from turtle import * screensize(500,500) #【头部轮廓】 pensize(5) home() seth(0) pd() color('black') circle(20,80)#0 circle(200,30)#1 circle(30,60)#2 circle ...
分类:
其他好文 时间:
2020-09-23 23:00:13
阅读次数:
33
QSS中 QLabel { background-color: rgba(255, 255, 224, 50%); border: 2px solid black; } 0%表示全透明,100%表示不透明 ...
分类:
其他好文 时间:
2020-09-17 17:29:08
阅读次数:
20
@media print { .iconClass { background: black !important; -webkit-print-color-adjust: exact; } } ...
分类:
其他好文 时间:
2020-09-17 15:34:51
阅读次数:
50