GithubHelp home page GithubHelp logo

Comments (4)

wiz0u avatar wiz0u commented on June 8, 2024 1

What's your level in C#?
It's trivial to change the download example from FileStream to MemoryStream
The library is not recommended for beginners.

from wtelegramclient.

heinsenberg82 avatar heinsenberg82 commented on June 8, 2024

How to put the picture wrapped inside a MessageMediaPhoto into a MemoryStream? I've tried to use the file_reference property (the only one that is a byte array), then instantiating a new MemoryStream with it, but I'm not getting the picture after processing the memory stream.

I have some code that is partially working:

case MessageMediaPhoto { photo: Photo photo }:
{
    var file = await _client.Upload_GetFile(photo.ToFileLocation(), limit: _client!.FilePartSize) as Upload_File;
    var fileType = file?.type.ToString();
                
    using var stream = new MemoryStream(file!.bytes);
                
    // ...do something with stream
}

However, in some cases, this only gets part of the file, especially if I'm dealing with MessageMediaDocument instead. Upon inspecting the library code, I noticed that the method DownloadFileAsync creates multiple clients for downloading the parts of the file. I've attempted to create a helper method to replicate this behavior with a Stream output, but it's challenging since I don't have access to Client private fields such as _dcSession.

I believe this would be a valuable feature to have, as it allows users to handle files without always having to download them directly, providing the flexibility to manipulate the data in-memory before taking further actions.

from wtelegramclient.

wiz0u avatar wiz0u commented on June 8, 2024

Please read the documentation before asking question.

The answer to your problem is likely already in there

from wtelegramclient.

heinsenberg82 avatar heinsenberg82 commented on June 8, 2024

It's not. I have thoroughly reviewed all the sections in the Readme, including the examples. Still didn't find a way to accomplish the task that prompted my initial question.

Please read the documentation before asking question.

The answer to your problem is likely already in there

from wtelegramclient.

Related Issues (20)

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.