Barcode does not print in crystal report

I submit the report programmatically in PDF. One of the text fields should display the barcode font, and nothing is actually displayed. How can i fix this? I use IDAutomationHC39Mto convert a string to a barcode type.

Any other solution for this?

+4
source share
1 answer

Here is a solution that works for me. I went with a jmp-based bmp generator (image generator). It is very easy to implement, and it works very well.

You can download it from here.

Just include in your title, for example:

<script type="text/javascript" 
src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js">
</script>    
<script type="text/javascript" src="js/jquery.barcode.0.3.js">
</script>

div, -, , , "barcodecls".

<span class="barcodecls">405479</span>

<span class="barcodecls">405339</span>

<span class="barcodecls">405341</span>

script :

<script> 
       $('.barcodecls').barcode({code:'code39'}); 
</script>
0

Source: https://habr.com/ru/post/1537355/


All Articles