VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging.Codecs.ImageFiles.Raw Namespace / ArwPage Class
    Класс ArwPage
    В этом разделе
    Представляет страницу ARW-файла (Sony).
    Объектная модель
    Resolution Palette ImageFileSource ArwPage
    Синтаксис
    'Declaration
    
    Public NotInheritable Class ArwPage
       Inherits RawImagePageBase
    
    
    public sealed class ArwPage : RawImagePageBase
    
    
    public __gc __sealed class ArwPage : public RawImagePageBase*
    
    
    public ref class ArwPage sealed : public RawImagePageBase^
    
    
    Ремарки

    SDK использует библиотеку LibRaw для получения RAW-изображения из ARW-файла - укажите путь к библиотеке LibRaw с помощью свойства LibRawPath.

    Пример

    Вот пример, показывающий, как открыть ARW-файл, получить RAW-изображение из ARW-файла и сохранить изображение в PNG-файл:

    
    ''' <summary>
    ''' Opens Sony ARW-file, gets RAW-image from ARW-file and saves image to a PNG-file.
    ''' </summary>
    ''' <param name="arwFilename">The name of ARW-file.</param>
    Public Sub RenderAndSaveArwImage(arwFilename As String)
        ' set path to the "libraw.dll" file - VintaSoft Imaging .NET SDK uses LibRaw for parsing Sony ARW-file
        Vintasoft.Imaging.RawCodec.LibRawHelper.LibRawPath = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "libraw.dll")
    
        ' open ARW-file stream
        Using fs As New System.IO.FileStream(arwFilename, System.IO.FileMode.Open, System.IO.FileAccess.Read)
            ' open ARW-file
            Dim rawImageFile As New Vintasoft.Imaging.Codecs.ImageFiles.Raw.RawImageFile(fs)
            ' get ARW-page
            Dim arwPage As Vintasoft.Imaging.Codecs.ImageFiles.Raw.ArwPage = TryCast(rawImageFile.Page, Vintasoft.Imaging.Codecs.ImageFiles.Raw.ArwPage)
            ' if ARW-page is found in RAW-file
            If arwPage IsNot Nothing Then
                ' get RAW-image as 48-bpp RGB image
                Using rawImage As Vintasoft.Imaging.VintasoftImage = arwPage.GetImage()
                    ' save 48-bpp RGB image to a PNG file
                    rawImage.Save(arwFilename & ".png")
                End Using
            End If
        End Using
    End Sub
    
    
    
    /// <summary>
    /// Opens Sony ARW-file, gets RAW-image from ARW-file and saves image to a PNG-file.
    /// </summary>
    /// <param name="arwFilename">The name of ARW-file.</param>
    public void RenderAndSaveArwImage(string arwFilename)
    {
        // set path to the "libraw.dll" file - VintaSoft Imaging .NET SDK uses LibRaw for parsing Sony ARW-file
        Vintasoft.Imaging.RawCodec.LibRawHelper.LibRawPath =
            System.IO.Path.Combine(System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "libraw.dll");
    
        // open ARW-file stream
        using (System.IO.FileStream fs = new System.IO.FileStream(arwFilename, System.IO.FileMode.Open, System.IO.FileAccess.Read))
        {
            // open ARW-file
            Vintasoft.Imaging.Codecs.ImageFiles.Raw.RawImageFile rawImageFile =
                new Vintasoft.Imaging.Codecs.ImageFiles.Raw.RawImageFile(fs);
            // get ARW-page
            Vintasoft.Imaging.Codecs.ImageFiles.Raw.ArwPage arwPage =
                rawImageFile.Page as Vintasoft.Imaging.Codecs.ImageFiles.Raw.ArwPage;
            // if ARW-page is found in RAW-file
            if (arwPage != null)
            {
                // get RAW-image as 48-bpp RGB image
                using (Vintasoft.Imaging.VintasoftImage rawImage = arwPage.GetImage())
                {
                    // save 48-bpp RGB image to a PNG file
                    rawImage.Save(arwFilename + ".png");
                }
            }
        }
    }
    
    

    Иерархия наследования

    System.Object
       Vintasoft.Imaging.Codecs.ImageFiles.ImageFileBlock
          Vintasoft.Imaging.Codecs.ImageFiles.ImagePage
             Vintasoft.Imaging.Codecs.ImageFiles.Raw.RawImagePageBase
                Vintasoft.Imaging.Codecs.ImageFiles.Raw.ArwPage

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также