Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
VerlaCBlack committed Feb 3, 2015
1 parent a9d625e commit 043f8a0
Show file tree
Hide file tree
Showing 11 changed files with 692 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Facebook Scraper.sln
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageCrawler", "ImageCrawler\ImageCrawler.csproj", "{FC8B58A9-FB29-4329-9C5C-2303E516B132}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FC8B58A9-FB29-4329-9C5C-2303E516B132}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FC8B58A9-FB29-4329-9C5C-2303E516B132}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FC8B58A9-FB29-4329-9C5C-2303E516B132}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FC8B58A9-FB29-4329-9C5C-2303E516B132}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
72 changes: 72 additions & 0 deletions Facebook Scraper/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

105 changes: 105 additions & 0 deletions Facebook Scraper/Form1.cs
@@ -0,0 +1,105 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using GlobusLib;
using System.Net;
using System.IO;
using System.Drawing.Imaging;


namespace ImageCrawler
{
public partial class Form1 : Form
{
GlobusHttpHelper httpHelper;
GlobusRegex globusRegex;

List<string> lst = new List<string>();
List<string> lst1 = new List<string>();

public Form1()
{
httpHelper = new GlobusHttpHelper();
globusRegex = new GlobusRegex();
InitializeComponent();
}
private string imageUrl;
private Bitmap bitmap;
public Form1(string imageUrl)
{
this.imageUrl = "http://lurieunaward.com/1st_Alfredo_Sabat_cartoon2006.jpg";
}
public void Download() {
try {
WebClient client = new WebClient();
Stream stream = client.OpenRead("http://lurieunaward.com/1st_Alfredo_Sabat_cartoon2006.jpg");
bitmap = new Bitmap(stream);
stream.Flush();
stream.Close();
}
catch (Exception e) {
Console.WriteLine(e.Message);
}
}
public Bitmap GetImage() {
return bitmap;
}

public void SaveImage() {
if (bitmap != null) {
bitmap.Save(@"F:\E\Curren_Running_Projects\WindowApplication\", ImageFormat.Jpeg);
}
}


private void button1_Click(object sender, EventArgs e)
{
WebClient Client = new WebClient();
Client.DownloadFile("http://lurieunaward.com/1st_Alfredo_Sabat_cartoon2006.jpg", "F:\\1st_Alfredo_Sabat_cartoon2006.jpg");

Download();
GetImage();
SaveImage();
//string str = "http://www.wallcoo.net/cartoon/index4.htm";

//string rs = httpHelper.getHtmlfromUrl(new Uri(str));

//lst = GetSourceTags(rs);
//lst1 = globusRegex.GetUrlsFromString(rs);

}

public List<string> GetSourceTags(string HtmlData)
{
List<string> lstAnchorUrl = new List<string>();

Regex anchorTextExtractor = new Regex(@"src=[""'](?<url>[^""^']+[.]*)[""'].*>");
foreach (Match url in anchorTextExtractor.Matches(HtmlData))
{
if (url.Value.Contains(".jpg"))
{
lstAnchorUrl.Add(url.Value);
}
}

//String url = @"<img src=""angry.gif"" alt=""Angry face"" />";
//String pattern = @"<img\ssrc=""(?<pic>[^""]*)""\salt=""(?<alt>[^""]*)";
//Regex rx = new Regex(pattern);
//Match m = rx.Match(HtmlData);
//if (m.Success)
//{
// String newUrl = @"<a ref=""${pic}"" rel=""${alt}";
// String output = rx.Replace(url, newUrl);
// Console.WriteLine(output);
//}

return lstAnchorUrl;
}
}
}
120 changes: 120 additions & 0 deletions Facebook Scraper/Form1.resx
@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

0 comments on commit 043f8a0

Please sign in to comment.