Displaying 1 result from an estimated 1 matches for "stringoutputstream".
Did you mean:
wxstringoutputstream
2005 May 02
0
Wx::StringInputBuffer/Wx::StringOutputBuffer
Hello, wxruby-users.
This is two files which wrap wxStringInputStream and
wxStringOutputStream for ruby. I need this to implement in-memory
image io. ''stringio.rbw'' -- small sample for it.
Short usage:
stream = Wx::StringInputStream.new image_data
image = Wx::Image.new stream
stream = Wx::StringOutputStream.new
image.save_file stream, ''image/jpeg''
image_...