zoukankan      html  css  js  c++  java
  • WorldWind源码剖析系列:图像助手类ImageHelper

    图像助手类ImageHelper封装了对各种图像的操作。该类类图如下。

     

    提供的主要处理方法基本上都是静态函数,简要描述如下:

    public static bool IsGdiSupportedImageFormat(string imageFileName) 静态函数用给定的图像文件名称来判断该图像是否是Windows GDI+支持的图像。

    public static Texture LoadTexture(string textureFileName) 静态函数从指定的图像文件路径加载并返回纹理对象,依次调用其另外3中重载形式。

    public static void CreateAlphaPngFromBrightness(string srcFilePath, string destinationPngFilePath) 静态函数用来从明度创建Alpha通道的Png图像(待确认)。

    public static Image LoadImage(string bitmapFileName) 静态函数用来从指定的文件路径加载图像。内部调用System.Drawing.Image.FromFile(bitmapFileName)函数。

    public static Cursor LoadCursor(string relativePath) 静态函数用来从指定的光标文件路径加载自定义光标。内部调用System.Windows.Form.Cursor类的构造函数。

    public static Texture LoadIconTexture(string relativePath) 静态函数从指定路径加载Icon图像并返回纹理对象。内部调用Microsoft.DirectX.Direct3D.TextureLoader.FromFile()函数。

    private static Bitmap CreateDefaultImage()静态函数功能是:当请求的Bitmap图像不可用时创建默认的图像来使用。

    public static string FindResource(string relativePath)静态函数根据给定的相对路径名判断文件资源是否存在,如存在则返回全路径名。

    public static void ConvertToDxt1(string originalImagePath, string outputDdsPath, bool eraseOriginal) 静态函数将GDI+可读取的任意类型图像传唤成DXT1级DDS纹理文件。

    public static void ConvertToDxt1(Stream originalImageStream, string outputDdsPath)

    public static void ConvertToDxt3(string originalImagePath, string outputDdsPath, bool eraseOriginal)

    public static void ConvertToDxt3(Stream originalImageStream, string outputDdsPath)

    public static void ConvertToDds(string originalImagePath, string outputDdsPath, Format format, bool eraseOriginal)

    这四个静态函数功能基本和上面的静态函数一样,这里就不详细介绍了。

  • 相关阅读:
    ACE反应器(Reactor)模式(3)
    ACE反应器(Reactor)模式(2)
    ACE反应器(Reactor)模式(1)
    ACE主动对象模式(2)
    ACE主动对象模式(1)
    ACE中UDP通信
    ACE中TCP通信
    从golang-gin-realworld-example-app项目学写httpapi (六)
    从golang-gin-realworld-example-app项目学写httpapi (五)
    从golang-gin-realworld-example-app项目学写httpapi (四)
  • 原文地址:https://www.cnblogs.com/rainbow70626/p/4550709.html
Copyright © 2011-2022 走看看