Photo360 is a Node.js package developed by Faris Ali for interacting with the ePhoto360 API. It enables developers to easily generate custom image effects, like handwritten text on foggy glass, directly from their applications. 🚀
Install the package using npm:
npm install ephoto-api-faris
const Photo360 = require('ephoto-api-faris');
(async (name) => {
const photo360 = new Photo360("https://en.ephoto360.com/handwritten-text-on-foggy-glass-online-680.html");
photo360.setName(name);
const imgUrl = await photo360.execute();
console.log(`Image URL: ${imgUrl.imageUrl}`);
})("Faris Ali");
- 🛠 Require the package: Import the
Photo360
class from the package. - 🌐 Initialize the API: Provide the ePhoto360 URL of the desired effect.
- ✍️ Set the name: Use the
setName
method to define the custom text or name. - 🌟 Generate the image: Call the
execute
method to get the image URL.
- URL: Provide the effect's URL from the ePhoto360 website.
- Name: The text or name to be displayed in the image effect.
- The package returns an object containing the image URL:
{
imageUrl: "<generated-image-url>"
}
- Easy integration with the ePhoto360 API.
- Supports dynamic text for creative image effects.
- Simple and intuitive API for developers.
If you find this package helpful, please consider giving it a ⭐ on GitHub!
Developed by Faris Ali.
For feedback and support, please reach out via the GitHub repository.
This package is licensed under the MIT License. Feel free to use, modify, and distribute it.
The core logic of the Photo360 package is encrypted to ensure security and integrity. While direct contributions to the core code are not possible, you are welcome to contribute in the following ways:
- 💡 Feature Suggestions: Propose new features or enhancements by creating an issue on the GitHub repository.
- 🖋️ Documentation Improvements: Help improve or extend the documentation for better usability.
- 🐛 Bug Reporting: If you encounter issues, please report them with detailed steps to reproduce the problem.
- 🎨 Ideas for New Effects: Suggest new image effects or use cases for future development.
Thank you for supporting the project! 💖