image

package
v1.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 12, 2021 License: MIT Imports: 2 Imported by: 0

Documentation

Overview

图片操作

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Image

type Image struct {
	Handle int // HIMAGE
}

图片操作

func NewImageByHandle added in v1.0.1

func NewImageByHandle(handle int) *Image

从句柄创建对象

func NewImageByName added in v1.0.1

func NewImageByName(name string) *Image

根据资源文件中的name创建对象, 失败返回nil

func NewImageByNameEx added in v1.0.1

func NewImageByNameEx(fileName, name string) *Image

从指定的资源文件中, 根据name创建对象, 失败返回nil

func NewImage_LoadFile

func NewImage_LoadFile(pFileName string, bStretch bool) *Image

图片_加载从文件 pFileName: 图片文件. bStretch: 是否拉伸图片

func NewImage_LoadFileAdaptive

func NewImage_LoadFileAdaptive(pFileName string, leftSize int, topSize int, rightSize int, bottomSize int) *Image

图片_加载从文件自适应, 加载图片从文件, 自适应图片 pFileName: 图片文件. leftSize: 坐标. topSize: 坐标. rightSize: 坐标. bottomSize: 坐标.

func NewImage_LoadFileRect

func NewImage_LoadFileRect(pFileName string, x int, y int, cx int, cy int) *Image

图片_加载从文件指定区域, 加载图片, 指定区位置及大小 pFileName: 图片文件. x: 坐标. y: 坐标. cx: 宽度. cy: 高度.

func NewImage_LoadFromExtractIcon

func NewImage_LoadFromExtractIcon(pFileName string) *Image

图片_加载文件图标, 加载文件图标, 从一个EXE文件或DLL文件或图标文件; 例如:*.exe文件的图标 pFileName: 文件名.

func NewImage_LoadFromHBITMAP

func NewImage_LoadFromHBITMAP(hBitmap int) *Image

图片_加载从HBITMAP, 创建一个炫彩图片句柄, 从一个现有的位图句柄HBITMAP hBitmap: 位图句柄

func NewImage_LoadFromHICON

func NewImage_LoadFromHICON(hIcon int) *Image

图片_加载从HICON, 创建一个炫彩图片句柄, 从一个现有的图标句柄HICON hIcon: 图标句柄

func NewImage_LoadFromImage

func NewImage_LoadFromImage(pImage int) *Image

图片_加载从Image, 加载图片从GDI+的Image对象 pImage: GDI图片对象指针Image*.

func NewImage_LoadMemory

func NewImage_LoadMemory(pBuffer int, nSize int, bStretch bool) *Image

图片_加载从内存, 加载流图片, 指定区位置及大小 pBuffer: 图片缓冲区 nSize: 图片缓冲区大小 bStretch: 是否拉伸图片

func NewImage_LoadMemoryAdaptive

func NewImage_LoadMemoryAdaptive(pBuffer int, nSize int, leftSize int, topSize int, rightSize int, bottomSize int) *Image

图片_加载从内存自适应, 加载流图片压缩包, 自适应图片(九宫格). pBuffer: 图片缓冲区 nSize: 图片缓冲区大小 leftSize: 坐标. topSize: 坐标. rightSize: 坐标. bottomSize: 坐标.

func NewImage_LoadMemoryRect

func NewImage_LoadMemoryRect(pBuffer int, nSize int, x int, y int, cx int, cy int, bStretch bool) *Image

图片_加载从内存指定区域, 加载流图片, 指定区位置及大小 pBuffer: 图片缓冲区 nSize: 图片缓冲区大小 x: 坐标. y: 坐标. cx: 宽度. cy: 高度. bStretch: 是否拉伸图片

func NewImage_LoadRes

func NewImage_LoadRes(id int, pType string, bStretch bool) *Image

图片_加载从资源 id: 资源ID. pType: 资源类型. bStretch: 是否拉伸图片

func NewImage_LoadResAdaptive

func NewImage_LoadResAdaptive(id int, pType string, leftSize int, topSize int, rightSize int, bottomSize int) *Image

图片_加载从资源自适应, 加载图片从资源, 自适应图片 id: 资源ID. pType: 资源类型. leftSize: 坐标. topSize: 坐标. rightSize: 坐标. bottomSize: 坐标.

func NewImage_LoadSrc

func NewImage_LoadSrc(hImageSrc int) *Image

图片_加载从图片源 hImageSrc: 图片源句柄

func NewImage_LoadZip

func NewImage_LoadZip(pZipFileName string, pFileName string, pPassword string, bStretch bool) *Image

图片_加载从ZIP, 加载图片从ZIP压缩包 pZipFileName: ZIP压缩包文件名. pFileName: 图片文件名. pPassword: ZIP压缩包密码. bStretch: 是否拉伸图片

