iPhone 中的线性条形码生成
我正在寻找一个免费的 API,用于在 iPhone 中生成线性条形码。我找到了一个用于生成条形码的 zxing 库,但它只生成 QR 码。 请推荐一个用于生成线性条形码的库。 谢谢。
I am looking for a free API for generating linear barcodes in iPhone. I had found one zxing library for generating barcodes but it generates only QR code.
Please suggest me a library for generating linear bar codes.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用任何常用的条形码字体即可。谷歌搜索它们,然后像使用其他字体一样使用它们。
Just use any of the commonly-available barcode fonts. Google for them, and use them like any other typeface.
我发现这个项目很容易学习。
https://github.com/netshade/Cocoa-Touch-Barcodes
快速演示
该项目还呈现多种其他条形码类型,只需确保导入满足您特定需求的标头即可。
将 Cocoa-Touch-Barcodes 项目中的文件添加到您的 Xcode 项目中。
在课程中您将使用它来帮助显示条形码
I found this project easy to learn.
https://github.com/netshade/Cocoa-Touch-Barcodes
For a quick demonstration
There are several other barcode types this project renders, just make sure to import the header for your specific need.
Add the files from the Cocoa-Touch-Barcodes project into your Xcode project.
In the class you will use to help display the barcode
可用的IOS 8.0或更高版本
您可以添加此方法并轻松创建线性条形码
并且您可以使用UIImageView返回CIImage,例如;
Avaible IOS 8.0 or Later
You can add this method and create linear barcode easily
And you can use returning CIImage with UIImageView like;