Skip to content
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

Closed
wants to merge 2 commits into from

Conversation

icm7216
Copy link

@icm7216 icm7216 commented Jan 11, 2017

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.
iruby_before

After applying the patch.

Image file is displayed.
iruby_after

[mime, File.binread(obj.path)] if SUPPORTED_MIMES.include?(mime)
else
[mime, File.read(obj.path)] if SUPPORTED_MIMES.include?(mime)
end
Copy link

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?..

Copy link
Author

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/

@icm7216 icm7216 force-pushed the open-image-file-Win branch from 55caa5b to 9192820 Compare January 24, 2017 23:43
@icm7216
Copy link
Author

icm7216 commented Jan 24, 2017

I added mime types check, that apply only 'image/png' and 'image/jpeg' on windows platform.

@kojix2
Copy link
Member

kojix2 commented May 27, 2019

Thank you @icm7216
I agree with this change.
What do you think? @mrkn

@mrkn
Copy link
Contributor

mrkn commented May 27, 2019

OMG! I didn't know the feature for displaying an IO object!

I think this feature is evil. We must drop it.
And we should provide the alternative feature to displaying the content of a file as an image.

@kojix2
Copy link
Member

kojix2 commented May 27, 2019

Yes. It should be so.
But, you know It is hard to create and maintain image classes for Ruby.
https://github.com/mrkn/IMF

@mrkn
Copy link
Contributor

mrkn commented May 27, 2019

@kojix2 we don't need such a thing just for displaying a file as an image.
It can be done by providing a new method that takes a path of the file, reads the contents, and calls IRuby.display with an appropriate mime type.
If such a method is provided as IRuby.display_file, we can do:

IRuby.display_file(io.path)

instead of just displaying an IO.

@kojix2
Copy link
Member

kojix2 commented May 27, 2019

@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.
I just want to hear your opinion about other possibilities.

@mrkn
Copy link
Contributor

mrkn commented May 27, 2019

@kojix2 I want to make a method simple as possible.

@kojix2
Copy link
Member

kojix2 commented May 27, 2019

@icm7216
Thank you very much for the great pull request.
This allowed us to find problems with IRuby

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants