Completed
Last Updated: 15 Jan 2020 08:46 by ADMIN
Release R1 2020
ADMIN
Peter Milchev
Created on: 07 Aug 2017 08:45
Category: Barcode
Type: Bug Report
2
GetImage method returns null for Type PDF417

		
3 comments
ADMIN
Peter Milchev
Posted on: 15 Jan 2020 08:46

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

Get quickly onboarded and successful with UI for ASP.NET AJAX with the Virtual Classroom technical trainings, available to all active customers. Learn More.
ADMIN
Rumen
Posted on: 31 Oct 2019 09:30

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

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Nikhil
Posted on: 24 Oct 2019 11:01
Is this issue got resolved ?