Any suggestions for loading an Image from a file dialog?












0















I'm building GUI for my app and I'm trying to load an image from file dialog.
Does somebody has any suggestions? This is my first Kivy application and sometimes I can't fully understand the documentation. I've tried multiple ways and the best result I got was an image at the bottom left of the screen.



I've tried the solution from Placing an image in the middle of the label in Kivy, but that didn't solve my problem.



Part of my .kv file:



<RunDemoScreen>:
GridLayout:
rows: 3
cols: 2
Button:
text:"Test"


Button:
text:"File"
on_press: root.file_dialog()

Button:
text: 'Back'
on_release: root.manager.current = 'menu'


Part of my python code:



class RunDemoScreen(Screen):

def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
print(self.filename)


Everything in this code works fine.










share|improve this question























  • Have you tried using an Image widget?

    – John Anderson
    Jan 2 at 23:26











  • @JohnAnderson Yes, I tried and it works but only when I use pos. With pos_hint it doesn't.

    – M. Momchilov
    Jan 4 at 21:04
















0















I'm building GUI for my app and I'm trying to load an image from file dialog.
Does somebody has any suggestions? This is my first Kivy application and sometimes I can't fully understand the documentation. I've tried multiple ways and the best result I got was an image at the bottom left of the screen.



I've tried the solution from Placing an image in the middle of the label in Kivy, but that didn't solve my problem.



Part of my .kv file:



<RunDemoScreen>:
GridLayout:
rows: 3
cols: 2
Button:
text:"Test"


Button:
text:"File"
on_press: root.file_dialog()

Button:
text: 'Back'
on_release: root.manager.current = 'menu'


Part of my python code:



class RunDemoScreen(Screen):

def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
print(self.filename)


Everything in this code works fine.










share|improve this question























  • Have you tried using an Image widget?

    – John Anderson
    Jan 2 at 23:26











  • @JohnAnderson Yes, I tried and it works but only when I use pos. With pos_hint it doesn't.

    – M. Momchilov
    Jan 4 at 21:04














0












0








0








I'm building GUI for my app and I'm trying to load an image from file dialog.
Does somebody has any suggestions? This is my first Kivy application and sometimes I can't fully understand the documentation. I've tried multiple ways and the best result I got was an image at the bottom left of the screen.



I've tried the solution from Placing an image in the middle of the label in Kivy, but that didn't solve my problem.



Part of my .kv file:



<RunDemoScreen>:
GridLayout:
rows: 3
cols: 2
Button:
text:"Test"


Button:
text:"File"
on_press: root.file_dialog()

Button:
text: 'Back'
on_release: root.manager.current = 'menu'


Part of my python code:



class RunDemoScreen(Screen):

def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
print(self.filename)


Everything in this code works fine.










share|improve this question














I'm building GUI for my app and I'm trying to load an image from file dialog.
Does somebody has any suggestions? This is my first Kivy application and sometimes I can't fully understand the documentation. I've tried multiple ways and the best result I got was an image at the bottom left of the screen.



I've tried the solution from Placing an image in the middle of the label in Kivy, but that didn't solve my problem.



Part of my .kv file:



<RunDemoScreen>:
GridLayout:
rows: 3
cols: 2
Button:
text:"Test"


Button:
text:"File"
on_press: root.file_dialog()

Button:
text: 'Back'
on_release: root.manager.current = 'menu'


Part of my python code:



class RunDemoScreen(Screen):

def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
print(self.filename)


Everything in this code works fine.







python kivy kivy-language






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 2 at 20:45









M. MomchilovM. Momchilov

62




62













  • Have you tried using an Image widget?

    – John Anderson
    Jan 2 at 23:26











  • @JohnAnderson Yes, I tried and it works but only when I use pos. With pos_hint it doesn't.

    – M. Momchilov
    Jan 4 at 21:04



















  • Have you tried using an Image widget?

    – John Anderson
    Jan 2 at 23:26











  • @JohnAnderson Yes, I tried and it works but only when I use pos. With pos_hint it doesn't.

    – M. Momchilov
    Jan 4 at 21:04

















Have you tried using an Image widget?

– John Anderson
Jan 2 at 23:26





Have you tried using an Image widget?

– John Anderson
Jan 2 at 23:26













@JohnAnderson Yes, I tried and it works but only when I use pos. With pos_hint it doesn't.

– M. Momchilov
Jan 4 at 21:04





@JohnAnderson Yes, I tried and it works but only when I use pos. With pos_hint it doesn't.

– M. Momchilov
Jan 4 at 21:04












1 Answer
1






active

oldest

votes


















0














You'd need to create an Image widget and then change the source of the image to your self.filename variable using the id you'd assign to it



in your .kv:



Image:
id: imageWidget
source: ''
opacity: 0 # to make it completely invisible till your add a source file


in your .py:



def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
imageWid = self.ids['imageWidget']
imageWid.source = self.filename
imageWid.opacity= 1 # to make it visible





