PostImage [screen capture and uploader]

Submit portable freeware that you find here. It helps if you include information like description, extraction instruction, Unicode support, whether it writes to the registry, and so on.
Message
Author
User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

PostImage [screen capture and uploader]

#1 Post by I am Baas »

[Moderator notes:

/note
]

guinness wrote:I came across PostImage.
Postimage offers a screen capture / upload tool.

http://postimage.org/app.php

User avatar
guinness
Posts: 4118
Joined: Mon Aug 27, 2007 2:00 am
Contact:

Re: Image Uploader

#2 Post by guinness »

I guess it's Portable?

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Image Uploader

#3 Post by I am Baas »

Tested Postimage... Not Portable

history.dat in AppData\Local\Postimage.org\Postimage
Postimage shortcut in AppData\Roaming\Microsoft\Windows\SendTo
HKEY_CURRENT_USER\Software\Postimage.org\Postimage
Software\Microsoft\Windows\CurrentVersion\Run: Postimage

Very cool app, shame it's not portable.

User avatar
guinness
Posts: 4118
Joined: Mon Aug 27, 2007 2:00 am
Contact:

Re: Image Uploader

#4 Post by guinness »

Of course not for submission, but personal use.

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Image Uploader

#5 Post by I am Baas »

It has some very interesting features, I am tempted to request a portable version:
Please note, application is under active development. If you have any suggestions or bug-reports, please use your contact form to leave us a message.

User avatar
guinness
Posts: 4118
Joined: Mon Aug 27, 2007 2:00 am
Contact:

Re: Image Uploader

#6 Post by guinness »

I'm using this VBScript for now.

Code: Select all

'~ Created by: SoftwareSpot (c) 2013
'~ Created: 19th April 2013.
'~ Website: http://softwarespot.wordpress.com/code/vbscript/
'~ Important Notice: Please do not link to this file directly, instead link to the website http://softwarespot.wordpress.com/code/vbscript/

Option Explicit
Const SENDTO_FOLDER = &H9&
Dim oFileSystem, oSendToFolder, oSendToFolderItem, oShellApplication, oWScriptShell, sAppData, sLocalAppData, sScriptDir

Set oFileSystem = CreateObject("Scripting.FileSystemObject")
Set oShellApplication = CreateObject("Shell.Application")
Set oWScriptShell = CreateObject("Wscript.Shell")

'~ Application & Local data folder.
sAppData = oWScriptShell.Environment("PROCESS").Item("APPDATA")
sLocalAppData = oWScriptShell.Environment("PROCESS").Item("LOCALAPPDATA")

'~ Directory of the running script.
sScriptDir = oFileSystem.GetParentFolderName(WScript.ScriptFullName)

'~ SendTo folder.
Set oSendToFolder = oShellApplication.Namespace(SENDTO_FOLDER)
Set oSendToFolderItem = oSendToFolder.Self

'~ Run the PostImage executable and wait for it to close.
oWScriptShell.Run """" & sScriptDir & "\PostImage.exe""", 1, True

'~ Delete data leftover by PostImage.
If oFileSystem.FolderExists(sLocalAppData & "\Postimage.org") Then
	oFileSystem.DeleteFolder sLocalAppData & "\Postimage.org", True
End If
If oFileSystem.FileExists(oSendToFolderItem.Path & "\Postimage.lnk") Then
	oFileSystem.DeleteFile oSendToFolderItem.Path & "\Postimage.lnk", True
End If
oWScriptShell.RegDelete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\Postimage"
'~ This causes an error for now.
'~ oWScriptShell.RegDelete "HKEY_CURRENT_USER\Software\Postimage.org\"

User avatar
tproli
Posts: 1172
Joined: Sat Sep 09, 2006 10:14 am
Location: Hungary
Contact:

Re: Image Uploader

#7 Post by tproli »

PostImage UI looks very similar to LightShot. The latter lacks in built-in editor but has on option to edit the image online.

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Image Uploader

#8 Post by I am Baas »

tproli wrote:PostImage UI looks very similar to LightShot. The latter lacks in built-in editor but has on option to edit the image online.
Good catch, tproli. It does look the same. Is Lightshot open source?

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Image Uploader

#9 Post by I am Baas »

guinness wrote:I'm using this VBScript for now.
That was quick, thanks, guinness.

Will you be adding this to your VBScript collection on SoftwareSpot as well?

User avatar
tproli
Posts: 1172
Joined: Sat Sep 09, 2006 10:14 am
Location: Hungary
Contact:

Re: Image Uploader

#10 Post by tproli »

I am Baas wrote:Lightshot open source?
I don't think so, haven't find anything on it. According to Softpedia it is freeware.

There is also a yaP version available upon request :)

User avatar
guinness
Posts: 4118
Joined: Mon Aug 27, 2007 2:00 am
Contact:

Re: Image Uploader

#11 Post by guinness »

I am Baas wrote:
guinness wrote:I'm using this VBScript for now.
That was quick, thanks, guinness.

Will you be adding this to your VBScript collection on SoftwareSpot as well?
I would have been quicker, but I was super lazy. I will be adding when I can figure out the issue with deleting the registry key.

User avatar
guinness
Posts: 4118
Joined: Mon Aug 27, 2007 2:00 am
Contact:

Re: Image Uploader

#12 Post by guinness »


User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Image Uploader

#13 Post by I am Baas »

@moderator

Please split and move the Postimage posts to the submission sub-forum. Thank you.

User avatar
Napiophelios
Posts: 610
Joined: Sun Mar 01, 2009 5:48 pm

Re: Image Uploader

#14 Post by Napiophelios »

@I am Baas

the QTProject registry entries I was questioning in the comments section are something to do with file dialogues as it only happens when I use the app to open or save an image.

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

temp

#15 Post by I am Baas »

Napiophelios wrote:@I am Baas

the QTProject registry entries I was questioning in the comments section are something to do with file dialogues
as it only happens when I use the app to open or save an image.
You are absolutely correct, writes to HKEY_CURRENT_USER\Software\QtProject\OrganizationDefaults. Thanks.

Post Reply