How to post screenshot [solved]

User avatar
snowflake
Member
 
Posts: 215
Joined: Mon Nov 16, 2015 16:50
IRC: snow__flake
In-game: snowflake

How to post screenshot [solved]

by snowflake » Thu Apr 07, 2016 14:58

Hi , I know most of people know this but i dont know how to :( .....

i know a way from putting it in website and do the link but some people put it on minetest and the image comes in the post and the file of image will be in the box in end of the post , i would like to know that way or any easy ways.......

PLZ SOMEONE HELP WITH THIS ! :(

minetest should improve with screen shot like open a file in the laptop/computer and the image will be shown
Last edited by snowflake on Sat Apr 09, 2016 18:34, edited 1 time in total.
✱ ŜИØŴℱŁΔҜΞ ✱
IF I REPORT ANY PROBLEM - SYSTEM
Ubuntu 15.04
32-bit
Memory-3.8GiB
Disk Space -310.8GB

DONT PM ME PLZ!!!! ,
 

User avatar
rubenwardy
Member
 
Posts: 4500
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy

Re: How to post screenshot

by rubenwardy » Thu Apr 07, 2016 15:02

Click "full editor"
Go to below textbox
Click "Upload attachment"
Click "browse"
find your image
Click "add the file"
Right click the link to the image.
Copy the URL that opens
Go to your post and do

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
[img]url[/img]


where url is the url you copied.
 

User avatar
benrob0329
Member
 
Posts: 1192
Joined: Thu Aug 06, 2015 22:39
GitHub: Benrob0329
In-game: benrob03

Re: How to post screenshot

by benrob0329 » Thu Apr 07, 2016 17:11

If your image is to big, you can either scale it, convert it to JPG, or upload it either to an image hosting site or something like Owncloud and copy the direct download link.
 

sofar
Member
 
Posts: 781
Joined: Fri Jan 16, 2015 07:31
GitHub: sofar
IRC: sofar
In-game: sofar

Re: How to post screenshot

by sofar » Thu Apr 07, 2016 18:00

Here's the shell script I have, works on linux, and uses `ImageMagick`. I have it bound in my desktop environment to a keypress, so that in the game, I can make a keypress, and click the window I want to capture, and then it makes the screenshot, uploads it to imgur.com, and opens the URL in my browser so I can see the image and copy/paste the link somewhere nice and easily.

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
#!/bin/bash
# https://github.com/Ceryn/img
# Call with '-s' to target only a selection of the screen.

clientid='3e7a4deb7ac67da'
img=$(mktemp '/tmp/img-XXXXXX.png')

import $img >/dev/null 2>&1 || exit
res=$(curl -sH "Authorization: Client-ID $clientid" -F "image=@$img" "https://api.imgur.com/3/upload")

echo $res | grep -qo '"status":200' && link=$(echo $res | sed -e 's/.*"link":"\([^"]*\).*/\1/' -e 's/\\//g')
test -n "$link" && (printf "\a" && rm "$img") || echo "$res" > "$img.error"

echo $link >> ~/.imgur.log
xdg-open $link
 

User avatar
MineYoshi
Member
 
Posts: 4267
Joined: Wed Jul 08, 2015 13:20
GitHub: MineYosh
IRC: MineYoshi
In-game: Kirby_Retro

Re: How to post screenshot

by MineYoshi » Thu Apr 07, 2016 22:52

sofar wrote:Here's the shell script I have, works on linux, and uses `ImageMagick`. I have it bound in my desktop environment to a keypress, so that in the game, I can make a keypress, and click the window I want to capture, and then it makes the screenshot, uploads it to imgur.com, and opens the URL in my browser so I can see the image and copy/paste the link somewhere nice and easily.

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
#!/bin/bash
# https://github.com/Ceryn/img
# Call with '-s' to target only a selection of the screen.

clientid='3e7a4deb7ac67da'
img=$(mktemp '/tmp/img-XXXXXX.png')

import $img >/dev/null 2>&1 || exit
res=$(curl -sH "Authorization: Client-ID $clientid" -F "image=@$img" "https://api.imgur.com/3/upload")

echo $res | grep -qo '"status":200' && link=$(echo $res | sed -e 's/.*"link":"\([^"]*\).*/\1/' -e 's/\\//g')
test -n "$link" && (printf "\a" && rm "$img") || echo "$res" > "$img.error"

echo $link >> ~/.imgur.log
xdg-open $link


I tested that code, works very good!
In really is very cool the work you did there!
People talk about freedom of speech, so i'll say that God exists.
Open your eyes!! See The big unicorn conspiracy.!! :D The government has been lying to us about unicorns!!
"I've learned there are three things you don't discuss with people: religion, politics and the Great Pumpkin" - Linus Van Pelt
I'm the Officially 1st ABJist in the world ( ͡° ͜ʖ ͡°)
 

User avatar
snowflake
Member
 
Posts: 215
Joined: Mon Nov 16, 2015 16:50
IRC: snow__flake
In-game: snowflake

Re: How to post screenshot

by snowflake » Fri Apr 08, 2016 12:39

Thx for all the people who helped me :)
✱ ŜИØŴℱŁΔҜΞ ✱
IF I REPORT ANY PROBLEM - SYSTEM
Ubuntu 15.04
32-bit
Memory-3.8GiB
Disk Space -310.8GB

DONT PM ME PLZ!!!! ,
 

User avatar
AiTechEye
Member
 
Posts: 409
Joined: Fri May 29, 2015 21:14

Re: How to post screenshot

by AiTechEye » Sat Apr 09, 2016 08:26

1: Press the "Full Editor" button

If you have the link, mark the link/text and press the [img] button.

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
 [img]https://forum.minetest.net/download/file.php?mode=view&id=5038[/img]


You can also upload an image on the post [Upload attachment] button
Alive AI Mine/Build AI NPC
Gravitygun HL2
Portalgun Portal
Marssurvive Survive on mars
Bows bows + arrows
SoundCloud (Music)
SoundCloud (Classic)
YouTube
 

User avatar
MineYoshi
Member
 
Posts: 4267
Joined: Wed Jul 08, 2015 13:20
GitHub: MineYosh
IRC: MineYoshi
In-game: Kirby_Retro

Re: How to post screenshot

by MineYoshi » Sat Apr 09, 2016 17:32

i think it's time snowflake put "[Solved]" in the title, except he don't understand everything or need more help about this...
People talk about freedom of speech, so i'll say that God exists.
Open your eyes!! See The big unicorn conspiracy.!! :D The government has been lying to us about unicorns!!
"I've learned there are three things you don't discuss with people: religion, politics and the Great Pumpkin" - Linus Van Pelt
I'm the Officially 1st ABJist in the world ( ͡° ͜ʖ ͡°)
 

User avatar
snowflake
Member
 
Posts: 215
Joined: Mon Nov 16, 2015 16:50
IRC: snow__flake
In-game: snowflake

Re: How to post screenshot [solved]

by snowflake » Sat Apr 09, 2016 18:34

thx for the info mine
✱ ŜИØŴℱŁΔҜΞ ✱
IF I REPORT ANY PROBLEM - SYSTEM
Ubuntu 15.04
32-bit
Memory-3.8GiB
Disk Space -310.8GB

DONT PM ME PLZ!!!! ,
 

User avatar
MineYoshi
Member
 
Posts: 4267
Joined: Wed Jul 08, 2015 13:20
GitHub: MineYosh
IRC: MineYoshi
In-game: Kirby_Retro

Re: How to post screenshot [solved]

by MineYoshi » Sat Apr 09, 2016 18:49

snowflake wrote:thx for the info mine


ok, if you have any question, post it, surely someone that know will help you! =D
People talk about freedom of speech, so i'll say that God exists.
Open your eyes!! See The big unicorn conspiracy.!! :D The government has been lying to us about unicorns!!
"I've learned there are three things you don't discuss with people: religion, politics and the Great Pumpkin" - Linus Van Pelt
I'm the Officially 1st ABJist in the world ( ͡° ͜ʖ ͡°)
 

User avatar
AiTechEye
Member
 
Posts: 409
Joined: Fri May 29, 2015 21:14

Re: How to post screenshot

by AiTechEye » Sun Apr 10, 2016 12:11

MineYoshi wrote:i think it's time snowflake put "[Solved]" in the title, except he don't understand everything or need more help about this...



i thought it was pretty much steps, so i made another description that could be easier to read for other people :-)

