(The creative bit.)
If the fractal is derivative of another, copy the original from C:\Dev\Fractals\Trunk\Gallery
to C:\Dev\Fractals\Trunk\Workbook
. Add square brackets and a V1
on the end.
Otherwise, get a new code from C:\Dev\Fractals\Trunk\Fractal.ods
.
Computer | Aspect Ratio | UltraFractal Working Size | MandelBulb3d Working Size |
---|---|---|---|
Zeus | 85 | 1200 × 900 | 600 × 450 |
Zeus | FA | 1750 × 700 |
Save the fractal. Render to C:\Temp\Renders
with Anti-Aliasing set to Normal and Open When Finished checked.
Aspect Ratio | Test Render Size |
---|---|
85 | 3000 × 2250 |
FA | 4000 × 1600 |
Do a save as. Increment the Vx
on the end. Continue being creative.
C:\Dev\Fractals\Trunk\Gallery
directory.C:\Renders\Source
directory.Aspect Ratio | Final Render Size | Anti-Aliasing |
---|---|---|
85 | 10240 × 7680 | Normal |
FA | 12800 × 5120 | Normal |
8E | 10480 × 7336 | Normal |
C:\Renders\Source
directory.C:\Renders\Images
directory. Use PNG.Wait a while…
C:\Renders\Images
to C:\New Gallery\*\Source
.C:\Dev\Copyrightise\CopyrightImageDetails.pm
with the new images.C:\Dev\Copyrightise\v2Generate All Derivatives.bat
C:\New Gallery\*\Copyright Samplers
to update the values in the file C:\Dev\Copyrightise\CopyrightImageDetails.pm
.C:\New Gallery\*\Copyrightised
. Sort by modification date makes them easy to find. There should be 12 for 85 or 10 for FA.C:\New Gallery\85 (Screen)\Copyright Samplers\Montage.png
or rename it to compare the difference.C:\Dev\Copyrightise\v2Generate All Derivatives.bat
again.C:\New Gallery\85 (Screen)\Copyrightised\*.2800×1600.png
and *.1024×768.jpg
to a USB Key to take to work.*.2800×1600.png
to C:\11000 x 7703 (Raw)
.C:\11000 x 7703 (Raw)\To Wallpaper.bat
. This will convert to BMP and store in C:\11000 x 7703 (Raw)\Wallpaper
.*.1024×768.jpg
to C:\Wallpaper
.C:\Backgrounds\Refresh.bat
.This will need adjusting to work at home.
@echo off set ImageMagickDir=C:\Program Files\ImageMagick-6.7.5-Q16 rem |-----------ImageWidth-----------| rem |---LeftWidth---|---RightWidth---| rem NOTE: Untested for the case where LeftWidth <> RightWidth. set ImageWidth=2880 set ImageHeight=900 set LeftWidth=1440 set RightWidth=1440 set LeftCrop=%LeftWidth%x%ImageHeight%+0+0 set RightCrop=%RightWidth%x%ImageHeight%+%LeftWidth%+0 del /f /q Converted\*.* rem Adjust for work monitor layout. for %%a in (*.png) DO "%ImageMagickDir%\convert.exe" "(" "%%a" -crop %RightCrop% +repage ")" "(" "%%a" -crop %LeftCrop% +repage ")" +append "Converted\%%a" "%ImageMagickDir%\mogrify.exe" -format jpg -quality 97 Converted\*.png del /f /q Converted\*.png pause