
Open
Posted
•
Ends in 2 hours
Paid on delivery
I create and sell string-art pieces and need my own browser-based generator so I can stop relying on paid tools like Zeta. The goal is a straightforward web app that lets me upload an image (JPEG, PNG or SVG), converts it into a peg-board outline, and then produces a numbered nail-and-string path I can print or save. Core features I must have: • Pattern templates I can tweak for different board sizes • A custom image upload that automatically detects contrast, simplifies colours and lets me adjust nail count and circle radius before generating the path • Automatic material recommendations showing thread length, nail count and colour breakdown based on the chosen pattern A clear, intuitive interface is important because I’ll be using it while I design in the studio on both desktop and tablet browsers. I don’t mind which modern framework or vanilla stack you favour as long as the final code is clean, documented and easy for me to host myself. Deliverables • Responsive web application (HTML, CSS, JS + any framework you choose) • Source code and build instructions in a Git repo or ZIP • Brief user guide covering image prep, parameter controls and exporting the final pattern (PDF/PNG) Acceptance criteria 1. I can open the site locally, load an image, adjust nails and instantly preview the generated string path. 2. The export file prints at the exact scale chosen and lists total thread length, colour suggestions and nail positions. 3. All features work in the latest Chrome, Firefox and Safari without extra plugins. If this sounds like something you can build, please outline your proposed tech stack, estimated timeline and any similar visual-generation projects you have delivered.
Project ID: 40464827
43 proposals
Open for bidding
Remote project
Active 3 days ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
43 freelancers are bidding on average ₹23,814 INR for this job

Your string-art generator will fail if the path-finding algorithm doesn't account for thread overlap - most DIY tools produce patterns that look clean on screen but create muddy results when you actually string them because they don't simulate thread opacity or crossing density. Before I architect the solution, I need clarity on two things: What's your typical nail count range (50 pegs vs 300 makes a huge difference in computation time), and do you need real-time preview as you drag sliders or can the generation happen on a "Calculate" button click? This determines whether I build with WebGL for GPU acceleration or stick with Canvas 2D. Here's the technical approach: - IMAGE PROCESSING: Use Canvas API with edge-detection algorithms (Sobel filter) to extract high-contrast regions, then apply Floyd-Steinberg dithering to convert your photo into a weighted map that the path algorithm can actually follow. - PATH GENERATION: Implement a greedy algorithm that picks the next nail based on maximum darkness coverage along the string line, with a configurable "skip" parameter so threads don't bunch up. I'll add a simulation layer that tracks cumulative thread density to prevent over-darkening. - SVG EXPORT: Generate print-ready SVG files with numbered nail positions, color-coded thread paths and a separate layer for the material cut-list. This scales infinitely without pixelation and works in any browser. - RESPONSIVE UI: Build with vanilla JavaScript and CSS Grid so it runs fast on tablets without framework bloat. All controls update a live parameter object that regenerates the pattern when you hit "Apply" - no lag from reactive re-renders. - MATERIAL CALCULATOR: Track every string segment length in real-time and output total meters needed plus 15% waste factor. Colour breakdown uses k-means clustering on your source image to suggest 2-4 thread colours. I've built similar constraint-based visual generators for a CNC routing company and a laser-cutting studio - both needed pixel-perfect output that matched physical tolerances. The string-art logic is actually simpler than toolpath optimization because you don't have collision detection. I don't take on projects where the math isn't bulletproof. Let's do a 20-minute screen-share where you show me 2-3 of your existing Zeta exports so I can reverse-engineer the exact output format you need and confirm the algorithm will match your current workflow.
₹22,500 INR in 7 days
7.1
7.1

Hello there, we are a team of Full Stack Web and Mobile App Developers and we can do this project in no time. Thanks Ashish Kumar.
₹25,000 INR in 7 days
5.6
5.6