everyone do not perceive all the information in the same way, and in this case it is a
tricky thing to see.
Alive AI Mine/Build AI NPC
Gravitygun HL2
Portalgun Portal
Marssurvive Survive on mars
Bows bows + arrows
SoundCloud (Music)
SoundCloud (Classic)
YouTube
 

User avatar
MineYoshi
Member
 
Posts: 4267
Joined: Wed Jul 08, 2015 13:20
GitHub: MineYosh
IRC: MineYoshi
In-game: Kirby_Retro

Re: How to post screenshot

by MineYoshi » Sun Apr 10, 2016 19:20

UjEdwin wrote:
MineYoshi wrote:i think it's time snowflake put "[Solved]" in the title, except he don't understand everything or need more help about this...



i thought it was pretty much steps, so i made another description that could be easier to read for other people :-)

everyone do not perceive all the information in the same way, and in this case it is a
tricky thing to see.


Well, i only say because sometimes it's hard to understand simple things!

But your description was simple and understandable so i think snowflake have the solution!
People talk about freedom of speech, so i'll say that God exists.
Open your eyes!! See The big unicorn conspiracy.!! :D The government has been lying to us about unicorns!!
"I've learned there are three things you don't discuss with people: religion, politics and the Great Pumpkin" - Linus Van Pelt
I'm the Officially 1st ABJist in the world ( ͡° ͜ʖ ͡°)
 


Return to Minetest General

Who is online

Users browsing this forum: No registered users and 8 guests

cron