Skip to content

the road of implemeting from_blob method

Junichi Kajiwara edited this page Jul 27, 2016 · 6 revisions

Current status

Motivation

I want to save png from ppm which is generated by Ao benchmarks

like this:

ppmImage = Ao.render
pngImage = Mrmagick::ImageList.new()
pngImage.from_blob(ppmImage)

Some Points about implementing

  • rate biding implementation
  • memory leaking
  • blob's hit
  • size,formats,etc.

Link