Results 1 to 9 of 9
-
10th Sep 2010, 09:59 AM #1OPThe King of KingsWebsite's:
rukidding.org thetechnews.orgMind Freak - Screen Capture Tool v1.2
Select The Window From the ListBox Of Which You Want to take a ScreenShot Off
And Then Click Generate
A Preview Box Will Open With the window You Selected Image
If U Like The Image Hit Save
And Save The Image in Your Desired Format
- Bitmap
- Jpg
- Gif
Future Version :-
1>Upload to 3 image hosts.
- Lulzimg
- Imgcafe
- ImgSpot
and improvements in few things
Download:-
Code:http://rapidshare.com/files/418214492/Mind_Freak_Screen_Capture_Tool.rar
Mind Freak Reviewed by Mind Freak on . Mind Freak - Screen Capture Tool v1.2 http://screensnapr.com/u/f0hj8z.png Select The Window From the ListBox Of Which You Want to take a ScreenShot Off And Then Click Generate :) A Preview Box Will Open With the window You Selected Image If U Like The Image Hit Save Rating: 5
-
10th Sep 2010, 10:02 AM #2Just Another Coder
ImgSpot to be added... I am loving this tool.... well done MF!!
-
10th Sep 2010, 10:12 AM #3MemberWebsite's:
Elite.SO Defendos.com Motionite.comDoes this use http.Submit? Or ftp?
-
10th Sep 2010, 10:14 AM #4OPThe King of KingsWebsite's:
rukidding.org thetechnews.org
-
10th Sep 2010, 11:54 AM #5MemberWebsite's:
Elite.SO Defendos.com Motionite.comUse http submit, i have an example for you i wiill pm it. Never use ftp because that can be hacked easily.
-
10th Sep 2010, 11:59 AM #6OPThe King of KingsWebsite's:
rukidding.org thetechnews.org
-
10th Sep 2010, 12:08 PM #7MemberWebsite's:
Elite.SO Defendos.com Motionite.comC# Code:
PHP Code:using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
namespace WindowsFormsApplication6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
//
string a;
a = textSource.Text;
System.Net.WebClient Client = new System.Net.WebClient();
Client.Headers.Add("Content-Type", "binary/octet-stream");
byte[] result = Client.UploadFile("http://xcoderz.net/test/upload.php", "POST", @a);
string s = System.Text.Encoding.UTF8.GetString(result, 0, result.Length);
}
private void button2_Click(object sender, EventArgs e)
{
OpenFileDialog fdlg = new OpenFileDialog();
fdlg.Title = "Open file...";
fdlg.InitialDirectory = @"c:\";
fdlg.Filter = "All files (*.*)|*.*|All files (*.*)|*.*";
fdlg.FilterIndex = 2;
fdlg.RestoreDirectory = true;
if (fdlg.ShowDialog() == DialogResult.OK)
{
textSource.Text = fdlg.FileName;
}
}
}
}
PHP Code:<?php
$uploaddir = 'upload/';
if (is_uploaded_file($_FILES['file']['tmp_name'])) {
$uploadfile = $uploaddir . basename($_FILES['file']['name']);
echo "File ". $_FILES['file']['name'] ." uploaded successfully. ";
if (move_uploaded_file($_FILES['file']['tmp_name'], $uploadfile)) {
echo "OKAY!";
}
else
print_r($_FILES);
}
else {
echo "ERROR!";
print_r($_FILES);
}
?>
-
10th Sep 2010, 01:59 PM #8MemberWebsite's:
LulzIMG.com chtbx.com RapidPremium.Net ReleaseLeech.com RLSLeech.com NinjaRobotPirateZombieNazi.comIf you run into any problems with uploading to LulzIMG, let me know
-
10th Sep 2010, 03:01 PM #9OPThe King of KingsWebsite's:
rukidding.org thetechnews.org
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Screen Capture
By Mixloads31 in forum Webmaster DiscussionReplies: 8Last Post: 7th Oct 2010, 05:15 PM -
Mind Freak - Screen Capture Tool v1.3
By Mind Freak in forum Web Development AreaReplies: 14Last Post: 14th Sep 2010, 06:33 AM -
Introducing NixSnapr | Linux Screen Capture tool
By desiboy in forum General DiscussionReplies: 16Last Post: 13th Sep 2010, 05:06 AM -
Screen Capture - Mind Freak
By Mind Freak in forum Web Development AreaReplies: 10Last Post: 10th Sep 2010, 03:48 PM -
screen capture software
By p4i in forum Technical Help Desk SupportReplies: 6Last Post: 9th Mar 2010, 12:31 PM
themaPoster - post to forums and...
Version 5.23 released. Open older version (or...