GFXVoid Graphic Design Forum

Remove Text Formatting
Loading...

» Online Users: 15,129

0 members and 15,129 guests
No Members online

» Site Navigation

 > FAQ

» Stats

Members: 35,442
Threads: 103,075
Posts: 826,688
Top Poster: cc.RadillacVIII (7,429)
Welcome to our newest member, Lekelindids
Results 1 to 6 of 6

Thread: please help

  1. #1
    Join Date
    Feb 2005
    Posts
    2,921

    Default

    ok... i deleted one of the preset scripts in apop by accident and now i need it back

    anyone with apophysis here what ya do:

    go script>open script>HQI batch

    then go script>edit

    then copy the code/script wateva ya wana calll it

    then post it here inside a
    Code:
    code
    box

  2. #2
    Join Date
    Jan 2005
    Location
    UK
    Posts
    615

    Default

    Code:
    
    
    how did you manage to delete that ?lol :lol: anyway, theres the code for the HQI Batch

  3. #3
    Join Date
    Feb 2005
    Posts
    2,921

    Default

    thats a flame file...

    an asc (script) file looks like this

    Code:
    Julia := False;
    For i := 0 to Transforms - 1 do
    begin
     *SetActiveTransform(i);
     *For j := 0 to NVARS - 1 do
     * *if Transform.Variation[13] <> 0 then Julia := True
    end; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
    if Julia then
     *ShowMessage('This flame uses the Julia variation.')
    else * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
     *ShowMessage('This flame does not use the Julia variation.')
    UpdateFlame := False;

  4. #4
    Join Date
    Feb 2005
    Posts
    2,921

    Default

    just copy the HQI batch, paste into notepad, and then copy and paste into here


    or


    opne the HQI batch in notepad and copy into here

  5. #5
    Join Date
    Mar 2005
    Location
    Insanity Sq.
    Posts
    3,811

    Default

    I got it, but it was hard. He's rightt, if you try to copy it it screws it up. I saved it then opened it with flash and was able to copy it. here

    Code:
    {**********************************************}
    { Sets up a hqi batch render of transparent * *}
    { PNGs of the currently loaded flame file. * * }
    { It presumes the Export|Renderer option has * }
    { been set to hqi.exe. Creates a new parameter }
    { file and a batch file in the same folder as *}
    { hqi.exe. Run the batch file to render the * *}
    { batch * * * * * * * * * * * * * * * * * * * *}
    {**********************************************}
    { Get path to hqi.exe }
    Path := ExtractFilePath(Options.ExportRenderer);
    { Delete the existing batch.flame. Otherwise
     *params will just be added to old one! }
    DeleteFile(Path + 'batch.flame');
    for i := 0 to FileCount - 1 do * * * * * * * * * * *
    begin
     *ShowStatus('Saving ' + IntToStr(i) + ' of ' +
     * *IntToStr(FileCount));
     *LoadFlame(i);
    { Set parameters to the values of choice }
     *Flame.SampleDensity := 100;
     *Flame.Oversample := 2;
     *Flame.FilterRadius := 0.6;
     *Flame.Width := 640;
     *Flame.Height := 480;
    { Adjust flame scale for new dimensions }
     *CalculateScale;
    { Set Batches to sample density / 4 }
     *Flame.Batches := Flame.SampleDensity / 4;
     *SaveFlame(Path + 'batch.flame');
    end;
    { Create batch file. }
    FileList := TStringList.Create;
    FileList.Add('set format=png');
    FileList.Add('set prefix=pic');
    FileList.Add('hqi < batch.flame');
    FileList.SaveToFile(Path + 'render batch.bat');
    FileList.Free;
    UpdateFlame := False;
    If you want help...
    Screw you
    If you make sigs...
    Screw you

  6. #6
    Join Date
    Feb 2005
    Posts
    2,921

    Default

    thanks man, basically what it does is it lets you render like 10 fractals in a row witohut having to re set it so i can render them overnight

    ^_^

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Powered by vBadvanced CMPS v4.1.1