I inserted image on stackoverflow to ask some questions
When I click post button,the error happens as following
"You need at least 10 reputation to post images"
It would be very thankful ,if you let me know the way how to fix this problem
Very Thank you
If you answer questions here, or ask really well thought out good questions, you'll get points and your reputation will increase.
And answering just one question with a good answer will get you your 10 points.
And then you'll be able to post images in your questions. Remember, you should also contribute answers and help to your fellow participants here, don't just ask questions.
Here's the "how to ask questions" FAQ.
Even without the reputation needed for posting images here, you can upload the image somewhere else, post your question here and put the link to your screenshot in the question.
#user2948579
(answering the Title of the post)
You can use std. HTML like this
img src="http://example.com/sample.png" width="100" height="100"
I don't know how you would upload the image directly to stackoverflow, it assumes you have it on some other image store.
More Found here:
enter link description here
Related
I love Sisense https://www.sisense.com but unfortunately, the community is still too small to have any presence on SO and I don't have enough points to create a tag. Is there any way to be able to ask and answer Sisense related questions in SO without a tag?
I am having one problem in my Facebook share button.
I have 8 images in my current post and all the images are greater than the size of 200x200.
But when i click on the Facebook share button it will only displayed 3 images out of 8 from which we can choose thumbnail.
I have also googled for this problem and according to many suggestion I have also reviewed
https://developers.facebook.com/tools/debug link for the debugging the problem. But there also all the 8 images are displayed properly.
Any help would be appreciable.
Thanks.
This is a great question, but I think the answer can disappoint you.
Short answer: far I know and searched, you can't do that.
Long answer: you can optimize this scenario with some good static images - or if you can be more creative, dinamically images.
The first tip
Add a static image to every share. You can do that adding Open Graph Meta Tags inside your head section of HTML:
<meta property="og:image" content="http://www.myawesomesite.com/logo.jpg"/>
With the code above you'll say to Facebook always show this image as an option in Share button. According to Facebook documentation is recomended use images with at least 1200 x 640 pixels, because this will share a post with a large image. Following is the preview of one post with the recomended dimensions:
And now a post with a small image:
The second tip
In this post I found a possible good solution for your problem. The author used the same principles of the previous tip, but he used another practical way to do that.
He used the following tag:
<link rel="image_src" href="http://myawesomesite.com/logo.png" />
This tag is almost the same the previous one, but I think rel="images_src" can be a interesting thing. The link tag is applied in the head section of the website too (acording to W3C page), but I think you can lie to Facebook, because they're bad guys and don't provide a good API.
I was wondering - and this is just a supposition - why not try apply image_src as ID of your post / website images? I can't test this currently, but for now is the best thing I can think.
Conclusion:
Facebook isn't very good in a lot of different ways, and they don't provide everything we need - like this interesting function. But maybe we can fool the Facebook using some strange techniques.
If you don't want test things like this, the only way you can choose images to share is giving to your page the static OpenGraph Meta Tags of the first tip.
I expect it helped something - sadly I think this is the best answer for your question.
I created a blog using blogger.com but am having difficulty:
Whenever I create a post, it creates an automatic thumbnail of the image that I did upload. The problem is: the thumbnails are being generated stretched / distorced (it aren't keeping the aspect ratio).
Is there anything I can do to fix this? My blog url = http://fabianamakeupartist.blogspot.com.br/
(I'm practically lay in programming, I only know a little about html, which allowed me to edit the blog a bit. Sorry if I am asking the question in the wrong place and sorry for my bad english).
Thanks a lot for any help.
Best regards!
you need to go to advanced feature under custom template blogger and add your own css for post thumbnail to fix the problem.
I hope I can find an answer to my question on this forum. We run a Joomla site (v1.5.23) and have integrated facebook comments, recommendations etc on the site.
A while ago a strange squared frame turned up on our site. If I check the frames code I can see that it is originated from Facebook (there are for example references to s-static.ak.fbcdn.net).
I can't find out why this is shown like this. I have tried to unpublish the facebook-plugins in Joomla, but it is still there.
Does someone have an idea what this can be and how I can get rid of it?
Here are a live page, search for "Det är förmiddag, lätt nattfrost, ett svagt ljus" - in that paragraph you will see the frame:
http://www.tidningenkulturen.se/artiklar/ess-mainmenu-57/riga-mainmenu-130/11840-mjaellare-aen-aelfvenben
Or here is an image of it: http://my.jetscreenshot.com/5366/20120412-kw0j-300kb
With kind regards,
- Johan.
welcome to stackoverflow!
Add the following to your CSS stylesheet and it will go away. After you do it, just check that it doesn't hide anything that you don't want hidden.
iframe#fb_xdm_frame_http {display:none;}
iframe#fb_xdm_frame_https {display:none;}
If this helped you, please consider supporting http://area51.stackexchange.com/proposals/34294/joomla-answers
Cheers!
i want to read text in an image how to do that...
Thanks
What you’re asking about is called OCR, and it isn’t as simple as you might think. Luckily, there is at least one open-source effort to do it.
You need an OCR library, see this question for further information. For a more specific answer, you might want to post a more specific question.