Как удалить пробелы в метках FedEx ZPL? - PullRequest
0 голосов
/ 08 октября 2018

Я использую веб-сервис FedEx в нашем приложении.Метка FedEx получена в ответе веб-сервиса.Этикетки печатаются смещенными вниз. В верхней части этикетки есть пустое место.

        request.RequestedShipment.LabelSpecification = new LabelSpecification();
        request.RequestedShipment.LabelSpecification.ImageType = ShippingDocumentImageType.ZPLII; 
        request.RequestedShipment.LabelSpecification.ImageTypeSpecified = true;
        request.RequestedShipment.LabelSpecification.LabelFormatType = LabelFormatType.COMMON2D;
        request.RequestedShipment.LabelSpecification.LabelStockType = LabelStockType.STOCK_4X6;

Метка Img

Как мне удалить этот пробел?

...