Creating a web interface to fill out PDF files with JavaScript | Unscripted Coding

Поділитися
Вставка
  • Опубліковано 18 вер 2024
  • In this episode of Unscripted Coding, we check out a few options to fill out PDFs with JavaScript. What does it take to have a Web UI to accept various inputs, then throw them back into a standard, boring PDF file? Watch and find out!
    Unscripted Coding is entirely unscripted and organic. If you're looking for a tutorial, you're in the wrong place! What we do here is try and build something from scratch, filled with all the mistakes and lessons learned along the way!
    Total Time: 1 hour 26 minutes
    GitHub: github.com/Ans...
    Background tracks:
    Junior State - Sage
  • Навчання та стиль

КОМЕНТАРІ • 7

  • @markbean9424
    @markbean9424 9 місяців тому +1

    Do you have a copy of this code online somewhere. I am stepping through this by rewinding and fast forwarding after watching the whole video to take snippets.
    Great video btw!

    • @UnscriptedCoding
      @UnscriptedCoding  9 місяців тому +1

      No problem. Didn't think this was worth uploading, but I just added it to my GitHub: github.com/AnsonLai/PDF-Filler-Demo

  • @SocialAnimal_
    @SocialAnimal_ 5 місяців тому

    great explanation dude. is this possible to add signature to this fillable pdf?

  • @khizershareef5076
    @khizershareef5076 5 місяців тому

    great video 👍🏻. I am curious about one thing tho, lets says if a pdf doesn't have fillable fields, is there an option to tackle situation? also what if the user had to sign? Would appreciate your reply.

    • @UnscriptedCoding
      @UnscriptedCoding  5 місяців тому

      Hey there, both of these get tricky. For non fillable fields, you'll use the same libraries but basically overlay on top of coordinates, not bad, but you'll have to know your PDF very well. For signatures, you'll likely want to use something like DocuSign's python SDK. Haven't ever used it before, but I wouldn't recommend using a library that isn't from a big eSignature provider.

    • @khizershareef5076
      @khizershareef5076 5 місяців тому

      @@UnscriptedCoding Thanks for the reply. I was making a personal project that would allow user to sign stuff and edit like you showed. Are you saying to use a "big eSginature provider" for legal purposes?

    • @UnscriptedCoding
      @UnscriptedCoding  5 місяців тому

      @@khizershareef5076 Ah yes I am. If you want something legally binding that's solid, I'd rather go with DocuSign or Adobe Sign. If it's just a hobby project, then no matter!