UIImageまたはUIImageViewでバーコードを生成したい。可能ですか。バーコードの生成にこれを使用しています。
私を助けてください。ありがとう
UIImageまたはUIImageViewでバーコードを生成したい。可能ですか。バーコードの生成にこれを使用しています。
私を助けてください。ありがとう
もう1つのオプションは、UIImageのソースとしてオンラインバーコードジェネレーターのURLを使用することです。例えば:
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)Base64文字列UIImage
に変換します。
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;
}