Hello,
The fix for the issue is included in R1 2020, which you can download now from "your account" page:
Regards,
Peter Milchev
Progress Telerik
Hi Nikhil,
I am afraid that the problem is still not fixed, but you can use RadClientExportManager to export the RadBarcode type PDF417 to an image as shown below:
<telerik:RadBarcode runat="server" ID="RadBarcode1"
Text="Place some text here"
OutputType="EmbeddedPNG"
Type="PDF417"
LineWidth="2"
Height="50px">
<PDF417Settings AspectRatio="5" EncodingMode="Text" ErrorCorrectionLevel="0" />
</telerik:RadBarcode>
<telerik:RadClientExportManager runat="server" ID="RadClientExportManager1">
<PdfSettings FileName="Myfile.pdf" />
</telerik:RadClientExportManager>
<input type="button" onclick="exportElement()" value="export" />
<script type="text/javascript">
function exportElement() {
var exp = $find("<%= RadClientExportManager1.ClientID %>");
exp.exportImage($telerik.$("#RadBarcode1"));
}
</script>
If you need to save the exported png file on the server, you can see how to do that at Save Exported Files.
Best Regards,
Rumen
Progress Telerik