8.1 图像API
8.1 图像API
Routine |
Description |
Drawing related functions |
|
GUI_AddRect() |
调整矩形框的大小 |
GUI_GetClientRect() |
Returns the current available drawing area. |
GUI_GetDrawMode() |
Returns the current drawing mode. |
GUI_GetPenSize() |
Returns the current pen size in pixels. |
GUI_GetPixelIndex() |
Returns the color index of a given position. |
GUI_SetClipRect() |
Sets the rectangle used for clipping. |
GUI_SetDrawMode() |
Sets the drawing mode. |
GUI_SetPenSize() |
Sets the pen size in pixels. |
Basic drawing routines |
|
GUI_Clear() |
Fills the display / the active window with the background color. |
GUI_ClearRect() |
Fills a rectangular area with the background color. |
GUI_CopyRect() |
Copies a rectangle area on the display |
GUI_DrawGradientH() |
Draws a rectangle filled with a horizontal color gradient. |
GUI_DrawGradientV() |
Draws a rectangle filled with a vertical color gra- dient. |
GUI_DrawGradientRoundedH() |
Draws a rectangle with rounded corners filled with a horizontal color gradient. |
GUI_DrawGradientRoundedV() |
Draws a rectangle with rounded corners filled with a vertical color gradient. |
GUI_DrawPixel() |
Draws a single pixel. |
GUI_DrawPoint() |
Draws a point. |
GUI_DrawRect() |
Draws a rectangle. |
GUI_DrawRectEx() |
Draws a rectangle. |
GUI_DrawRoundedFrame() |
Draws a frame with rounded corners. |
GUI_DrawRoundedRect() |
Draws a rectangle with rounded corners. |
GUI_FillRect() |
Draws a filled rectangle. |
GUI_FillRectEx() |
Draws a filled rectangle. |
GUI_FillRoundedRect() |
Draws a filled rectangle with rounded corners. |
GUI_InvertRect() |
Invert a rectangular area. |
Alpha blending |
|
GUI_EnableAlpha() |
Enables/disables automatic alpha blending |
GUI_PreserveTrans() |
Makes sure that alpha channel remains after drawing operations. |
GUI_RestoreUserAlpha() |
Restores the previous state of user alpha blend- ing |
GUI_SetAlpha() |
Sets the current alpha blending value. (Obso- lete) |
GUI_SetUserAlpha() |
Sets an additional value which is used to calcu- late the actual alpha blending value to be used. |
Drawing bitmaps |
|
GUI_DrawBitmap() |
Draws a bitmap. |
GUI_DrawBitmapEx() |
Draws a scaled bitmap. |
GUI_DrawBitmapMag() |
Draws a magnified bitmap. |
GUI_SetAlphaMask8888() |
Could be used for setting an additional AND and OR mask to be used for drawing the pixels of 32bpp bitmaps. |
GUI_SetClipRect()
GUI_RECT Rect = { , , , }, Rect2;
GUI_AddRect(&Rect2, &Rect, -); // GUI_SetClipRect(&Rect2); // 切掉,不会影响该方框。 GUI_FillRectEx(&Rect); GUI_Delay();
// GUI_SetClipRect(NULL);
GUI_SetColor(GUI_GREEN);
GUI_FillRectEx(&Rect);
GUI_SetClipRect(&Rect2); // 切掉,不会影响该方框。 GUI_FillRectEx(&Rect); GUI_Delay();
// GUI_SetClipRect(NULL);
GUI_SetColor(GUI_GREEN);
GUI_FillRectEx(&Rect);
GUI_SetClipRect(&Rect2); // 切掉,不会影响该方框。 GUI_FillRectEx(&Rect); GUI_Delay();
GUI_SetClipRect(NULL);
GUI_SetColor(GUI_GREEN);
GUI_FillRectEx(&Rect);
8.1 图像API的更多相关文章
- java9新特性-14-多分辨率图像 API
1.官方Feature 251: Multi-Resolution Images 263: HiDPI Graphics on Windows and Linux 2.产生背景 在Mac上,JDK已经 ...
- android 5.0 受欢迎的API简介
android 5.0 作为系统的一次重大升级,给用户和开发者带来了全新的体验.Material Design不但在视觉和操作上更胜一筹,扩展UI工具包同时也引入了大量新的API. 1. 3D视图和实 ...
- VR原理讲解及开发入门
本文是作者obuil根据多年心得专门为想要入门的VR开发者所写,由52VR网站提供支持. 1. VR沉浸感和交互作用产生的原理: 在之前,我们观看一个虚拟的创造内容是通过平面显示器的,52VR ...
- Android内存溢出解决方案(OOM)
众所周知,每个Android应用程序在运行时都有一定的内存限制,限制大小一般为16MB或24MB(视平台而定).因此在开发应用时需要特别关注自身的内存使用量,而一般最耗内存量的资源,一般是图片.音频文 ...
- Android处理图片OOM的若干方法小结 (推荐)
众所周知,每个Android应用程序在运行时都有一定的内存限制,限制大小一般为16MB或24MB(视平台而定).因此在开发应用时需要特别关注自身的内存使用量,而一般最耗内存量的资源,一般是图片.音频文 ...
- windows类书的学习心得(转载)
原文网址:http://www.blogjava.net/sound/archive/2008/08/21/40499.html 现在的计算机图书发展的可真快,很久没去书店,昨日去了一下,真是感叹万千 ...
- 微信公众号与HTML 5混合模式揭秘2——分享手机相册中照片
本书是分享微信jssdk开发的第二篇. 4.2.1 项目需求 需求说明:实现微信端的手机用户,点击按钮选取1张图片,分享到朋友圈. 4.2.2 需求分解 通过对需求的了解,可以将其分解为: ( ...
- Qt 学习之路 :Qt 模块简介
Qt 5 与 Qt 4 最大的一个区别之一是底层架构有了修改.Qt 5 引入了模块化的概念,将众多功能细分到几个模块之中.Qt 4 也有模块的概念,但是是一种很粗的划分,而 Qt 5 则更加细化.本节 ...
- [QT]QT概述
QT概述 基于C++的GUI开发框架,跨平台.Qt 是一个用于桌面系统和嵌入式开发的跨平台应用程序框架. QT是挪威TROLLTECH公司开发的跨平台C++工具,在UNIX下非常出名:他的宗旨是“一次 ...
随机推荐
- 深入浅出C语言中的柔性数组
在日常的编程中,有时候需要在结构体中存放一个长度动态的字符串,一般的做法,是在结构体中定义一个指针成员,这个指针成员指向该字符串所在的动态内存空间,例如: typedef struct test { ...
- python进阶:类和对象
@修饰符:将被修饰的函数作为参数,运行修饰函数 实例方法: 静态方法:@staticmethod 类方法:@classmethod 自省:通过一定的机制查询到对象的内部结构 序列类: 列表推导式(例表 ...
- SSH的两种登录方式
ssh客户端使用的是Xshell,windows环境. 第一种方式,用户名密码方式 原理如下: 客户端发起ssh请求之后,服务器把自己的公钥传给客户端 客户端输入服务器密码通过公钥加密之后传给服务器 ...
- Kafka启动报错
文章目录 问题 解决 问题 通过 ./kafka-server-start.sh ../config/server.properties 启动kafka 之前在server.properties中修改 ...
- Single Page Application
single page web application,SPA,就是只有一张Web页面的应用,是加载单个HTML 页面并在用户与应用程序交互时动态更新该页面的Web应用程序. 单页Web应用(si ...
- ORA-13639: The CURRENT operation was interrupted because it timed OUT
该错误是由于SQL Tune Job执行超时导致,默认“Time Limit"是3600秒,即一个小时.DECLARE l_sql_tune_task_id CLOB; BEGIN ...
- 接口自动化测试框架-AIM3.0-开源+OOP
这是3.0了,从1.0到2.0直接跨越到3.0,就是这么随意. 3.0的关键词一是开源,源码地址为https://github.com/dongfanger/AIM,二是OOP. 随着python的发 ...
- java部署系列:CentOS下部署Java7/Java8
一.前言 1.本文主要内容 CentOS下部署OracleJDK CentOS下部署OpenJDK 2.适用范围与本篇环境 适用范围 1.CentOS 6+2.Java 7+ 本篇环境 1.CentO ...
- [Fw]How to Add a System Call(Fedora Core 6 Kernel : 2.6.18)
How to Add a System Call Kernel : 2.6.18編譯環境 : Fedora Core 6 假設要加的system call為 sys_project, 有一個int的輸 ...
- ReactOS 代码更新后的编译安装
其实四月份就已经更新过了,最新版应该是0.4.11+,具体去GITHUB上去看. 至于编译,其实在最早的0.2版本时代,ReactOS就曾经给出过一套完整的编译方式, 并且给出过一个完整的编译环境,版 ...