affq19
Hi. I’ve been looking for an image processing library, I want to generate a function that rotates the image given an angle. Moreover, I would use the Beier-Neely Method for image morphing. So, I asked for the best library that could help me get through this. I tried to used Image but I’ve been having problems at loading it.
Thanks! ![]()
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sodapopcan
Can you be more specific about the problems you’re having with it?
Image is built off of Vix which in turn is just native bindings for VIPS. I would try and sort out why you can’t get Image running. Then if it doesn’t suit your needs, you can drop down to Vix which has the full power of VIPS. And if you happen to make any progress, contributing a function back into Image would be great!
affq19
I have this error
(elixir_make 0.8.3) lib/elixir_make/compiler.ex:82: ElixirMake.Compiler.make/2
(elixir_make 0.8.3) lib/elixir_make/compiler.ex:53: ElixirMake.Compiler.compile/1
(mix 1.16.0) lib/mix/task.ex:478: anonymous fn/3 in Mix.Task.run_task/5
(mix 1.16.0) lib/mix/tasks/compile.all.ex:124: Mix.Tasks.Compile.All.run_compiler/2
(mix 1.16.0) lib/mix/tasks/compile.all.ex:104: Mix.Tasks.Compile.All.compile/4
(mix 1.16.0) lib/mix/tasks/compile.all.ex:93: Mix.Tasks.Compile.All.with_logger_app/2
could not compile dependency :vix, “mix compile” failed. Errors may have been logged above. You can recompile this dependency with “mix deps.compile vix --force”, update it with “mix deps.update vix” or clean it with “mix deps.clean vix”
==> images
** (Mix) “nmake” not found in the path. If you have set the MAKE environment variable, please make sure it is correct.
kip
Sorry you’re having issues. First off, what OS are you working with? If it’s Windows then I think Vix does t support windows so that would be a show-stopper. If it’s MacOS or Linux then we can work out why you’re having issues.
kip
Hmmm, no mention of Windows in the Vix readme so perhaps it does support windows. @akash-akya, is that correct?
akash-akya
Vix dose not natively support Windows at the moment. You can still use it using WSL though.
Windows support issue is pending from some time now. I have to port POSIX based C code to windows API for that, which is bit tricky because there is no one-to-one mapping between these APIs and I don’t have a windows machine to properly test it.
affq19
I’m using windows. I think that Vix is not supported on Windows.