OliverH

Signing Page Logo

0 votes
We have different signing scenarios where we want to use different Signing Page Logos. How do I do that with Java SDK? Thanks

Reply to: Signing Page Logo

1 votes
Hey Oliver, You can use below Java Code setting Signing Ceremony logos, it's a package level setting so that you can have different logos for each package:
		DocumentPackage pkg1 = PackageBuilder.newPackageNamed("Example Package " + System.currentTimeMillis())
		        .withSigner(SignerBuilder.newSignerWithEmail("[email protected]" )
		               ......
		                )
		        .withDocument(DocumentBuilder.newDocumentWithName("document 1")
		        		......
		        		)
		        .withSettings(DocumentPackageSettingsBuilder.newDocumentPackageSettings()
                        .withCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.newCeremonyLayoutSettings()
                                .withLogoSource("https://sandbox.esignlive.com/a/images/logo.svg")))
		        .build();
To note: 1. You can either store the pictures at OneSpan Sign side (by contacting our support team at [email protected]) or you can use a public resource. 2.If you want to remove the logo, you can use empty string in the code: .withLogoSource(""))) Hope this could help! Duo

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off