我想在一些 UIImage 或 UIImageView 上生成条形码。有可能吗?我正在使用它来生成条形码。
请帮我。谢谢
另一种选择是使用在线条形码生成器的 URL 作为 UIImage 的源。例如:
NSString *barCodeValue = @"0123456789";
NSString *barCodeURL = [NSString stringWithFormat:@"http://www.barcodesinc.com/generator/image.php?code=%@&style=197&type=C128B&width=200&height=100&xres=1&font=3", barCodeValue];
barCodeImage.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:barCodeURL]]];
我不确定,但你可以试一试:
1) 转换UIImage
成Base64 字符串。
2) 现在,您使用此字符串生成条形码。
[barcode setupQRCode:base64String];
希望对你有帮助...
如果在 UIView 之类的组件上生成 BarCode,您可以截取此视图的屏幕截图并从此视图获取图像希望这对您有所帮助
-(UIImage *)getFinalImageAndBarCodeView:(UIView*)view{
////Create a new render context of the UIView size, and set a scale so that the full stage will render to it.
UIGraphicsBeginImageContext(CGSizeMake(view.bounds.size.width, view.bounds.size.height));
CGContextScaleCTM(UIGraphicsGetCurrentContext(),1.0f,1.0f);
//Render the stage to the new context
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
// Get an image from the context
UIImage* viewImage=0;
viewImage=UIGraphicsGetImageFromCurrentImageContext();
// Kill the render context
UIGraphicsEndImageContext();
return viewImage;
}