如何使用 Javascript 创建 jpg 图像?
我正在创建一个网络应用程序来根据用户的输入生成图像,更准确地说是一个条形码生成器。我正在使用 javascript 来处理用户输入的数据。最后,我希望输出条形码为 jpg 或 png 格式。我还需要什么其他工具?我知道 javascript 无法为我创建 .jpg 或 .png 文件。还有哪些其他工具可以帮助我生成图像文件?
i'm creating a web application to generate images according to user's input, more precisely a barcode generator. i'm using javascript to process the data input by user. In the end, i want to have my output barcode as an jpg or png. What other tools do i need? I know that javascript cannot create the .jpg or .png file for me. What other tools can help me generate an image file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可以在 HTML5 中使用 Canvas 元素
http://blog.nihilogic.dk/2008 /04/ saving-canvas-data-to-image-file.html
Its possible using Canvas element in HTML5
http://blog.nihilogic.dk/2008/04/saving-canvas-data-to-image-file.html
我不知道有没有免费的脚本,但你可以尝试这个:
http://www.java4less.com/barcodesjavascript/barcodesjavascript.php?info=intro
希望有帮助,
卡尔斯
I dont know i there any free script is out there but you can try this one:
http://www.java4less.com/barcodesjavascript/barcodesjavascript.php?info=intro
Hope its help,
Karls
我使用 PHP GD 和用户提交的图片创建了铺装后用户车道的预览。
它是使用 PHP 完成的,因此您可以将数据 POST 到服务器端的 PHP 脚本并从那里创建图像。
我甚至让用户单击并创建要删除的部分的路径(旧车道),并使用它来剪切车道并用背景层替换它。
您可以使用 Apache 或 IIS 在本地设置 PHP。 PHP 几乎是所有托管服务的标准。
您可以用它构建一个图像编辑器。
https://www.php.net/manual/en/book.image。 php
I have created previews of user driveways after pavement using PHP GD with a picture submitted by the user.
It's done with PHP so you would POST the data to a PHP script on the server side and create the image from there.
I went as far as having the user click and make a path of the section to remove (the old driveway) and use that to cut out the driveway and replace it with a background layer.
You can set up PHP locally with Apache or IIS. PHP is pretty much standard on all hosting services.
You could build an image editor with it.
https://www.php.net/manual/en/book.image.php