码迷,mamicode.com
首页 >  
搜索关键字:black    ( 2607个结果
Python 使用opencv,基础用法 画图
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
使用PIL生成文字图片
安装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
多测师讲解__ 测试分类__高级讲师肖sir
测试分类: 一、按开发阶段划分 1.单元测试(Unit Testing) 2、集成测试(Integration Testing) 3、系统测试(System Testing) 4.验收测试(Acceptance Testing) 二、按是否查看代码划分 1.黑盒测试(Black-box Testin ...
分类:其他好文   时间:2020-10-18 10:02:04    阅读次数:21
移动端base.css
### 移动端 基于flex布局 的默认样式 rest css ; ``` *,::before,::after { padding: 0; margin: 0; outline: none; -webkit-tap-highlight-color: transparent; } /* 所有元素的盒... ...
分类:移动开发   时间:2020-10-12 20:37:17    阅读次数:32
实验1
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
QT 自定义样式表
样式: 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
turtle画兔子
#绘制大耳朵兔 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
turtle画小狗
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
Qt设置控件透明度
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
2607条   上一页 1 ... 3 4 5 6 7 ... 261 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!