Bresenham line sampling on a 500x500 working resolution with histogram equalization before the greedy pass makes a bigger visual difference than doubling the line count. Getting the preprocessing right is where most open-source generators quietly diverge from each other. Here's how I'd build yours: Canvas API handles image intake, resizes to a fixed working resolution (500px), converts to grayscale, and optionally equalizes the histogram for low-contrast source photos. Pin layout is configurable: count, circular or rectangular boundary, or a custom polygon. The greedy algorithm evaluates each candidate pin, scores it by how much the Bresenham-traced line darkens the residual error image, picks the best, subtracts that line's contribution from the buffer, and moves to the next iteration. All the heavy computation runs in a Web Worker, posting partial line lists back every N steps so the canvas preview updates progressively without blocking the UI thread. SVG export for laser cutters, jsPDF for a printable numbered pin sequence for hand-stringing. Performance target: 4000 lines under 30s on a mid-range laptop. M1: Image preprocessing + pin layout, INR 7000, 1d M2: Greedy algorithm + web worker, INR 7000, 2d M3: Progressive preview + SVG export, INR 7000, 2d M4: PDF instruction sheet + handoff, INR 7000, 1d One thing worth confirming before I start: do you want custom polygon frame shapes in scope for M1, or is circle and rectangle enough for the initial build?
₹28,000 INR in 6 days
4.3
4.3

We can build a fully browser-based string-art generator that converts uploaded images into printable peg-board patterns with adjustable nail density, board sizing, thread paths, material estimation, and export-ready layouts optimized for desktop and tablet workflows.
₹25,000 INR in 7 days
2.0
2.0

Hey, As a proficient full-stack and mobile app developer, I am excited about your web-based string-art generator project! My diverse skills include CSS, JavaScript, as well as Web and Frontend Development that perfectly align with your project requirements. I would propose utilizing the combination of Laravel (PHP) for a solid backend, as well as React for the fascinating frontend experience. Not only will this ensure clean, documented code - important to me too - but also enhance performance across different browsers like Chrome, Firefox, and Safari. My ability to bring ideas to life as evident in my native Android and iOS apps shows my dedication throughout different project aspects; from design through to implementation and integration - a quality you can rely on for this string-art generator. With 10+ local projects completed successfully, I am excited to apply my substantial skills and provide you with a user-friendly and efficient app that meets all your project expectations. Let's chat further! Thanks!
₹37,500 INR in 3 days
0.0
0.0

Hi, String art generation is fundamentally an image-to-vector problem — contrast detection, edge simplification, and path optimisation — and it maps cleanly to a canvas-based web app without any heavy dependencies. I'll build this in vanilla JS + Canvas API so it's lightweight, easy to host yourself, and works identically across Chrome, Firefox, and Safari without plugins. Upload a JPEG, PNG, or SVG, and the app detects contrast, simplifies the colour palette, and lets you tune nail count and circle radius before generating the numbered peg-and-string path in real time. Pattern templates for common board sizes built in, with automatic thread length, nail count, and colour breakdown calculated from the chosen pattern. Export to print-ready PDF or PNG at exact scale. Source code delivered in a clean Git repo with build instructions and a brief user guide covering image prep, parameter controls, and export. Warm regards, Ryan
₹12,500 INR in 4 days
0.0
0.0

Hi — read through. A string-art generator that takes an image, drops nails around a circle and draws the greedy thread path between them is a fun, very visual canvas problem. Plan: React + HTML5 Canvas / SVG on the frontend, image preprocessing (grayscale + contrast normalisation + downscale) done in-browser with OffscreenCanvas so nothing leaves your machine. Core loop runs the standard greedy line-darkening algorithm — from the current nail, find the next nail whose line darkens the residual image the most, subtract, repeat until target line count. Nail count, board radius, thread weight, line cap are all live sliders so the studio preview updates as you tweak. Material output: total thread length (sum of segment lengths × scale), colour breakdown (multi-pass per palette colour), nail-position list — export as PDF (printable peg map) + numbered instruction sheet + PNG preview. Few quick questions — round board only or also rectangular templates, and is monochrome enough for v1 or do you need multi-colour from day one? Ping me to discuss. — Apie Tech
₹22,000 INR in 18 days
0.0
0.0

Hi, I can build your browser-based string-art generator within 6 days with a clean, responsive interface for desktop and tablet browsers. Tech Stack React.js + Vite HTML5 Canvas / SVG Tailwind CSS jsPDF for export Features ✔ Image upload (JPG, PNG, SVG) ✔ Auto contrast & colour simplification ✔ Adjustable nail count, radius & board size ✔ Instant string-path preview ✔ Material estimates (thread length, nail count, colours) ✔ Export to PDF/PNG at exact scale Deliverables Complete source code Setup/build instructions User guide Self-hosted deployment ready I’ll deliver clean, documented, and easy-to-maintain code with full compatibility for Chrome, Firefox, and Safari.
₹25,000 INR in 7 days
0.0
0.0