func NewImage_LoadZipAdaptive

func NewImage_LoadZipAdaptive(pZipFileName string, pFileName string, pPassword string, x1 int, x2 int, y1 int, y2 int) *Image

图片_加载从ZIP自适应, 加载图片从ZIP压缩包, 自适应图片 pZipFileName: ZIP压缩包文件名. pFileName: 图片文件名. pPassword: ZIP压缩包密码 x1: 坐标. x2: 坐标. y1: 坐标. y2: 坐标.

func NewImage_LoadZipMem

func NewImage_LoadZipMem(data int, length int, pFileName string, pPassword string, bStretch bool) *Image

图片_加载从内存ZIP data: 内存块指针 length: 内存块大小 pFileName: 图片名称 pPassword: zip压缩包密码 bStretch: 是否拉伸图片

func NewImage_LoadZipRect

func NewImage_LoadZipRect(pZipFileName string, pFileName string, pPassword string, x int, y int, cx int, cy int) *Image

图片_加载从ZIP指定区域, 加载ZIP图片, 指定区位置及大小 pZipFileName: ZIP文件. pFileName: 图片名称 pPassword: 密码 x: 坐标. y: 坐标. cx: 宽度. cy: 高度.

func (*Image) AddRef

func (i *Image) AddRef() int

图片_增加引用计数

func (*Image) Destroy

func (i *Image) Destroy() int

图片_销毁, 强制销毁图片, 谨慎使用, 建议使用 XImage_Release() 释放

func (*Image) EnableAutoDestroy

func (i *Image) EnableAutoDestroy(bEnable bool) int

图片_启用自动销毁, 启用或关闭自动销毁, 当与UI元素关联时有效 bEnable: 启用自动销毁TRUE

func (*Image) EnableCenter

func (i *Image) EnableCenter(bCenter bool) int

图片_启用居中, 启用或关闭图片居中显示,默认属性图片有效 bCenter: 是否居中显示.

func (*Image) EnableTranColor

func (i *Image) EnableTranColor(bEnable bool) int

图片_启用透明色, 启用或关闭图片透明色. bEnable: 启用TRUE

func (*Image) GetDrawType

func (i *Image) GetDrawType() int

图片_取绘制类型, 获取图片绘制类型, 返回: Image_Draw_Type_

func (*Image) GetHeight

func (i *Image) GetHeight() int

图片_取高度

func (*Image) GetImageSrc

func (i *Image) GetImageSrc() int

图片_取图片源

func (*Image) GetRefCount

func (i *Image) GetRefCount() int

图片_取引用计数

func (*Image) GetWidth

func (i *Image) GetWidth() int

图片_取宽度

func (*Image) IsAdaptive

func (i *Image) IsAdaptive() bool

图片_判断自适应, 是否为自适应图片句柄

func (*Image) IsCenter

func (i *Image) IsCenter() bool

图片_判断居中, 判断图片是否居中显示

func (*Image) IsStretch

func (i *Image) IsStretch() bool

图片_判断缩放, 是否为拉伸图片句柄

func (*Image) IsTile

func (i *Image) IsTile() bool

图片_判断平铺, 是否为平铺图片

func (*Image) Release

func (i *Image) Release() int

图片_释放引用计数, 释放引用计数, 当引用计数为0时, 自动销毁.

func (*Image) SetDrawType

func (i *Image) SetDrawType(nType int) bool

图片_置绘制类型, 设置图片绘制类型 nType: 图片绘制类型, Image_Draw_Type_

func (*Image) SetDrawTypeAdaptive

func (i *Image) SetDrawTypeAdaptive(leftSize int, topSize int, rightSize int, bottomSize int) bool

图片_置绘制类型自适应, 设置图片自适应(九宫格) leftSize: 坐标. topSize: 坐标. rightSize: 坐标. bottomSize: 坐标.

func (*Image) SetHandle added in v1.0.1

func (i *Image) SetHandle(hImage int)

给本类的Handle赋值

func (*Image) SetRotateAngle

func (i *Image) SetRotateAngle(fAngle float32) int

图片_置旋转角度, 设置旋转角度, 返回先前角度. fAngle: 选择角度.

func (*Image) SetSplitEqual

func (i *Image) SetSplitEqual(nCount int, iIndex int) int

图片_置等分 nCount: 等分数量 iIndex: 索引

func (*Image) SetTranColor

func (i *Image) SetTranColor(color int) int

图片_置透明色, 指定图片透明颜色 color: RGB颜色.

func (*Image) SetTranColorEx

func (i *Image) SetTranColorEx(color int, tranColor uint8) int

图片_置透明色扩展, 指定图片透明颜色及透明度 color: RGB颜色. tranColor: 透明色的透明度.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL