vote up 1 vote down star

My code:

require 'rio'
rio('nice.jpg') < rio('http://farm4.static.flickr.com/3134/3160515898_59354c9733.jpg?v=0')

But the image downloaded is currupted. Whtat is wrong with this solution?

flag

74% accept rate

3 Answers

vote up 1 vote down

It works for me. Are you on windows? It might be because the file isn't being opened with the binary flag.

link|flag
Yes, I am on Vista. It looks like 'rio' converted all LF (0x0A) into CRLF (0x0D 0x0A). Also, I noticied it does this in case of simple files: rio('unix.txt') > rio('win.txt'). Are you on Linux? – alex2k8 Feb 21 at 15:40
vote up 1 vote down

pjb3 is correct. You must call binmode on the left-hand term:

rio('nice.jpg').binmode < rio('http://...')

If this still does not work (notably, it may happen for large jpeg files, i.e. rio uses an intermediate temp file when retrieving from the URL you have provided), then apply the binmode modifier to both terms:

rio('nice.jpg').binmode < rio('http://...').binmode
link|flag
I tryed both, but still get equally corruped images. All 0x0A replaced with 0x0D 0x0A. May be a bug? – alex2k8 Feb 21 at 22:30
vote up 0 vote down

I tried above code on WinXP, it did not work either, any suggestion? Thanks

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.