Search found 3 matches
- 2015-09-02T05:48:14-07:00
- Forum: Windows COM+ & Visual Basic
- Topic: Convert Image from VBA Using ImageMagick
- Replies: 3
- Views: 139828
Re: Convert Image from VBA Using ImageMagick
Ah! That would make sense. Thanks!
- 2015-09-02T05:42:38-07:00
- Forum: Windows COM+ & Visual Basic
- Topic: Convert Image from VBA Using ImageMagick
- Replies: 3
- Views: 139828
Re: Convert Image from VBA Using ImageMagick
Just realized that it looks like I was using the Shell command incorrectly. Using the following fixes that problem:
RetVal = Shell("cmd.exe /c convert """ & sLocalFile & """ """ & sLocalFile & ".jpg""", vbMaximizedFocus)
If someone would like to explain how to resolve the other problem though ...
RetVal = Shell("cmd.exe /c convert """ & sLocalFile & """ """ & sLocalFile & ".jpg""", vbMaximizedFocus)
If someone would like to explain how to resolve the other problem though ...
- 2015-09-01T05:57:52-07:00
- Forum: Windows COM+ & Visual Basic
- Topic: Convert Image from VBA Using ImageMagick
- Replies: 3
- Views: 139828
Convert Image from VBA Using ImageMagick
I would like to convert images downloaded from the internet[1] to JPGs with ImageMagick in VBA. So far, I've attempted two methods that have both failed.
First, I tried using the ImageMagickObject 1.0 Type Library:
Private Sub CommandButtonOkay_Click()
Dim sURL As String, sNetFile As String ...
First, I tried using the ImageMagickObject 1.0 Type Library:
Private Sub CommandButtonOkay_Click()
Dim sURL As String, sNetFile As String ...