How to implement Warning Callback for Aspose.Page?

Cannot find interface IWarningCallback in Aspose.Page like it is present for Aspose products like Aspose.Words, Aspose.Sildes, and others.

Is there any way to implement Warning Callback in Aspose.Page?
How to do it?

@aakanksha76

Would you please share some code snippet for our reference to see how you are consuming this method in other Aspose APIs? We will log a ticket in our issue management system to implement this feature and share the ID with you.

@asad.ali

Sure,
here is how we use Warning Callbacks for other Aspose APIs :

public static class WarningCallbackWords implements com.aspose.words.IWarningCallback {
		private ArrayList<String> warningsWords;

		public int Method1() {
			//Method1 body
		}

		public void Method2() {
			//Method2 body
		}

		@Override
		public void warning(final com.aspose.words.WarningInfo info) {
			if (info.getWarningType() == com.aspose.words.WarningType.FONT_SUBSTITUTION) {
				
				if (warningsWords == null) {
					warningsWords = new ArrayList<String>();
				}
				warningsWords.add(info.getDescription());
			}
		}
	}

@aakanksha76

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PAGEJAVA-278

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.