Hi, how do you currently define your string path logic, purely for visual quality or with material efficiency in mind as well? You need a browser-based string-art generator that does more than convert images, it must intelligently map peg placement, generate optimized string paths, and produce print-ready outputs with accurate material calculations. I’ve built interactive visual web systems where image processing, SVG generation, real-time rendering, and export precision are critical. This project aligns well with my experience in browser-based generation tools, responsive interfaces, and performance-focused frontend engineering. My approach would be to build a dedicated generation engine for image simplification, peg mapping, path calculation, live preview, and scaled export, with material estimation integrated directly into the workflow. The result will be a clean self-hosted tool designed for practical studio use, not a generic image converter. Please share your preferred board logic or sample outputs so we can define the generation rules in the next step. Best regards
₹18,000 INR in 7 days
0.0
0.0

I’ll create a stunning custom string-art generator with live previews, smart exports & easy controls that too with minimum wages and in 2 days delivery period.
₹12,500 INR in 2 days
0.0
0.0

Hi, your project is very interesting because it combines image processing, procedural graphics, and interactive web tooling rather than just standard frontend development. I would build this as a browser-based application using React + TypeScript with Canvas/WebGL rendering for smooth previews on desktop and tablet devices. The system would support JPEG, PNG, and SVG uploads, then process the image through a custom pipeline for contrast detection, grayscale/color simplification, peg placement, and optimized string-path generation. Instead of using simple overlay filters, I’d implement an iterative path-generation approach that progressively builds realistic thread density and tonal detail. Users will be able to adjust nail count, board radius, pattern templates, and generation parameters while seeing live updates instantly. The application will also generate export-ready PDF/PNG files containing: * nail positions * numbered string sequence * estimated thread length * nail/material counts * color breakdown suggestions The app will be fully responsive, self-hostable, and compatible with Chrome, Firefox, and Safari without plugins. Estimated timeline: • MVP with live generation/export: 2–3 weeks • Full polished version with advanced rendering/tools: ~4 weeks I will provide clean documented source code, setup instructions, and a short user guide for image preparation and exporting workflows.
₹35,000 INR in 15 days
0.0
0.0

I am capable of developing a sophisticated string-art generator, delivered as a clean and responsive web application. This application will incorporate features such as image upload, SVG/PNG processing, automated nail-path generation, real-time preview, and comprehensive export capabilities. My expertise encompasses JavaScript, HTML/CSS, SVG rendering, and image-processing logic, enabling me to construct a lightweight solution devoid of proprietary dependencies. My proposed development approach involves leveraging a contemporary technology stack, such as React with Canvas/SVG APIs, or alternatively, vanilla JavaScript, to guarantee optimal performance across desktop and tablet browsers. The application will feature adjustable parameters including nail count, radius, contrast/color simplification, and material estimation, precisely aligning with specified requirements. I commit to providing meticulously documented code, clear setup instructions, and a comprehensive user guide. Furthermore, I will furnish regular progress updates and ensure delivery within the stipulated timeframe.
₹25,000 INR in 7 days
0.0
0.0

Hi, I can build exactly this — browser-based image processing and canvas tools are a regular part of my work. What I'll deliver: - Vanilla JS + HTML5 Canvas (no framework, easy to self-host) - Image upload → auto contrast detection → colour simplification with adjustable sensitivity - Peg-board path generator: nail count, circle radius, board size templates - Live preview that updates as you tweak parameters - Material estimator: thread length, nail count, colour breakdown - PDF/PNG export at exact print scale with numbered nail positions - Fully responsive — desktop + tablet, Chrome/Firefox/Safari - No server, no database — just open the HTML file and go Timeline: 10–12 days Milestones: 50% on working preview approval, 50% on final delivery + user guide I'm India-based (your timezone), so turnaround on questions is fast. Happy to do a quick chat before we start to confirm your board sizes and workflow. Nitin
₹25,000 INR in 12 days
0.0
0.0

Hello, I’m interested in building your browser-based string art generator web application. I understand the project requires: - Image upload support (JPG, PNG, SVG) - Peg-board and nail path generation - Adjustable parameters like nail count, radius, contrast, and board size - Live preview rendering - Material estimation (thread length, nail count, colour breakdown) - Export to PNG/PDF with accurate scaling I plan to build the project using a modern frontend stack such as React + TypeScript with responsive UI support for both desktop and tablet browsers. For the MVP, I will focus on: - Circular board generation - Real-time preview - String path generation - Export functionality - Clean and maintainable code structure The application will be self-hosted and compatible with Chrome, Firefox, and Safari without additional plugins. I communicate regularly during development and can provide progress updates, screenshots, and testing builds throughout the project. Looking forward to discussing the details further. Thank you.
₹15,000 INR in 14 days
0.0
0.0

