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)

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

  • 相关阅读:
    几个计算广告学的课程
    Jie Bao 牛人cv
    如果英剧《黑镜子》拍第三季,你来写一集剧本策划,你想写一个什么样的故事呢? 知乎
    设计模式之迭代器与组合模式
    javascript 时钟clock
    项目中的需求蔓延
    一个产生随机random markers 例子
    设计模式之模板方法模式
    设计模式之反(向)模式
    转:用函数式编程技术编写优美的 JavaScript
  • 原文地址:https://www.cnblogs.com/rainbow70626/p/4550709.html
Copyright © 2011-2022 走看看