Hi,
ImagePrintJob doesn't seem to be printing my bitmap. I can set the bitmap to my UI so it appears correct, but then when I try to print it as follows it just prints a black rectangle.
PrintJob printJob = new ImagePrintJob.Builder().bitmap(b).build(); printJob.print(mContext, account);
What am I missing?
Thanks!