How to pass variables to ImageMagick using a [shell] context?
numero = 41[text]height=100[/text][text]width=100[/text][text]sourcefile=logo.jpg[/text][text]resultfile=result.jpg[/text]Then you would a use a [shell] script like this (in your SandBoxes scripts) to resize the image.
[shell]path-to-ImageMagick/convert -size [width]x[height] [sourcefile] -resize [width]x[height] +profile "*" [resultfile][/shell]Simply set the variable on the page above the [shell], and when you construct the script you want to run within [shell], just drop the [variable] in.
[text]height=100[/text]
[text]width=100[/text]
[text]sourcefile=logo.jpg[/text]
[text]resultfile=result.jpg[/text]
[shell]
path-to-ImageMagick/convert -size [width]x[height] [sourcefile] -resize [width]x[height] +profile "*" [resultfile]
[/shell]
DOWNLOAD WEBDNA NOW!
A list of user-submitted tips ...
WebDNA LibrariesA list of available libraries for WebDNA...
[biotype]BioType is a behavioral biometrics WebDNA function based on ADGS research and development (from version 8...
F.A.QA compilation of some user's questions...
Technical Change HistoryThis Technical Change History provides a reverse chronological list of WebDNA changes...
WebDNA ModulesA list of the currently available modules...
I have a project where I'm allowing several people to upload images...
How many working days?This small script finds the number of working days between two dates...
Setting a 30-minute CookieConfiguring the expires time for a short-term cookie is tricky...
random password-generator codeGenerate a random alpha-numeric string...
Write Once Use ManyReuse the same code over and over again on your site with the [include] context...
Annoying character on writefileHow do I get rid of or convert the line feed character during a writefile?...