Search found 4 matches

by ipgimg
2011-08-31T09:05:53-07:00
Forum: Windows COM+ & Visual Basic
Topic: Solved: VB: How to use dynamic/variable convert parameters?
Replies: 3
Views: 66046

Re: VB: How to use dynamic/variable convert parameters?

Hi, It's hard to believe this software is seldom used in the VB/.NET world, but there are almost no examples or documentation anywhere to be found. I'm putting this here for anyone else to find in future searches. As you'll see I'm not an accomplished VB coder but it works. I got the basic concept o...
by ipgimg
2011-08-26T12:55:54-07:00
Forum: Windows COM+ & Visual Basic
Topic: Solved: VB: How to use dynamic/variable convert parameters?
Replies: 3
Views: 66046

Solved: VB: How to use dynamic/variable convert parameters?

Hi, How can I use a variable to feed parameters to my convert command? For example instead of: myImg.Convert(inputfile, "-resize","1500x1500", outputfile) use something like a list or array: Dim params As New List(Of String) params.add("-resize") params.add("1500x1...
by ipgimg
2011-07-28T07:43:05-07:00
Forum: Users
Topic: 300 dpi TIF-> 72 dpi JPG in one line (Windows)
Replies: 2
Views: 9695

Re: 300 dpi TIF-> 72 dpi JPG in one line (Windows)

Thanks, I'm not using Photoshop at all but that is undoubtedly where the images originally come from. I used -strip to take out the profiles and got the 72 dpi JPG with convert in.tif -strip -density 72 out.jpg Is there a way to remove just the Photoshop profile/information? Or could I use two -prof...
by ipgimg
2011-07-27T15:28:27-07:00
Forum: Users
Topic: 300 dpi TIF-> 72 dpi JPG in one line (Windows)
Replies: 2
Views: 9695

300 dpi TIF-> 72 dpi JPG in one line (Windows)

Hi, I'm trying to convert a 300 dpi TIF file to a 72 dpi JPG (on Windows). If I do convert in.tif -density 72x72 out.tif I get the TIF file with the same pixel dimensions but at 72 dpi (almost what I need). If I do convert in.tif -density 72x72 out.jpg I get the JPG file with the same pixel dimensio...