Edit JPG File Title, Subject, Comments, And Tags/Keywords?
Feb 3, 2011
How do I edit JPG File Title, Subject, Comments, and Tags/Keyowrds?The Exif information provided was helpful, but in the end did not actually solve the real riddle I was working on. So I'll take another angle at describing the desired result:
I want my VB.NET app to allow me to edit the following details of a Jfile (see image):
Title, Subject, Comments, and Tags/Keyowrds
I had a handy image to include but not enough points to post it. Weak.
RIGHT CLICK A .JPG IN WINDOWS and select PROPERTIES
Win XP: Select the "Summary Tab" and Look at the "Description" group
Win7/Server 2008R2: "Details Tab" and look at "Description" group
how to edit those fields through VB.net in Visual Studio?
EDIT: The ultimate goal is to use the image viewer/editer that I built, to sort thousands of images of random webjunk I have collected over the years.Upon viewing the image (say "00001.jpg") and figureing out what it is ("ceiling cat sends son" picture of a lol cat), I want to type in the description (already done in the form). When I hit enter I want to rename the file (from "00001.jpg" to "ceiling-cat-sends-son.jpg", then fill in the keywords, title, subject, and comments fields with the same data: "ceiling cat sends son".
local indexing and with my (later) automating a SQL server referential database for use with site wide searches on my website. The ONLY thing I can't seem to figure out is how to modify those four fields as if I had right-clicked the file and added the keywords.
View 1 Replies
ADVERTISEMENT
Sep 20, 2009
when I generate my <appname>.exe file, the summary properties fields are all empty. There must be a way I can add this, but I haven't found it yet. I am running VisualBasic .Net 2003 standard edition.b
View 10 Replies
Nov 8, 2009
I'm trying to analyze web pages for seo. I'm trying to create my own personal tool to extract all the keywords and tags from web pages (a little clearer).I already know how to extract or parse links and text from web pages. The issue is that I tried to implement title tags, body tags or keyword tags in general via using the following code:
Dim theElementCollection As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("a")
For Each curElement As HtmlElement In theElementCollection
If curElement.GetAttribute("href").Contains("http://twitter.com/") Then
[code]....
Try to extract all the keywords from the title, body etc. for this page:[URL] and send it to separate textboxes (title keywords in textbox1, meta tags in textbox2 etc.).
View 1 Replies
Nov 8, 2009
I'm trying to analyze web pages for seo. I'm trying to create my own personal tool to extract all the keywords and tags from web pages (a little clearer).I already know how to extract or parse links and text from web pages. The issue is that I tried to implement title tags, body tags or keyword tags in general via using the following code:[code]
View 1 Replies
Aug 6, 2009
I'd like to realize a plugin for MC with Windows Seven but I have a problem: I don't know how I could access to tags and comments of a file. I know how to get 'system properties' (creation date, lenght, ...) but I ignore how to get metadata like tags or comments.
View 2 Replies
Nov 7, 2009
I was just wondering how to extract or parse any particual tags (whichever I specify) from webpages. I know how to extract text and links from webpages, but I tried to use the same method from the following code for div tags, title tags etcetera and it doesn't seem to work:
[Code]...
View 2 Replies
Jul 6, 2009
When in VS 2008 if a developer hits the ''' it generates the XML comment tags for you, but this only works when the project setting for "Generate XML documentation file" is checked. Is there a way to tell VS to generate the XML Comment tags, regardless of the project setting? I think it is possible that someone may want comments but not create a XML documentation file. In this case I am exceeding the current Team Settings, yet other developers don't want me to change this project setting. This forces me to flip this back before checking in the project. I have the same problem with other Project settings like "code Analysis". This is only a problem for VB.NET projects.
View 4 Replies
Dec 19, 2010
Im am trying to get whats inside the <title>My Data</title> tags, however the results i pull back are not whats in the title tags..
Dim myMatch As Match = System.Text.RegularExpressions.Regex.Match(My_Text, "<(?<title>w*)>(?<text>.*)</k<title>>")
If myMatch.Success Then
[Code]....
View 3 Replies
Feb 15, 2012
Is there a way of editing the ID3 tags(title,artist,album, etc) of mp3 files in Visual Basic.
View 1 Replies
Mar 4, 2009
Does anyone know of a solution using the internal webbrowser, to grab a sites <title></title> tags?
As for now I have in my browser something like:
Me.Text = WebBrowser1.Url.ToString
Hence showing the URL in the forms text, but I would need to change that to a sites title
View 3 Replies
Jan 4, 2011
How do I Edit and Save Image EXIF / Metadata / FileInfo without using an external DLL?
Project:I'm building an app for personal use to rename, retag, and organize the apocalyptic quantity of images I host on my personal website. As I have been collecting funny pictures and such for several years, there is no real rhyme or reason to the file naming conventions. Ergo, Image0001.jpg needs to be renamed to a descriptive filename, and the Metadata fields need to be filled in.
The desired process will take an existing jpg, gif, png, tiff or bmp and do the following:
load image into memory
convert bmp files to jpgs if needed (for a smaller file size, mostly)
load image tags into ImageData Structure (see below)
[code]....
View 1 Replies
Jan 3, 2011
Project:I'm building an app for personal use to rename, retag, and organize the apocalyptic quantity of images I host on my personal website. As I have been collecting funny pictures and such for several years, there is no real rhyme or reason to the file
naming conventions. Ergo, Image0001.jpg needs to be renamed to a descriptive filename, and the Metadata fields need to be filled in.The desired process will take an existing jpg, gif, png, tiff or bmp and do the following:
[1] load image into memory
[2] convert bmp files to jpgs if needed (for a smaller file size, mostly)
[3] load image tags into ImageData Structure (see below)
[4] load file data into ImageData Structure (where needed)
[5] display image and tags for user to edit (In a Picture Box and several Text Boxes)
[6] allow editing of fields and renaming of the file
[7] write the changes to the image file
[8] go to next file.
Example:
[1] Load Image0001.jpg. Populate ImageData Structure fields.
[2] Type in Description: "lolcat ceiling cat sends son".
[3] ImageData.FileName changed to "lolcat-ceiling-cat-sends-son.jpg".
[4] ImageData.Name, .Keywords, .Title, .Subject, and .Comments changed to "lolcat ceiling cat sends son".
[5] Save file with new filename and save all new tag fields.
(Later, I will also be using SQL to build a referential database with links to the online copies of these files to allow for searching by keywords, subject, filename, etc, but that's another layer that's much easier than this one. At least to me.)
Problem:So far, several days of research have yielded almost no measurable progress. Information has apparently been inexplicably hidden behind a bunch of unexpected search keywords. Current Code as is:
Imports System.IO
Imports System.IO.Path
Imports System.Drawing.Imaging[code]........
View 2 Replies
Oct 20, 2009
The basic System.Byte doesn't make me happy, especially when I'm doing network operations that deliver bytes as BigEndian while the System.Byte relies on the System.Bitconverter that's almost always going to process LittleEndian.
So I'm working on a custom Class that contains a basic, underlying System.Byte that I can play with; and I want to give it a Property called Byte so the underlying value can be returned or set. The problem is that Byte is a Visual Basic Keyword, so when I try to name a Property 'Byte' Visual Studio starts throwing Intellisense errors at me.
[Code]...
View 2 Replies
Jan 14, 2010
I have a application that uses data from a database to create a email signature for a user.When you create a template you can insert optional fields. Like this
View 5 Replies
Aug 31, 2010
i have this program that allows multipal versions of one form when the program recives a command testform|this is a test|Admin testform is the form name this is a test is the message Admin is the user who sent tit what i want to do is use the name to find the form >>>> add the message to a text box on that form >>> tell them who sent the message in it as well but i dont know how to find the form or add to the box on it?
View 4 Replies
Mar 14, 2012
I am trying to make a program that when run changes the <title> attribute of the HTML, on any page requested then loads the page (IE). Is this possible, without making a new browser? If so, how?
View 3 Replies
Sep 26, 2011
I've noticed that in C# XML comments and code comments can have different colors by changing the settings in Tools > Options > Environment > Fonts and Colors > Display Items:
- Comment: controls code comments XML comment: controls XML comments
This works well in C# <summary>This XML comment is green</summary>
[Code]...
View 2 Replies
Mar 18, 2011
Im just wondering how i can achieve the following, this is for my own learning. Im going to be passing an XML file to VB.net and im hoping to pick out keywords from within the XML file is that possible?
So say the XML file had words such as "hello" "Today" "Next Week"
how can i possibly pick these out and store them in a varible?
I can do the first bit i.e passing the XML file in reading it etc, but im curious on the second part?
Can any one help me or if any one knows any good tutorials and locations please do let me know.
View 9 Replies
Nov 22, 2009
How would I make a program that would search through a .txt file, and find certain predetermined keywords. Basically, I have a very simple keylogger on my son's laptop to keep an eye on him. My hope is that I would make a program that would go through the .txt file, and if one of the keywords is found, then I would have the program execute a little something I have cooked up to warn to stop. The only problem is, I do not know how to search through the .txt file.
View 1 Replies
Feb 2, 2008
With this code I can see what happening I'm just showing you what've I've done so far. Basically I want to use an If statement to see if an active directory object contains one of the keywords found in an INI file. I was wondering is this possible with just an IF statement or do I have to use a loop or a for each and how would I do that using one of those two
View 3 Replies
Oct 28, 2009
I would like to read from file, and ignore lines that start with --. I know how to read line by line but i just need to ignore those lines.
View 3 Replies
Jul 16, 2010
With this code I can see what happening I'm just showing you what've I've done so far. Basically I want to use an If statement to see if an active directory object contains one of the keywords found in an INI file. I was wondering is this possible with just an IF statement or do I have to use a loop or a for each and how would I do that using one of those two. [code]
View 2 Replies
Apr 25, 2010
I am building a program that strips out certain keywords from a much larger file. I am using code that .paul. provided in a different post, but I can't get it to work correctly. Here is the code that I am using: [code] Basically, the first match will appear in textbox2, but no other matches appear after that. I put a breakpoint at the For Each loop and checked out the locals. I am showing 2,502 matches for the variable "match." I just now put another breakpoint in there and I can see that it is stepping, but nothing is recorded.In the archive is a file named debout.txt. This file should be used for the testing.
View 5 Replies
Apr 1, 2010
Is there a macro in the Visual Studio editor to remove all comments from a VB.NET source file?
View 2 Replies
Sep 26, 2011
I have xml summary comments for each and every function and class of my windows project. Now I want to generating the XML Documentation File. I gone through the following link, but the Option was not there in my Solution explorer.
[URL]
View 2 Replies
Apr 23, 2012
With my code as I have a trouble with the returned strings that I have extracted from my php source to add the strings in my listview.
I'm reading the tags of mystrings1 and mystrings2 for each paragraph from the php source. I got the returned strings which it looks like this:
PHP
<p id='mystrings1'>my strings</p> | <a href="http://xfvasfasfasfasf">Link</a> </td> | <a href="delete.php?id=0">Delete</a> </td> | <span id="mystrings2">Enabled</td>
I want the returned strings to be like this when I reads the tags of mystrings1 and mystrings2 while ignore the other tags.
PHP
<p id='mystrings1'>my strings</p> | <span id="mystrings2">Enabled</td>
Here's the
Public Sub timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs)
timer1.Enabled = False
timer1.Stop()
[CODE]...
Do you know how I can ignore the other tags when I get the returned strings of mystrings1 and mystrings2?
View 9 Replies
Aug 22, 2011
I know how to use the <include> keyword from my code to refer to a member in an external comments file. Something like: <include file="Comments.xml" path="Docs/ClassName/Members[@name='DoIt']/*" /> However, I have members in the Comments.xml file which are repeated that I would like to split out and refer to within the Comments.xml file itself. As an example, it could be an argument definition that is used multiple time. I've tried the same format as above, but it doesn't work.
[Code]...
View 1 Replies
Aug 19, 2011
Hi, I need to program a simple Web Browser that can search for keywords and store relevant data in another file.I am facing a problem with authentication, mainly cookies and maintaining a session.So I read that Web Browser Control is based on I.E.? So may I know how are cookies and session handled?Do I have to implement them manually or are they stored and retrieved from the same folder as the one used in I.E? If so, if I delete the I.E.'s cache, am I also deleteing the cache of any Web Browser I make using Web Browser Control?
View 2 Replies
Jun 21, 2010
I am planning to create a system for my case study wherein i can Add tags from images and search for it by "tags" such as photobucket. For example i open an image to my system, and it's file name was "WhiteHouse.jpg" and i added or tagged it as "Building". Once i search on my computer, and type the word/keyword "Building", the image "WhiteHouse.jpg" will be displayed on search results as i tagged it on my system.Is that possible guys? or i can only search by tags using my system/application? and not in the search command in my computer?If it is possible please tell me what to do. or if you have sample vb.net2008(windows Application) files it will be helpful. Or if you have sites related into it. pls send me those links, especially downloadable vb.net files w/ codes for further studying.
View 2 Replies
Nov 3, 2009
I have a class that contains one function: "ShowDialog()" It creates a new openfiledialog and sets its title, but when it is run, the title of the openfiledialog is set to the current directory that is shown in the dialog. I would not like this behavior. Here is the code:
Public Class LoadSet
Public Shared Function ShowDialog() As System.Windows.Forms.DialogResult
Dim Dialog As New System.Windows.Forms.OpenFileDialog
Dialog.DefaultExt = ".bsfci"
[code]....
View 4 Replies