Irreversible

Jpeg2000Options.Irreversible property

الحصول على أو تعيين قيمة تشير إلى استخدام DWT 9-7 الذي لا رجعة فيه (صحيح) أو استخدام ضغط DWT 5-3 بدون خسارة (افتراضي) .

public bool Irreversible { get; set; }

أمثلة

يوضح هذا المثال كيفية إنشاء صورة PNG وحفظها في JPEG2000 بالخيارات المطلوبة.

[C#]

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

// أنشئ صورة PNG بحجم 100 × 100 بكسل.
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;

// قم بإنشاء صورة بتنسيق JPEG2000 بحجم 100 × 100 بكسل.
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");
}

أنظر أيضا