Hi I’m very glad to see this project and interested to work with you, it matches to my skills and experiences, I’ve worked on many similar projects previously and have good working experience in this field, I’m sure, I can provide you the best outcome, Please let me know more about the project and let’s discuss further on Call or WhatsApp : (+91) 94543-89834 Thanking you.
₹15,000 INR in 10 days
0.0
0.0

Hello, I have thoroughly reviewed and understood the requirements document for your string-art generator web app. I am an experienced frontend developer and possess expertise in building image processing tools of this nature. My proposed tech stack will be as follows: React.js for the frontend; core skills comprising HTML5, CSS3, and JavaScript; the HTML5 Canvas API or SVG for image processing and path generation; and PDF/PNG generation for the export feature. I will deliver this entire project in a fully functional state within 5 days—exactly as per your specifications—including local testing and clean code. This app will function smoothly across Chrome, Firefox, and Safari without the need for any external plugins. I look forward to working with you and delivering an exceptional tool. Thank you!
₹23,000 INR in 5 days
0.0
0.0

Hello, I can build a browser-based string art generator tailored to your workflow so you can stop relying on paid tools like Zeta. I will develop a responsive web application using modern web technologies (React or lightweight JavaScript based on your preference) with HTML5 Canvas/SVG rendering for precise peg-board visualization and string path generation. The app will support JPEG, PNG, and SVG uploads, automatically detect contrast, simplify colours, and allow you to adjust nail count, circle radius, board size, and pattern templates with an instant preview of the generated string path. I will also implement automatic material recommendations, including thread length, nail count, and colour breakdown, along with export options (PDF/PNG) that print at the exact chosen scale and include nail positions and pattern details. The interface will be clean, intuitive, and optimized for desktop and tablet browsers while ensuring compatibility with Chrome, Firefox, and Safari. You will receive clean, documented source code, setup/build instructions, and a brief user guide. Estimated delivery timeline: 8–12 days.
₹25,000 INR in 7 days
0.0
0.0

Hello, I am a Frontend and Web Developer passionate about creating clean and responsive websites. I am currently improving my skills in web development and AI/ML and would love to work on this project. I can help you with: Responsive website development Clean and modern UI Frontend development using HTML, CSS, JavaScript, and React Fast communication and regular updates I am dedicated, hardworking, and ready to start immediately. I will do my best to deliver quality work within the given timeline. Looking forward to working with you. Thank you.
₹18,000 INR in 7 days
0.0
0.0

Hello! I can build this responsive string art web app with live preview, export support, accurate scaling, nail positioning, and full Chrome/Firefox/Safari compatibility
₹25,000 INR in 7 days
0.0
0.0

As a seasoned full-stack web developer, I possess the skills necessary to create your ideal Custom Web String Art Generator. I have extensive experience building robust, user-friendly interfaces on both the frontend and the backend, making me an ideal candidate for this task. Working with tools like React, Node.js, and Express, I can provide you with a reliable application that is easy to navigate and works seamlessly across all browsers. I understand the importance of clean, well-documented code, especially when it comes to projects that other developers will need to maintain or modify in the future. My proficiency in Git ensures streamlined version control and my knack for writing thorough documentation will aid you in hosting the project independently. In terms of problem-solving, I am a patient and tenacious coder who leaves no stone unturned when debugging or crafting new solutions. I envision delivering a flawless web app that empowers you to create beautiful string art pieces effortlessly - from uploading customized images to adjusting nails counts and circle radii - everything tailored to your preferences. Allow me to leverage my expertise and give your creativity wings!
₹25,000 INR in 7 days
0.0
0.0

Coimbatore, India
Member since May 24, 2026
£18-36 GBP / hour
$30-250 USD
$250-750 USD
$10-100 USD
€75-100 EUR
$250-750 USD
$30-250 AUD
₹750-1250 INR / hour
₹750-1250 INR / hour
₹12500-37500 INR
₹600-1500 INR
$10-30 CAD
₹1500-12500 INR
$250-750 USD
$30-250 AUD
$15-25 USD / hour
£20-250 GBP
₹1500-12500 INR
$1500-3000 USD
£250-750 GBP