Skip to content

Instantly share code, notes, and snippets.

View rafatux's full-sized avatar

Rafael F. Rodríguez rafatux

View GitHub Profile
@rafatux
rafatux / gist:61fd665fc455e54d69ae14f2cf6e1d58
Last active October 30, 2019 15:45
Redimensiona un conjunto de jgp de una carpeta a otra a un tamaño especificado en vb.net
Imports System
Imports System.Drawing
Module Program
Sub Main(args As String())
Dim sourcePath As String = args(0)
Dim outputPath As String = args(1)
IO.Directory.CreateDirectory(outputPath)