So I am trying to embed a PNG image of canvas to PDF using Prawn gem. Base64 string is generated by using canvas' toDataURL() function. As the image is only needed in PDF I'm trying to avoid saving it on the server. Params[:base64string] is correctly passed to the server.
However, I am trying to use
image = Prawn::Images::PNG.new(base64string)
to create the image but I get NoMethodError: undefined method `unpack' for nil:NilClass.
Any ideas what I'm doing wrong or how this should be done correctly?