Socket
Socket
Sign inDemoInstall

docximager

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

docximager

Tool to include images in docx.


Version published
Weekly downloads
29
decreased by-44.23%
Maintainers
1
Weekly downloads
 
Created

Readme

Source

DOCX IMAGER

A simple package with which you can dynamically insert images to your docx.

Getting Started

npm i docximager --save

What can DocxImager do for you ?

With DocxImager, you can either replace a template image in your document, or insert an image dynamically.

What is replacing a template image ?

There are certain cases where you have to insert images to your docx document dynamically. You will need to place the dynamic image with certain formatting in your document to attain perfection. Replacing template image functionality of DocxImager will come in handy at such places.

replace_docx_image

How to replace your images dynamically ?

Just follow these simple steps:

  1. Include the package.

    const DocxImager = require('DocxImager');
    
  2. Create a new Instance of DocxImager.

    let docxImager = new DocxImager();
    
  3. Load your docx file.

    await docxImager.load('./my.docx')
    
  4. Replace your image

    await docxImager.replaceWithImageURL('https://path_of_image.com/image.png', 1, 'png')
    
  5. Save your new document in the specified path.

    await docxImager.save('./my_new_docx.docx');
    

What is inserting image ?

There are certain cases where you will need to just insert an image, and formatting does not exactly matter. Such cases can be handeled with insert image functionality of DocxImager.

insert_docx_image

How to replace your images dynamically ?

Just follow these simple steps:

  1. Include the package.

    const DocxImager = require('DocxImager');
    
  2. Create a new Instance of DocxImager.

    let docxImager = new DocxImager();
    
  3. Load your docx file.

    await docxImager.load('./my.docx')
    
  4. Insert your image

    await docxImager.insertImage({'img1' : "https://path_of_image.com/image.png"})
    
  5. Save your new document in the specified path.

    await docxImager.save('./my_new_docx.docx');
    

Authors

  • Varun Venketeswaran Iyer - Initial work - Varun2604

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Keywords

FAQs

Package last updated on 08 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc