GithubHelp home page GithubHelp logo

Integration about dds-reader HOT 3 CLOSED

vmv avatar vmv commented on August 19, 2024
Integration

from dds-reader.

Comments (3)

andburn avatar andburn commented on August 19, 2024

I think the following changes should work for you. I can't tell what type buffer is exactly, but I guess its a byte[] so should be fine.

using Imaging.DDSReader; // <--

private void DDSFile(FileRecord selectedRecord)
{
    var buffer = selectedRecord.ReadData(path);
    ImageOutput.Visibility = Visibility.Visible;
    var dds = DDS.LoadImage(buffer); // <--
    using (var ms = new MemoryStream())
    {
        dds.Save(ms, ImageFormat.Png); // <--
        var bmp = new BitmapImage();
        bmp.BeginInit();
        bmp.CacheOption = BitmapCacheOption.OnLoad;
        bmp.StreamSource = ms;
        bmp.EndInit();
        ImageOutput.Source = bmp;
    }
} 

from dds-reader.

vmv avatar vmv commented on August 19, 2024

I get this and other error no matter how i try:....Details: Object reference not set to an instance of an object.
The "buffer" is byte[] yes.

This is the program that i want to integrate it: https://github.com/vmv/VisualGGPK/tree/master/VisualGGPK

Thank you,..

from dds-reader.

andburn avatar andburn commented on August 19, 2024

I'm not sure, it looks like it should work. I don't have PoE to test it out, sorry.

from dds-reader.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.