Pdf viewer based on pdfium viewer in c# .net

Sdílet
Vložit
  • čas přidán 22. 04. 2019
  • This video describes how to open pdf file in c# winform application using pdfium viewer.
    github.com/pvginkel/PdfiumViewer

Komentáře • 25

  • @jedzernaofficial3942
    @jedzernaofficial3942 Před 2 měsíci +1

    Thank you so much. Still works in 2024.

  • @YabinyaStudio
    @YabinyaStudio Před 12 dny

    Thanksss... still works

  • @mynameisjeff9124
    @mynameisjeff9124 Před 3 lety

    The only things missing is the notepad editor and some NCS music and we have those old school tutorials back

  • @abhiksingh1999
    @abhiksingh1999 Před 2 lety

    What event handler this pdf viewer support? Does this support the text selection?

  • @gennadysmirnov5362
    @gennadysmirnov5362 Před 3 lety

    How do I clear the pdfviewer from the previous document so that the viewer window is blank? thanks in advance

  • @ivormusiiwa4793
    @ivormusiiwa4793 Před 3 lety +1

    i have an issue. when i try to run and open a pdf file it says ("System.DllNotFoundException" 'unable to load DLL' pdfium.dll' The SPecified module could not be found.)

  • @Ratchetrene
    @Ratchetrene Před 5 lety +1

    preferably in WPF

  • @sandeepbhandari2069
    @sandeepbhandari2069 Před rokem

    Can you please make a video on how to do in wpf?

  • @itekconyit
    @itekconyit Před 2 lety

    I have a pdf that he can't read, it's a contract I have another 100 pdfs that are contracts and he reads normally, do you think it's a shit contract?
    Working

    • @NitinKumar-kd9wg
      @NitinKumar-kd9wg  Před 2 lety

      Try to compress the pdf that is not working using any online pdf editor and then try to open the the compressed pdf... Kind of a hack though...

  • @gilbertcortez6081
    @gilbertcortez6081 Před 2 lety

    Wow, Thank you for this sir. Is it also possible to make the objects inside the PDF editable? I created text objects inside the pdf but every time I load it using PDfium PDFViewer the pdf becomes read-only inside the app. Is it possible I can also edit the PDF inside the system?

    • @NitinKumar-kd9wg
      @NitinKumar-kd9wg  Před 2 lety

      That is not possible within pdfium... There are no known free resources which can facilitate this feature to make pdf editable... You will have to go with commercial sdk for this....

  • @Prabhu13
    @Prabhu13 Před 3 lety

    And another thing, let me know how to compare two PDF file using pdfium software

  • @anshulshrivastava5827
    @anshulshrivastava5827 Před 3 lety

    How to find password of pdfium protected pdf?

  • @Prabhu13
    @Prabhu13 Před 3 lety

    Do you know how to open PDF file by giving path by user

    • @NitinKumar-kd9wg
      @NitinKumar-kd9wg  Před 3 lety

      pdfviewer = new PdfViewer();
      this.Controls.Add(pdfviewer);
      pdfViewer1.Renderer.DisplayRectangleChanged += Renderer_DisplayRectangleChanged;
      pdfViewer1.Renderer.CursorMode = PdfViewerCursorMode.TextSelection;
      pdfViewer1.ShowBookmarks = false;
      pdfViewer1.Document = PdfiumViewer.PdfDocument.Load(this, file_name);

  • @Ratchetrene
    @Ratchetrene Před 5 lety

    Can you do more of these?

  • @gennadysmirnov5362
    @gennadysmirnov5362 Před 3 lety

    How do I clear the pdfviewer from the previous document so that the viewer window is blank? thanks in advance