-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open image file on Windows #113
Conversation
[mime, File.binread(obj.path)] if SUPPORTED_MIMES.include?(mime) | ||
else | ||
[mime, File.read(obj.path)] if SUPPORTED_MIMES.include?(mime) | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, probably #binread
is appropriate for binary mime types on all platforms?..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only Windows platform uses #binread
.
if RUBY_PLATFORM =~ /mswin(?!ce)|mingw|cygwin/
55caa5b
to
9192820
Compare
I added mime types check, that apply only 'image/png' and 'image/jpeg' on windows platform. |
OMG! I didn't know the feature for displaying an IO object! I think this feature is evil. We must drop it. |
Yes. It should be so. |
@kojix2 we don't need such a thing just for displaying a file as an image. IRuby.display_file(io.path) instead of just displaying an IO. |
@mrkn I get the point. What about the following example? IRuby.display(file: "foo.png") like ruby-gnome2 require 'gtk3'
GdkPixbuf::Pixbuf.new(file: "logo-32x32.png") It does not mean that I recommend writing that way. |
@kojix2 I want to make a method simple as possible. |
@icm7216 |
In Windows environment IO class has two modes, that is in text mode and binary mode.
Image files must be loaded in binary mode.
Before applying the patch.
Image files are not displayed in the IRuby on Windows.

After applying the patch.
Image file is displayed.