share|improve this answer


























  • I hope you find this helpful. If you do, vote the answer and accept it by clicking on the Check sign.

    – Thope
    Jan 3 at 20:51













  • Thank you, @eyllanes! This solved my problem, I accepted the answer, but couldn't vote, because I don't have enought reputation.

    – M. Momchilov
    Jan 4 at 21:12













  • @M.Momchilov I have not answered your question, I have only edited the question :-)

    – eyllanesc
    Jan 4 at 21:13












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54012936%2fany-suggestions-for-loading-an-image-from-a-file-dialog%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














You'd need to create an Image widget and then change the source of the image to your self.filename variable using the id you'd assign to it



in your .kv:



Image:
id: imageWidget
source: ''
opacity: 0 # to make it completely invisible till your add a source file


in your .py:



def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
imageWid = self.ids['imageWidget']
imageWid.source = self.filename
imageWid.opacity= 1 # to make it visible





share|improve this answer


























  • I hope you find this helpful. If you do, vote the answer and accept it by clicking on the Check sign.

    – Thope
    Jan 3 at 20:51













  • Thank you, @eyllanes! This solved my problem, I accepted the answer, but couldn't vote, because I don't have enought reputation.

    – M. Momchilov
    Jan 4 at 21:12













  • @M.Momchilov I have not answered your question, I have only edited the question :-)

    – eyllanesc
    Jan 4 at 21:13
















0














You'd need to create an Image widget and then change the source of the image to your self.filename variable using the id you'd assign to it



in your .kv:



Image:
id: imageWidget
source: ''
opacity: 0 # to make it completely invisible till your add a source file


in your .py:



def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
imageWid = self.ids['imageWidget']
imageWid.source = self.filename
imageWid.opacity= 1 # to make it visible





share|improve this answer


























  • I hope you find this helpful. If you do, vote the answer and accept it by clicking on the Check sign.

    – Thope
    Jan 3 at 20:51













  • Thank you, @eyllanes! This solved my problem, I accepted the answer, but couldn't vote, because I don't have enought reputation.

    – M. Momchilov
    Jan 4 at 21:12













  • @M.Momchilov I have not answered your question, I have only edited the question :-)

    – eyllanesc
    Jan 4 at 21:13














0












0








0







You'd need to create an Image widget and then change the source of the image to your self.filename variable using the id you'd assign to it



in your .kv:



Image:
id: imageWidget
source: ''
opacity: 0 # to make it completely invisible till your add a source file


in your .py:



def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
imageWid = self.ids['imageWidget']
imageWid.source = self.filename
imageWid.opacity= 1 # to make it visible





share|improve this answer















You'd need to create an Image widget and then change the source of the image to your self.filename variable using the id you'd assign to it



in your .kv:



Image:
id: imageWidget
source: ''
opacity: 0 # to make it completely invisible till your add a source file


in your .py:



def file_dialog(self):
Tk().withdraw()
self.filename = askopenfilename()
imageWid = self.ids['imageWidget']
imageWid.source = self.filename
imageWid.opacity= 1 # to make it visible






share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 3 at 21:09









eyllanesc

85.5k103564




85.5k103564










answered Jan 3 at 20:48









ThopeThope

1158




1158













  • I hope you find this helpful. If you do, vote the answer and accept it by clicking on the Check sign.

    – Thope
    Jan 3 at 20:51













  • Thank you, @eyllanes! This solved my problem, I accepted the answer, but couldn't vote, because I don't have enought reputation.

    – M. Momchilov
    Jan 4 at 21:12













  • @M.Momchilov I have not answered your question, I have only edited the question :-)

    – eyllanesc
    Jan 4 at 21:13



















  • I hope you find this helpful. If you do, vote the answer and accept it by clicking on the Check sign.

    – Thope
    Jan 3 at 20:51













  • Thank you, @eyllanes! This solved my problem, I accepted the answer, but couldn't vote, because I don't have enought reputation.

    – M. Momchilov
    Jan 4 at 21:12













  • @M.Momchilov I have not answered your question, I have only edited the question :-)

    – eyllanesc
    Jan 4 at 21:13

















I hope you find this helpful. If you do, vote the answer and accept it by clicking on the Check sign.

– Thope
Jan 3 at 20:51







I hope you find this helpful. If you do, vote the answer and accept it by clicking on the Check sign.

– Thope
Jan 3 at 20:51















Thank you, @eyllanes! This solved my problem, I accepted the answer, but couldn't vote, because I don't have enought reputation.

– M. Momchilov
Jan 4 at 21:12







Thank you, @eyllanes! This solved my problem, I accepted the answer, but couldn't vote, because I don't have enought reputation.

– M. Momchilov
Jan 4 at 21:12















@M.Momchilov I have not answered your question, I have only edited the question :-)

– eyllanesc
Jan 4 at 21:13





@M.Momchilov I have not answered your question, I have only edited the question :-)

– eyllanesc
Jan 4 at 21:13




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54012936%2fany-suggestions-for-loading-an-image-from-a-file-dialog%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter