Jpeg2000Image

Jpeg2000Image(string)

初始化Jpeg2000Image类.

public Jpeg2000Image(string path)
范围类型描述
pathString从中加载图像和初始化像素和调色板数据的路径。

例子

此示例说明如何从文件加载 JPEG2000 图像并将其保存为 PNG。

[C#]

string dir = "c:\\temp\\";

// 加载 JPEG2000 图像。
using (Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image jpeg2000Image = new Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image(dir + "sample.jp2"))
{
    // 保存为 PNG
    jpeg2000Image.Save(dir + "sample.output.png", new Aspose.Imaging.ImageOptions.PngOptions());
}

也可以看看


Jpeg2000Image(string, int)

初始化Jpeg2000Image类.

public Jpeg2000Image(string path, int bitsPerPixel)
范围类型描述
pathString从中加载图像并初始化像素和调色板数据的路径
bitsPerPixelInt32每像素位数。

也可以看看


Jpeg2000Image(Stream)

初始化Jpeg2000Image类.

public Jpeg2000Image(Stream stream)
范围类型描述
streamStream用于从中加载图像并用于初始化像素和调色板数据的流。

例子

此示例说明如何从文件流加载 JPEG2000 图像并将其保存为 PNG。

[C#]

string dir = "c:\\temp\\";

// 从流中加载 JPEG2000 图像。
using (System.IO.Stream stream = System.IO.File.OpenRead(dir + "sample.jp2"))
using (Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image jpeg2000Image = new Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image(stream))
{
    // 保存为 PNG
    jpeg2000Image.Save(dir + "sample.output.png", new Aspose.Imaging.ImageOptions.PngOptions());
}

也可以看看


Jpeg2000Image(Stream, int)

初始化Jpeg2000Image类.

public Jpeg2000Image(Stream stream, int bitsPerPixel)
范围类型描述
streamStream用于从中加载图像并用于初始化像素和调色板数据的流。
bitsPerPixelInt32每像素位数。

也可以看看


Jpeg2000Image(int, int)

初始化Jpeg2000Image类.

public Jpeg2000Image(int width, int height)
范围类型描述
widthInt32图像宽度
heightInt32图像高度

例子

此示例说明如何创建 JPEG2000 图像并将其保存到文件中。

[C#]

string dir = "c:\\temp\\";

// 创建一个 100x100 像素的 JPEG2000 图像。
using (Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image jpeg2000Image = new Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image(100, 100))
{
    Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(jpeg2000Image);

    // 用红色填充整个图像。
    Aspose.Imaging.Brushes.SolidBrush brush = new Aspose.Imaging.Brushes.SolidBrush(Aspose.Imaging.Color.Red);
    graphics.FillRectangle(brush, jpeg2000Image.Bounds);

    // 保存到文件
    jpeg2000Image.Save(dir + "sample.output.jp2", new Aspose.Imaging.ImageOptions.Jpeg2000Options());
}

也可以看看


Jpeg2000Image(int, int, Jpeg2000Options)

初始化Jpeg2000Image类.

public Jpeg2000Image(int width, int height, Jpeg2000Options options)
范围类型描述
widthInt32图像宽度
heightInt32图像高度
optionsJpeg2000Options选项。

例子

此示例显示如何创建 PNG 图像并将其保存为 JPEG2000 并使用所需的选项。

[C#]

string dir = "c:\\temp\\";

// 创建一个 100x100 像素的 PNG 图像。
using (Aspose.Imaging.FileFormats.Png.PngImage pngImage = new Aspose.Imaging.FileFormats.Png.PngImage(100, 100))
{
    Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(pngImage);

    // 用红色填充整个图像。
    Aspose.Imaging.Brushes.SolidBrush brush = new Aspose.Imaging.Brushes.SolidBrush(Aspose.Imaging.Color.Red);
    graphics.FillRectangle(brush, pngImage.Bounds);

    Aspose.Imaging.ImageOptions.Jpeg2000Options saveOptions = new Aspose.Imaging.ImageOptions.Jpeg2000Options();

    // 使用不可逆离散小波变换 9-7
    saveOptions.Irreversible = true;

    // JP2 是 JPEG 2000 码流的“容器”格式。
    // J2K 是原始压缩数据,没有包装器。
    saveOptions.Codec = Imaging.FileFormats.Jpeg2000.Jpeg2000Codec.J2K;

    // 保存到文件
    pngImage.Save(dir + "output.j2k", saveOptions);
}

此示例说明如何使用所需选项创建 JPEG2000 图像并将其保存到文件中。

[C#]

string dir = "c:\\temp\\";

Aspose.Imaging.ImageOptions.Jpeg2000Options createOptions = new Aspose.Imaging.ImageOptions.Jpeg2000Options();

// 使用不可逆离散小波变换 9-7
createOptions.Irreversible = true;

// JP2 是 JPEG 2000 码流的“容器”格式。
// J2K 是原始压缩数据,没有包装器。
createOptions.Codec = Imaging.FileFormats.Jpeg2000.Jpeg2000Codec.J2K;

// 创建一个 100x100 像素的 JPEG2000 图像。
using (Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image jpeg2000Image = new Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image(100, 100, createOptions))
{
    Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(jpeg2000Image);

    // 用红色填充整个图像。
    Aspose.Imaging.Brushes.SolidBrush brush = new Aspose.Imaging.Brushes.SolidBrush(Aspose.Imaging.Color.Red);
    graphics.FillRectangle(brush, jpeg2000Image.Bounds);

    // 保存到文件
    jpeg2000Image.Save(dir + "sample.output.j2k");
}

也可以看看


Jpeg2000Image(int, int, int)

初始化Jpeg2000Image类.

public Jpeg2000Image(int width, int height, int bitsCount)
范围类型描述
widthInt32图像宽度
heightInt32图像高度
bitsCountInt32位计数。

也可以看看


Jpeg2000Image(RasterImage)

初始化Jpeg2000Image类.

public Jpeg2000Image(RasterImage image)
范围类型描述
imageRasterImage图片。

例子

此示例说明如何使用另一个光栅图像创建 JPEG2000 图像。

[C#]

string dir = "c:\\temp\\";

// 创建一个 100x100 像素的 PNG 图像。
using (Aspose.Imaging.FileFormats.Png.PngImage pngImage = new Aspose.Imaging.FileFormats.Png.PngImage(100, 100))
{
    Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(pngImage);

    // 用红色填充整个图像。
    Aspose.Imaging.Brushes.SolidBrush brush = new Aspose.Imaging.Brushes.SolidBrush(Aspose.Imaging.Color.Red);
    graphics.FillRectangle(brush, pngImage.Bounds);

    // 基于PNG图像创建JPEG2000图像。
    using (Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image jpeg2000Image = new Aspose.Imaging.FileFormats.Jpeg2000.Jpeg2000Image(pngImage))
    {
        // 保存到文件
        jpeg2000Image.Save(dir + "output.jp2", new Aspose.Imaging.ImageOptions.Jpeg2000Options());
    }
}

也可以看看


Jpeg2000Image(RasterImage, int)

初始化Jpeg2000Image类.

public Jpeg2000Image(RasterImage rasterImage, int bitsPerPixel)
范围类型描述
rasterImageRasterImage用于初始化像素和调色板数据的图像。
bitsPerPixelInt32每像素位数。

也可以看看