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的更多相关文章

  1. java9新特性-14-多分辨率图像 API

    1.官方Feature 251: Multi-Resolution Images 263: HiDPI Graphics on Windows and Linux 2.产生背景 在Mac上,JDK已经 ...

  2. android 5.0 受欢迎的API简介

    android 5.0 作为系统的一次重大升级,给用户和开发者带来了全新的体验.Material Design不但在视觉和操作上更胜一筹,扩展UI工具包同时也引入了大量新的API. 1. 3D视图和实 ...

  3. VR原理讲解及开发入门

    本文是作者obuil根据多年心得专门为想要入门的VR开发者所写,由52VR网站提供支持.   1. VR沉浸感和交互作用产生的原理:   在之前,我们观看一个虚拟的创造内容是通过平面显示器的,52VR ...

  4. Android内存溢出解决方案(OOM)

    众所周知,每个Android应用程序在运行时都有一定的内存限制,限制大小一般为16MB或24MB(视平台而定).因此在开发应用时需要特别关注自身的内存使用量,而一般最耗内存量的资源,一般是图片.音频文 ...

  5. Android处理图片OOM的若干方法小结 (推荐)

    众所周知,每个Android应用程序在运行时都有一定的内存限制,限制大小一般为16MB或24MB(视平台而定).因此在开发应用时需要特别关注自身的内存使用量,而一般最耗内存量的资源,一般是图片.音频文 ...

  6. windows类书的学习心得(转载)

    原文网址:http://www.blogjava.net/sound/archive/2008/08/21/40499.html 现在的计算机图书发展的可真快,很久没去书店,昨日去了一下,真是感叹万千 ...

  7. 微信公众号与HTML 5混合模式揭秘2——分享手机相册中照片

    本书是分享微信jssdk开发的第二篇.     4.2.1 项目需求 需求说明:实现微信端的手机用户,点击按钮选取1张图片,分享到朋友圈. 4.2.2 需求分解 通过对需求的了解,可以将其分解为: ( ...

  8. Qt 学习之路 :Qt 模块简介

    Qt 5 与 Qt 4 最大的一个区别之一是底层架构有了修改.Qt 5 引入了模块化的概念,将众多功能细分到几个模块之中.Qt 4 也有模块的概念,但是是一种很粗的划分,而 Qt 5 则更加细化.本节 ...

  9. [QT]QT概述

    QT概述 基于C++的GUI开发框架,跨平台.Qt 是一个用于桌面系统和嵌入式开发的跨平台应用程序框架. QT是挪威TROLLTECH公司开发的跨平台C++工具,在UNIX下非常出名:他的宗旨是“一次 ...

随机推荐

  1. 100、TensorFlow实现FFM Field-awared FM模型

    ''' Created on 2017年11月15日 @author: weizhen ''' import tensorflow as tf import pandas as pd import n ...

  2. 93、R语言教程详解

    加载数据 > w<-read.table("test.prn",header = T) > w X.. X...1 1 A 2 2 B 3 3 C 5 4 D 5 ...

  3. 46、tensorflow入门初步,手写识别0,1,2,3,4,5,6

    1.使用tensorflow的SoftMax函数,对手写数字进行识别 Administrator@SuperComputer MINGW64 ~ $ docker run -it -p 8888:88 ...

  4. 微信小程序 Page构造函数重写

    //utils/utils.js const oldPage = Page; console.log(oldPage) Page = function (app) { //定义新函数 app.newS ...

  5. msf generate exec payload

    daniel@daniel-mint ~/msf/metasploit-framework $ ruby msfpayload windows/exec CMD=calc.exe N WARNING: ...

  6. Django框架(三十)—— 使用Vue搭建前台

    目录 vue的使用 一.创建vue项目 二.pycharm开发vue项目 1.安装vue.js插件 2.运行vue项目 三.vue项目的目录结构 四.vue的使用 1.创建新的组件 2.显示数据 3. ...

  7. Java中的宏变量,宏替换详解。

    群友在微信群讨论的一个话题,有点意思,特拿出来分享一下. 首先来看下面这段程序,和群友分享的大致一样. public static void main(String[] args) { String ...

  8. USACO 2014 US Open Odometer /// 枚举

    题目大意: 给定区间 l r 求区间包含多少个数 它们各个位的数只有一个不一样 注意 多个位但多个数为0单个数为x的情况 这种情况只有 x000 即把单个数放在首位才是正确的 同样注意 多个位但单个数 ...

  9. 视频专家之路【四】:ffmpeg简单实战之获取属性

    本文是听了雷宵骅大神的课之后的总结,部分内容借用了其PPT的内容,如有侵权请告知删除. 雷宵骅大神的博客为:https://blog.csdn.net/leixiaohua1020 本节的目的正式开始 ...

  10. 华视身份证读卡器获取uid号vue单文件组件版本

    <template> <div id="app" ref="app"> <object ref="CertCtl&quo ...