Can we increase the font size in shippo generated label (Shippo label api)? - shippo

I want to edit the text size using api on shippo generated label. Is there any way to increase the text size or make text bold?
I'm specifically looking at the Shipment, Transaction Create API call. (Shippo Api Reference)

The label image data returned by Shippo come back from the carrier APIs themselves. You could do is modify the ZPL returned to change the font, but you really shouldn't be changing the carrier-approved labeling. https://www.zebra.com/us/en/support-downloads/knowledge-articles/zpl-command-information-and-details.html

Related

How to get text size or resize the widget according to the text size?

I am creating widgets in runtime and then change texts in them by using setText. The problem is the Size Box which contains the text doesn't update as "Size to Content" after i changed the text. is it possible to update this so it can resize according to the text?
I tried to get string size with getTextSize blueprint node, but it only works at drawHud event and hard to use outside of HUD blueprint (which i believe is almost obsolute after UMG?)
Any solution in blueprint or C++ is appreciated.

Is there a more customizable way to create embedded hyperlinks?

I'm trying to create a generalized function/class that builds embedded hyperlinks. I am using an NSAttributedString with NSAttributedString.Key.link attribute and assigning a URL to the specified range. I can even specify multiple links within the body of text, with specific styles for the text. However the only caveat that I am seeing is that the highlighted state of the links have a grey background color. Is there a way to get rid of this background color, and on top of that assign a specified highlight state color for the link?
I am open to other means of creating the text and links, but I feel like NSAttributedString is the right means.
Again:
the body of text should be able to handle any number of links
each link can contain any number of words
the highlighted state shouldn't have a background color of grey, and be able to accept a specified color for a highlight state
the text should be able to wrap if needed

Change Length of PDF form AcroField using iText

I am filling pdf template using iText api. I am not able proper text in one textfield.
It has boxes like this image.I have to fill one character in each box. When I am trying to set value it taking whole value in initial 3 box only.
Can anybody guide me how can I achieve this ?

How to change the coordinates of Signature in CoSign Signature SOAP API and place it over some given text (i.e. Sign Here)?

My pdf file will have an area with the text "Sign here". It could be anywhere in the pdf(i.e. the coordinates for that area is not defined) . I would like to add the signature over that given area or text(eg "Sign Here") in my pdf file. In the given code http://developer.arx.com/quick-start/sapi-web-services/#t-helloworld , how can I achieve this?
You need to know which page, and where on the page, the graphical part of the digital signature should be placed.
One way to determine the location dynamically is to add a "Signature Field Locator." In the original PDF you include a special Field Locator text string such as <<<w=100;h=120;n=employee;a=1;>>>
You set the Field Locator text color to be the same as the page's background color so it won't show when the pdf is viewed.
CoSign Signature Local includes methods for locating and using Field Locators to set the position of a graphical signature. See the example program.

devexpress aspxgridview - setting label with page number

I am using devexpress aspxgridview in asp.net 3.5 web application.
on pageload, I have a label control on top of the page whose text for example is "abc".
I am trying to set the value of the label with the page number selected by the user from the grid using onpageindexchanged event.
But the label values is not changing. it is still showing the old value "abc". what may be the problem?
To change other controls during the PageIndexChanged event, you might need to disable callbacks (see the ASPxGridView.EnableCallBacks property) and place both the text box and grid control onto the UpdatePanel.
Alternatively, you can do it on the client-side with javascript if you want to keep callbacks enabled. There's a sample project attached here:
http://www.devexpress.com/Support/Center/p/Q201214.aspx